Replies: 1 comment 1 reply
-
Related: #705 |
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
-
The following code used to work with pyproj==3.6.1
But with pyproj==3.7 I'm getting a no-op transform - the grid I tried to download isn't actually being used.
This bug only manifested itself in my CI system, which starts with a completely clean environment. If I look in the .local/share/proj directory in the build system, I see that the grid is there
us_nga_egm96_15.tif
, but if I look in my "messy" system where it wasn't failing, I havefiles.geojson
in there as well.I found the call to
get_transform_grid_list()
which puts the missingfiles.geojson
there.With that call added, the test still fails the first time I run it, but once both files are in place, the second time you run the program, the tests succeed.
How can I reliably download grids on the fly?
Beta Was this translation helpful? Give feedback.
All reactions