Hello,
thank you very much for library, it is very helpful. Unfortunately I have problems with converting LineString and Points, where LineString has only one point with [0,0,0] coordinates and Point has no coordinates.
Sample output:
{
"type": "Feature",
"geometry": {
"coordinates": [
[
0.0,
0.0,
0.0
]
],
"type": "LineString"
},
"properties": {
"name": "Building 43"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point"
},
"properties": {
"name": "Test"
}
}
Ivo.