Fix: fix some unresolved imports after refactoring

This commit is contained in:
Pieter Vander Vennet 2025-08-01 19:49:44 +02:00
parent 6f69f3ee69
commit 5e3be88eca
8 changed files with 15 additions and 6 deletions

View file

@ -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")