For what it's worth, this is as far as I've gotten and it works:
ogr2ogr -dialect sqlite -sql @admins.sql -nln over -overwrite
admins.gpkg /vsis3/overturemaps-us-west-2/release/2023-07-26-alpha.0
I've got a cheat sheet set up with the sql at:
https://www.postholer.com/articles/Overature-Cheat-
Here's fetching the first admin boundary:
docker run --rm -it ghcr.io/osgeo/gdal:ubuntu-full-latest ogrinfo
/vsis3/overturemaps-us-west-2/release/2023-07-26-alpha.0/theme=admins/ -where
"type='administrativeBoundary'" -al -fid 1
Warning 1: Field names of unhandled type map> ('names')> ignored
Thanks for the response Paul!
Yes, it's overture. I never considered the sqlite data types. Thanks for
the tip, I'll keep poking around.
On 7/28/23 14:46, Paul Ramsey wrote:
You are playing with Overture data, yes? I am also poking around
there. That error message seems to be on the Parquet
Paul,
I had to use 3.7.1 to have it read the geometry properly, 3.7.0 would read the
directories.
docker run --rm -it ghcr.io/osgeo/gdal:ubuntu-full-latest ogrinfo
/vsis3/overturemaps-us-west-2/release/2023-07-26-alpha.0/theme=admins -al -so
Warning 1: Field names of unhandled type map> ('nam
Dear List,
We are struggling with the following netCDF file, which appears to be quite
old (CF-1.6) and allegedly contains a few layers (one of which is called
"inflow". with point data).
https://drive.google.com/file/d/1FRt0L4idunewwjgKQmZQ7Ny_KGnuTL2X/view?usp=sharing
The only reason we know a
I am playing with accessing the Overture data dump, which is multiple
files in each S3 bucket. The doco says that as of 3.6 (check!), with
the libarrow_dataset build (check) I should be able to read directory
collections as layers, but no luck thus far:
AWS_REGION=us-west-2 AWS_NO_SIGN_REQUEST=YES
You are playing with Overture data, yes? I am also poking around
there. That error message seems to be on the Parquet read side rather
than the GeoPKG write.
AWS_REGION=us-west-2 AWS_NO_SIGN_REQUEST=YES ./ogrinfo
/vsis3/overturemaps-us-west-2/release/2023-07-26-alpha.0/theme=admins/type=administra
Hello there, I am developing a C++ application that uses GDAL on Windows. I followed the instructions of building GDAL by conda using MSVC 2019 (from below link). but I cannot find the include folder or the DLL files. Would appreciate any help. https://gdal.org/development/dev_environment.html#bui