We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have problem with encoding/decoding the following geojson:
{ "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [ 15.726928710, 52.932085718 ], [ 17.116699218, 52.912214760 ], [ 16.721191406, 52.579688026 ], [ 15.803833008, 52.315195264 ], [ 14.869995117, 52.439269354 ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.716430661, 53.156653053 ], [ 16.847534179, 53.156653053 ], [ 16.847534179, 53.943154702 ], [ 13.716430664, 53.943154702 ], [ 13.716430661, 53.156653053 ] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [ 14.518432617, 52.855864177 ] } } ] }
Precision found should be equal to 9, but instead it is resolved to 6. Decoding encoded geobuf file produce the following geojson:
{ "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [ 15.726929, 52.932086 ], [ 17.116699, 52.912215 ], [ 16.721191, 52.579688 ], [ 15.803833, 52.315195 ], [ 14.869995, 52.439269 ] ] } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.716431, 53.156653 ], [ 16.847534, 53.156653 ], [ 16.847534, 53.943155 ], [ 13.716431, 53.943155 ], [ 13.716431, 53.156653 ] ] ] } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ 14.518433, 52.855864 ] } } ] }
So, 3 digits are missing and that is not allowed in my case.
The text was updated successfully, but these errors were encountered:
This is documented in issue #96 and the README:
geobuf/README.md
Line 31 in daad5e0
Sorry, something went wrong.
No branches or pull requests
I have problem with encoding/decoding the following geojson:
Precision found should be equal to 9, but instead it is resolved to 6.
Decoding encoded geobuf file produce the following geojson:
So, 3 digits are missing and that is not allowed in my case.
The text was updated successfully, but these errors were encountered: