ogr2ogr, ogrinfo: add pages (#3337)

This commit is contained in:
Jakob Miksch
2019-10-29 16:36:20 +01:00
committed by Marco Bonelli
parent a037cf93ad
commit ca08612958
2 changed files with 40 additions and 0 deletions

16
pages/common/ogrinfo.md Normal file
View File

@@ -0,0 +1,16 @@
# 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}}`