forked from MapComplete/MapComplete
Full code cleanup
This commit is contained in:
parent
8e6ee8c87f
commit
bd21212eba
246 changed files with 19418 additions and 11729 deletions
|
|
@ -77,13 +77,13 @@ export default class ReplaceGeometryAction extends OsmChangeAction {
|
|||
|
||||
public async getPreview(): Promise<FeatureSource> {
|
||||
const {closestIds, allNodesById} = await this.GetClosestIds();
|
||||
console.log("Generating preview, identicals are ", )
|
||||
console.log("Generating preview, identicals are ",)
|
||||
const preview = closestIds.map((newId, i) => {
|
||||
if(this.identicalTo[i] !== undefined){
|
||||
if (this.identicalTo[i] !== undefined) {
|
||||
return undefined
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
if (newId === undefined) {
|
||||
return {
|
||||
type: "Feature",
|
||||
|
|
@ -123,7 +123,7 @@ export default class ReplaceGeometryAction extends OsmChangeAction {
|
|||
const {closestIds, osmWay} = await this.GetClosestIds()
|
||||
|
||||
for (let i = 0; i < closestIds.length; i++) {
|
||||
if(this.identicalTo[i] !== undefined){
|
||||
if (this.identicalTo[i] !== undefined) {
|
||||
const j = this.identicalTo[i]
|
||||
actualIdsToUse.push(actualIdsToUse[j])
|
||||
continue
|
||||
|
|
@ -221,7 +221,7 @@ export default class ReplaceGeometryAction extends OsmChangeAction {
|
|||
|
||||
const closestIds = []
|
||||
const distances = []
|
||||
for (let i = 0; i < this.targetCoordinates.length; i++){
|
||||
for (let i = 0; i < this.targetCoordinates.length; i++) {
|
||||
const target = this.targetCoordinates[i];
|
||||
let closestDistance = undefined
|
||||
let closestId = undefined;
|
||||
|
|
@ -240,15 +240,15 @@ export default class ReplaceGeometryAction extends OsmChangeAction {
|
|||
|
||||
// Next step: every closestId can only occur once in the list
|
||||
// We skip the ones which are identical
|
||||
console.log("Erasing double ids")
|
||||
console.log("Erasing double ids")
|
||||
for (let i = 0; i < closestIds.length; i++) {
|
||||
if(this.identicalTo[i] !== undefined){
|
||||
if (this.identicalTo[i] !== undefined) {
|
||||
closestIds[i] = closestIds[this.identicalTo[i]]
|
||||
continue
|
||||
}
|
||||
const closestId = closestIds[i]
|
||||
for (let j = i + 1; j < closestIds.length; j++) {
|
||||
if(this.identicalTo[j] !== undefined){
|
||||
if (this.identicalTo[j] !== undefined) {
|
||||
continue
|
||||
}
|
||||
const otherClosestId = closestIds[j]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue