-
Notifications
You must be signed in to change notification settings - Fork 13
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 of coords
to return a StepRangeLen
#125
Comments
Do you have a code snippet for your use of Interpolations? We could add a pkg extension (Julia 1.9 only) for it. Or let the fill API also accept Interpolation options instead of just GeoStatsSolvers. |
Also, stepranges could only work on non-rotated rasters, so it's difficult to support directly. |
Other aspects of
|
I've added julia> ga = GeoArray(rand(10, 10))
10x10x1 Array{Float64, 3} with AffineMap([1.0 0.0; 0.0 1.0], [0.0, 0.0]) and undefined CRS
julia> x0, y0 = GeoArrays.ranges(ga)
(0.5:1.0:9.5, 0.5:1.0:9.5) |
Could support be added to
coords
such that it returns aStepRangeLen
for 'x' and 'y' coordinates?StepRangeLen then be passed directly to Interpolations.jl
The text was updated successfully, but these errors were encountered: