1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-02 12:15:24 +02:00
tldr/pages/common/ogrinfo.md

17 lines
413 B
Markdown
Raw Normal View History

2019-10-29 16:36:20 +01:00
# ogrinfo
> List information about an OGR-supported data source.
> More information: <https://gdal.org/programs/ogrinfo.html>.
- List layers of a GeoPackage:
`ogrinfo {{input}}.gpkg`
- Get detailed information about a specific layer of a GeoPackage:
`ogrinfo {{input}}.gpkg {{layer_name}}`
- Only show summary information about a specific layer of a GeoPackage:
`ogrinfo -so {{input}}.gpkg {{layer_name}}`