Hi,
I need to import around 3 500 geojson files.
My files are currently in KML.
After converting my file I copied and pasted the json into the editor with no luck
I have approx. 3500 KML files I am converting to geojson.
I have tested a small sample of the data on the Backendless mapping platform.
When I select points in the polygon the Backendless data looks as follows:
{
“type”: “Polygon”,
“coordinates”: [
[
[
18.36372689,
-33.78462903
],
[
18.35686044,
-33.79347433
],
[
18.35514382,
-33.80003638
],
[
18.35651712,
-33.8088801
],
[
18.35892038,
-33.81686718
],
[
18.36578683,
-33.82143089
],
[
18.37333993,
-33.82114567
],
[
18.38054971,
-33.81886383
],
[
18.38604287,
-33.81544097
],
[
18.38329629,
-33.8088801
],
[
18.37848977,
-33.80117756
],
[
18.37677316,
-33.79461559
],
[
18.37402658,
-33.78605575
],
[
18.36372689,
-33.78462903
]
]
]
}
However my data looks as follows:
{
“type”: “Polygon”,
“coordinates”: [
[
[
18.3660700082469,
-33.789589997752,
0
],
[
18.3666499996832,
-33.7897000024167,
0
],
[
18.3678700033868,
-33.7897100001038,
0
],
[
18.368980002434,
-33.7898400013298,
0
],
[
18.3696400043856,
-33.7902400008754,
0
],
[
18.3701000012851,
-33.7904200000073,
0
]
]
]
}
I get the following message:
Invalid GIS data provided. Correct string with WKT or string with GeoJSON or just GeoJSON object is required.
The altitude 0 is the and works on other geojson editors.
Please could you help me sort this problem out.
I also would like to remove the pins in the polygon.
Thank you for assisting me.