Replies: 1 comment 11 replies
-
@jlaura 👁️ your code it seems that the default TMS used is WebMercator, can you change to # 4. Create Custom TMS dependency
def TMSParams(
TileMatrixSetId: TileMatrixSetNames = Query(
TileMatrixSetNames. Europa, # type: ignore
description="TileMatrixSet Name (default: 'Europa')",
)
) -> TileMatrixSet:
"""TileMatrixSet Dependency."""
return tms.get(TileMatrixSetId.name) |
Beta Was this translation helpful? Give feedback.
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am seeing the following error attempting to use a custom TMS (for non-earth data). I wonder if anything jumps out at anyone? I have a working example just using riotiler (many thanks @vincentsarago for seeing that issue and posting the example!). The next step, is to get a titiler example working. Then I can deploy body specific tilers to AWS (that's the plan anyway!).
Here is the error I am seeing:
So, no transformation operations from Europa to 4326. Since both are just lat/lon, I was anticipating that this hack would work? Perhaps I am messing up the configuration of the custom WMS?
Here is a minimal reproducible app:
dependencies.py
routes.py
main.py
web map (Jupyter)
Beta Was this translation helpful? Give feedback.
All reactions