Skip to content

Handling data with GCPs or RPCs #283

Answered by vincentsarago
rbudhu asked this question in Q&A
Discussion options

You must be logged in to vote

Hi @rbudhu
could you check if you can open your file using rio_tiler.io.GCPCOGReader ?

from rio_tiler.io import GCPCOGReader

with GCPCOGReader("youfile") as cog:
    print(cog.info())

if this works, then you could create your own application as shown here https://developmentseed.org/titiler/examples/code/mini_cog_tiler/

but instead of using default COGReader use GCPCOGReader as the reader

cog = TilerFactory(reader=GCPCOGReader)

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@rbudhu
Comment options

Answer selected by vincentsarago
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants