-
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
Support for warp? #123
Comments
Do you have a specific form of warp in mind? Only a vertical change, or creating completely new geoarrays? Maybe warp from one GeoArray into another one? That would help with designing an api. The options for warping in pure Julia are limited, but we should be easy to call GDAL for this. |
@evetion I've been using the interpolations.jl which seems pretty fast. The one thing that I do a lot is interpolate (warp) one array into the same extent, projection and resolution as another array so they can be operated on together. |
Interpolations.jl might be nice for a package extension. I've implemented gdalwarp in version 0.8. ga = GeoArray(zeros((360, 180)))
bbox!(ga, (min_x=-180, min_y=-90, max_x=180, max_y=90))
crs!(ga, GeoFormatTypes.EPSG(9754))
ga2 = GeoArrays.warp(ga, Dict("t_srs" => "EPSG:4326+3855")) There's also Arguments in the Dict are described in https://gdal.org/programs/gdalwarp.html |
Ohhh... the new like::GeoArray is a fantastic addition |
Are there any intentions for GeoArrays to support warping between projections?
The text was updated successfully, but these errors were encountered: