forked from MapComplete/MapComplete
Fix: fix some unresolved imports after refactoring
This commit is contained in:
parent
6f69f3ee69
commit
5e3be88eca
8 changed files with 15 additions and 6 deletions
|
|
@ -7,6 +7,7 @@ import { GeoOperations } from "../Logic/GeoOperations"
|
|||
import { Tiles } from "../Models/TileRange"
|
||||
import { Feature } from "geojson"
|
||||
import { features } from "monaco-editor/esm/metadata"
|
||||
import { Lists } from "../src/Utils/Lists"
|
||||
|
||||
/**
|
||||
* This script slices a big newline-delimeted geojson file into tiled geojson
|
||||
|
|
@ -165,7 +166,7 @@ class Slice extends Script {
|
|||
console.log("Loading as newline-delimited features")
|
||||
allFeatures = await this.readFeaturesFromLineDelimitedJsonFile(inputFile)
|
||||
}
|
||||
allFeatures = Utils.NoNull(allFeatures)
|
||||
allFeatures = Lists.noNull(allFeatures)
|
||||
|
||||
console.log("Loaded all", allFeatures.length, "points")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue