We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6c2234 commit 34ef004Copy full SHA for 34ef004
2 files changed
CHANGELOG.md
@@ -12,6 +12,10 @@
12
13
### Pending Fixed
14
15
+### v14.18.2 - 2025-01-02
16
+
17
+- :bug: Ensure normalize step never produces center with > 3 coordinates
18
19
### v14.18.1 - 2025-12-24
20
21
- :rocket: Update GitHub Actions release step
lib/parser/normalize_geojson.ts
@@ -93,7 +93,7 @@ export async function normalize_geojson(
93
stale.setHours(stale.getHours() + 1);
94
feature.properties.stale = stale;
95
96
- feature.properties.center = PointOnFeature(feature).geometry.coordinates;
+ feature.properties.center = PointOnFeature(feature).geometry.coordinates.splice(3);
97
98
feature.properties.archived = true;
99
0 commit comments