Re: [gdal-dev] fail to pip install gdal

2024-11-21 Thread Mike Taves via gdal-dev
On Fri, 22 Nov 2024 at 10:26, ni hao via gdal-dev wrote: > when I tried to pip install gdal, I got: > > Collecting gdal > Downloading gdal-3.10.tar.gz (848 kB) This fails because the source distribution of gdal needs to be compiled. There are no pre-compiled binary wheels on PyPI. There are se

Re: [gdal-dev] Help using gdal_grid when src_datasource is a NetCDF File

2024-08-22 Thread Mike Taves via gdal-dev
On Fri, 23 Aug 2024 at 04:03, Ewan Tarrant via gdal-dev wrote: > Thanks in advance for your help, To read point data from a netCDF file, refer to the vector driver: https://gdal.org/drivers/vector/netcdf.html The data would need to conform to CF-1.8 for Point data: https://cfconventions.org/Data

Re: [gdal-dev] Building GDAL documentation with ReadTheDocs

2024-07-24 Thread Mike Taves via gdal-dev
On Wed, 24 Jul 2024 at 22:34, Javier Jimenez Shaw via gdal-dev wrote: > Maybe the solution is that proj.org default be "stable" and not "9.4". The reason why PROJ's RTD is configured this way is that "stable" is set at one commit (currently 875a485f) for the most recent release, as described by h

Re: [gdal-dev] Issues specifying PostGIS connection details - possibly related to special characters in passwords?

2024-07-02 Thread Mike Taves via gdal-dev
On Wed, 3 Jul 2024 at 03:36, Robin Wilson via gdal-dev wrote: > Any suggestions welcome, If you routinely access a specific database, a reliable method is to create a .pgpass file: https://www.postgresql.org/docs/current/libpq-pgpass.html This way you never need to provide a password. __