Alan D. Snow
Alan D. Snow
@GIRIJA-KALYANI, I recommend asking your question here: https://github.com/corteva/rioxarray/discussions
Thoughts: - It would be nice if there was a docker image with the GDAL dependencies installed without GDAL. That way, you only need to build GDAL. - Would be...
Current `rasterio==1.1.0` failure message is: ``` rasterio._err.CPLE_AppDefinedError: Full reprojection failed, but partial is possible if you define OGR_ENABLE_PARTIAL_REPROJECTION configuration option to TRUE ``` This is due to the use of...
https://github.com/OSGeo/gdal/pull/3025 It might be a good idea to use `GDAL_CURL_CA_BUNDLE`
I am able to reproduce with GDAL 3.4.0 (#1114) and 3.4.3: ```python >>> import fiona >>> fiona.show_versions() Fiona version: 1.9a2 GDAL version: 3.4.3 PROJ version: 9.0.0 OS: Linux 5.13.0-44-generic Python:...
This may be a useful reference: https://docs.travis-ci.com/user/billing-faq/#what-if-i-am-building-open-source
I would recommend at least 3.7+ since 3.6 is EOL (https://devguide.python.org/#status-of-python-branches). If you wanted to further simplify the matrix, you could go 3.8+ (https://github.com/pyproj4/pyproj/issues/930).
With `fiona 1.8.17` the problem still persists: Using `"OGC:CRS84"`:  Using `"EPSG:4326"`: 
I am running into the same issue with only using a single database ("default") and am using this fix: ```python def teardown_database(): with django_db_blocker.unblock(): # close unused connections for connection,...
I like how your module loads in the xarray dataset for WRF and the object-oriented design and how it handles time. However, I agree that it would be good to...