serving terrain RGB tiles/DEM COGs #530
-
Possibly a feature request, but I was wondering if programs like dem-tiler (github.com/kylebarron/dem-tiler) have been updated to work with titiler or not, and if not how best to do it (likely just forking dem-tiler and replacing what needs to be replaced with titiler/fastapi equivalents). I didn't find any equivalent projects, and I am not aware if front-ends like deck.gl can handle floating point data directly from COGs served by titler, although if there are that would be great. Otherwise I think I see generally what needs to happen, it's just a question if I got the time to do it. A number of viewers exist around the cesium 3d-tiles format so that is another thing I am considering as I have a use case that can't assume mercator projection |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
Hi @AndrewAnnex
It should be supported once we do #493 (next version of titiler, see https://github.com/developmentseed/rio-viz/pull/51/files#diff-19b6c00bbb9931102c6b0f89a64b6c5dc055c3cd339ac3fb0e70419fe8f091e5R111)
I don't think deck.gl can handle other datatype that uint8 and uint16
here is an example of writting a custom tiling service to produce something else than images |
Beta Was this translation helpful? Give feedback.
-
FYI I've started #542 to add custom algorithms (such as terrarium and terrainrgb) |
Beta Was this translation helpful? Give feedback.
-
@vincentsarago and @kylebarron as you both already saw I've made https://github.com/AndrewAnnex/monticello as a new project to move the functionality of dem-tiler to a titiler extension. I haven't tested it yet beyond the unit tests in the project and I have probably missed things as I am not that experienced with fastapi. But in short the original questions I had are now basically resolved! |
Beta Was this translation helpful? Give feedback.
@vincentsarago and @kylebarron as you both already saw I've made https://github.com/AndrewAnnex/monticello as a new project to move the functionality of dem-tiler to a titiler extension. I haven't tested it yet beyond the unit tests in the project and I have probably missed things as I am not that experienced with fastapi. But in short the original questions I had are now basically resolved!