-
Notifications
You must be signed in to change notification settings - Fork 211
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
Reconstructing Complete Features #8
Comments
@hallahan features have an id attribute. Whether it would be used to join pieces of features across tiles is something that a specification external to the .proto file should cover. See also @pramsey's comment in #5. Partial responses are a feature of other protocols (HTTP, for example). Would giving features a "partial" attribute be the way to go? |
@hallahan Currently, vector tiles don't contain any information on where and how a feature was clipped, or whether it was clipped at all. This information may be stored in future versions of this format. If you have any suggestions regarding this matter, please feel free to share them. Apart from that, @sgillies mentions that you can assign arbitrary tags, or use the Also note that you don't have to clip features to store them in a vector tile. The boundaries of |
Polygon features can interact with a tile in four ways:
|
One essential use case that arises from having tiles is recreating a complete feature that spans many tiles.
Being that a given tile will clip a geometry, how do we know which paths are actually just clipping a feature as opposed to an actual path describing that features?
Also, how do we uniquely identify each feature so that we know that we can join it to geometries in other tiles?
The text was updated successfully, but these errors were encountered: