-
Notifications
You must be signed in to change notification settings - Fork 434
New issue
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
Question: how to handle 3d coordinates #714
Comments
The release branch of Tippecanoe doesn't handle 3-D because version 2 of the vector tile spec doesn't have a way to represent it. The VT3 development branch (#611) does support 3-D, using the same syntax as you used above. But the tiles will be of limited use until rendering clients start to support the VT3 format. |
Ah ok - then for now I'll reformat the geojson to individual points with properties I guess... |
Yes, I think that is your best option at the moment. |
Hi, revisiting this issue, if I want to display the depth at each point, should formatting it like this work:
|
Yep, I think so - creating one feature per point... quite a bit more verbose, but until 3 (or multi?) dimensional points are supported, that'll have to be the way it's done. (Where "name" could be "elevation" or whatever you then want to use in the style) |
Quick question: I have GeoJSON data which is formatted slightly oddly (and I'm not even sure it's valid??). Example:
Basically the third digit is the elevation. Can tippecanoe handle this, and if not, how should I reformat it (short of individual points all with elevation set in properties??)
The text was updated successfully, but these errors were encountered: