-
Notifications
You must be signed in to change notification settings - Fork 14
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 support for COG and STAC #3
Comments
I had a quick go at modifying your code for openlayers to open a COG. I've been waiting for years for a tool like ipyleaflet that can display large raster without having to run a tile server. Seems like it is finally not too far fetched an idea.
|
Nice! Can you submit a pull request for this? |
Maybe if i take it further. |
Another postential solution |
The readme of that makes it sound like it can only show a cog overview. I may have mis understood. OpenLayers seems to have very good cog handling. |
I have been using the TiTiler demo endpoint (https://titiler.xyz) for rendering COG/STAC. It incurres charges on their end. I would like to avoid using it if possible. We need a solution for rendering COG/STAC without a server. |
I'm aware of that service. |
Leafmap supports both TiTiler (for remote COG) and localtileserver (for local COG). import leafmap
url = 'https://opendata.digitalglobe.com/events/california-fire-2020/pre-event/2018-02-16/pine-gulch-fire20/1030010076004E00.tif'
m = leafmap.Map()
m.add_cog_layer(url)
m It seems the localtileserver remote COG is not working at the moment. I am considering switch from the TiTiler demo point to localtileserver once the issue is fixed. However, we still need TiTiler to render STAC assets. I am not aware any other python package that can render STAC assets without a tile server. |
The text was updated successfully, but these errors were encountered: