Re: [gdal-dev] ogr SSL errors on ubuntu

2022-10-20 Thread Jorge Gustavo Rocha
Hi Even, Thank you so much for addressing this issue in so short time. I've checked out your pr. It runs fine on my side. Regards, Jorge On 20/10/22 20:58, Even Rouault wrote: Jorge, Fix/workaround and links to related issues in https://github.com/OSGeo/gdal/pull/6561 The curl binary man

Re: [gdal-dev] ogr SSL errors on ubuntu

2022-10-20 Thread Even Rouault
Jorge, Fix/workaround and links to related issues in https://github.com/OSGeo/gdal/pull/6561 The curl binary manages to ignore that, but I couldn't easily spot how/where in its source code. The difference in errors are due to your curl versions using different backends: gnutls vs openssl.

Re: [gdal-dev] Python API docs

2022-10-20 Thread Even Rouault
https://gdal.org/api/python/osgeo.html Le 20/10/2022 à 21:13, Chaitanya kumar CH a écrit : Hi all, Does anyone know where the python api docs are moved? I can't find them at "gdal.org/python ". Thank you Best regards, Chaitanya Kumar CH.

Re: [gdal-dev] Python API docs

2022-10-20 Thread Alan Snow
They are now here: https://gdal.org/api/python/osgeo.html On Thu, Oct 20, 2022, 2:14 PM Chaitanya kumar CH wrote: > Hi all, > > Does anyone know where the python api docs are moved? I can't find them at > "gdal.org/python". > Thank you > > Best regards, > Chaitanya Kumar CH. > >

[gdal-dev] Python API docs

2022-10-20 Thread Chaitanya kumar CH
Hi all, Does anyone know where the python api docs are moved? I can't find them at " gdal.org/python". Thank you Best regards, Chaitanya Kumar CH. ___ gdal-dev mailing list gdal-dev@lists.osgeo.org https://lists.osgeo.org/mailman/listinfo/gdal-dev

[gdal-dev] ogr SSL errors on ubuntu

2022-10-20 Thread Jorge Gustavo Rocha
Hi, Lately, I have problems opening some datasets using ogr2ogr or ogrinfo due to SSL errors. I think others tools like curl had the same kind of problems, but now they seem to work well. Problems with ogr = Example (GDAL 3.6.0dev-f033e1fa1e, released 2022/08/04): ogrinfo

Re: [gdal-dev] gdal_calc output to multiband nedcdf ?

2022-10-20 Thread Laurențiu Nicola via gdal-dev
Hello, I've never tried it, but I believe you can describe some computations in a VRT. But gdal_calc can't do this, so you'd need to write the VRT directly as XML. That's probably not much easier than writing some Python or C++ to perform the same computation. Laurentiu On Thu, Oct 20, 2022,

[gdal-dev] gdal_calc output to multiband nedcdf ?

2022-10-20 Thread Jonas Ardö via gdal-dev
Dear gdal-gurus, Trying to use*gdal_calc* to  do the same calculation for tow 366 band (daily data) files and store it in a *.nc file with the same dimensions as the input files. This works OK (output to 366 tiff files): for i in {1..366} # One band per day output to tif do   gdal_calc.py   -

Re: [gdal-dev] ogr2ogr doesn't connect to MS SQL Server

2022-10-20 Thread Andrea Giudiceandrea via gdal-dev
Hi Michael, the GDAL/OGR library needs the "ogr_MSSQLSpatial.dll" file to properly activate the MSSQLSpatial GDAL/OGR driver ("MSSQL:"). You can check if the MSSQLSpatial GDAL/OGR driver is supported by your ogr2ogr tool using the following command in the OSGeo4W Shell: ogr2ogr --formats | f

Re: [gdal-dev] ogr2ogr doesn't connect to MS SQL Server

2022-10-20 Thread Reetz, Michael (NLPV)
Hi Pedro, I’ve found msodbcsql17.dll in C:\Program Files\QGIS 3.22.8\bin\1033 and C:\Program Files\QGIS 3.22.8\bin. Gdal-mss seems not to be on my computer. But since SQL Server Native Client isn’t supported by MS SQL Server 2019 , this shouldn’t be a Problem. I have only the OSGeo4W Shell ship

Re: [gdal-dev] ogr2ogr doesn't connect to MS SQL Server

2022-10-20 Thread Pedro Venâncio
Michael, Check if you have gdal-mss and msodbcsql libs installed, like here: https://github.com/PedroVenancio/export_to_sql_server/issues/2#issuecomment-1240675079 Best regards, Pedro Reetz, Michael (NLPV) escreveu no dia quinta, 20/10/2022 à(s) 15:13: > Dear members of the GDAL-DEV group, >

[gdal-dev] ogr2ogr doesn't connect to MS SQL Server

2022-10-20 Thread Reetz, Michael (NLPV)
Dear members of the GDAL-DEV group, we are using MS SQL Server 2019 as basis for Geoserver and GIS software. There are a lot of tables that have attributes of the types geometry and/or geography. I can load these tables into QGIS (3.22.8) projects without any problems. Now I'm asked to add an

Re: [gdal-dev] Tips on Speeding up OGR2OGR GeoPackage Creation

2022-10-20 Thread Rahkonen Jukka
Hi, There are some performance hints in https://gdal.org/drivers/vector/sqlite.html#target-drivers-vector-sqlite-performance-hints but everything in SQLite is stored into one single file that must have a proper organization all the time and that inevitably sets some limits. Ogr2ogr is made to

Re: [gdal-dev] Tips on Speeding up OGR2OGR GeoPackage Creation

2022-10-20 Thread Laurențiu Nicola via gdal-dev
Hi, https://gdal.org/drivers/vector/gpkg.html#configuration-options has a couple of options that can help with performance. See also https://gdal.org/drivers/vector/sqlite.html#target-drivers-vector-sqlite-performance-hints. But I don't recall them helping that much. YMMV. Regards, Laurentiu

[gdal-dev] Tips on Speeding up OGR2OGR GeoPackage Creation

2022-10-20 Thread Dennis Burgess
We have a large table in MSSQL, this table we extract data from and drop it into a GeoPackage for further processing. However, the extraction can take some time, its only using 5% of the CPU available, and pulling the data is fairly quick in debug mode, its really its generation and index creat