-
Notifications
You must be signed in to change notification settings - Fork 36
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 SRTM from RasterDataSources.jl #242
Comments
Yep. Could also be generally useful to have a way to stitch tiles together, This needs 2 parts. A way to stitch the BlockArrays, and a way to combine the dimensions. Probably Then we'll need a method for RasterDataSources types that have tiles, or just this SRTM to get started. Do you want to have a go at a PR? |
Yea I'll have a go at it. Thanks for the feedback! |
Sweet! Don't hesitate to ping me on things here, or make a work in progress PR. I try to streamline things but DimensionalData.jl is inherantly pretty complicated, and you may need to understand a bit of how LookupArray and Dimensions work to get this done. |
I've just registered a new version of DiskArrays.jl with lazy |
SRTM is a new dataset in RasterDataSources.jl. The
SRTM
type needs to be added to src/sources/rasterdatasources.jl to support the following interface:Details:
getraster(SRTM, ...)
returns a matrix of tile paths, which is currently unsupported byRaster
(?)BlockArray
ofDiskArray
s is an option for theRaster
array backing. (BlockArrays.jl)The text was updated successfully, but these errors were encountered: