Replies: 2 comments 8 replies
-
Related rasterio issue: rasterio/rasterio#1990 |
Beta Was this translation helpful? Give feedback.
7 replies
-
I remember running into issues like this around network grid functionality: https://github.com/OSGeo/PROJ/blob/master/docs/source/usage/network.rst#how-to-enable-network-capabilities- I quickly looked at the gist, and see you set several env, but nothing around network options. Not sure if this is the problem. The cludgy workaround is to run |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm interested in using rioxarray directly for geodetic transforms. For example, it's common to need to apply a reprojection pipeline to go from Geoid to Ellipsoid heights with datasets like Copernicus DEM
I think this might require opening an issue or discussion on rasterio since it's
rasterio.warp.reproject()
under the hood, but figured I'd start here!projinfo -s EPSG:4326+3855 -t EPSG:7661 -o PROJ --hide-ballpark --spatial-test intersects
☝️GDAL figures out how to do this automatically:
gdalwarp -s_srs EPSG:4326+3855 -t_srs EPSG:7661 $INPUT $OUTPUT
Similarly, I'd naively expect
daEllipsoid = daGeoid.rio.reproject(7661)
to work. But right now rioxarray does not throw any errors or warnings, but also does not do the correct thing which is retrievingus_nga_egm08_25.tif
to apply a vertical shift.Full notebook with logging outputs captured here https://gist.github.com/scottyhq/2153cb01cf951680a4dcb9e1e84b69d7
Beta Was this translation helpful? Give feedback.
All reactions