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
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
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
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.
__