Olivier D'Hondt 🛰️🌍🌱

Results 12 comments of Olivier D'Hondt 🛰️🌍🌱

+1 that would be super useful.

Hi @sgillies any updates on this? I guess I can probably try to use the GeoTiff driver with the right options to replicate what the COG driver does, unless there...

Makes sense! Then maybe writing COG directly shouldn't be allowed in the first place to avoid the confusion.

Thanks @sgillies ! This fixes the error for 1.4.1. Interestingly, I tried upgrading to 1.4.3 and it worked without your workaround.

Sure! I have added: ```python import os import logging os.environ["PROJ_DEBUG"] = "2" console_handler = logging.StreamHandler() formatter = logging.Formatter("%(levelname)s:%(message)s") console_handler.setFormatter(formatter) logger = logging.getLogger("pyproj") logger.addHandler(console_handler) logger.setLevel(logging.DEBUG) logging.basicConfig(format="%(levelname)s:%(message)s", level=logging.DEBUG) ``` at the beginning...

I am not a pyproj specialist, so let me know if it wasn't what you meant, but: - I have manually downloaded the grid at https://cdn.proj.org/us_nga_egm08_25.tif - copied it in...

Great! Happy to help. With pyproj 2.5.0 I am not able to control the network as `pyproj.network` does not exist. Setting the debug env does not seem to have any...

Thanks. I have tried with and without network and it didn't change anything on 2.5.0, the outputs always match.

Hi, to follow up on this, is there a way to pre-download the egm tiles programmatically as a workaround? I'd really like to be able upgrade to the latest version...