-
Notifications
You must be signed in to change notification settings - Fork 84
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
Add a data structure for tileset metadata #44
Conversation
m.description = description != NULL ? description : fname; | ||
m.version = 2; | ||
m.type = "overlay"; | ||
m.format = vector ? "pbf" : "png"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in what case will these be PNG?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@bdon If we use tile-join for raster tiles via rasterio or mbutil, we need PNG file supports.
However, how about webp support?
rasterio supports both png and webp for mbtiles.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@smellman are you currently using tile-join for this purpose? I don't see the code path where vector=false
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, all paths are vector=true
.
I want to use tile-join
for raster tile, I will check deeply.
LGTM |
No description provided.