Skip to main content

geoetl-cli info

Display information about a geospatial dataset.

Synopsis

geoetl-cli info [OPTIONS] <PATH> --driver <DRIVER>

Description

The info command displays metadata and schema information about a geospatial dataset without converting it. Use this command to inspect file contents, verify format, and understand data structure.

Options

OptionShortTypeRequiredDescription
<PATH>pathYesInput file path
--driver-fstringYesFormat driver (see supported drivers)
--geometry-columnstringFor CSVColumn containing WKT geometries
--help-hflagNoPrint help information

Examples

Example 1: Inspect GeoJSON

geoetl-cli info cities.geojson --driver GeoJSON

Example 2: Inspect CSV

geoetl-cli info data.csv --driver CSV --geometry-column geometry

Example 3: Inspect GeoParquet

geoetl-cli info data.parquet --driver GeoParquet

See Also

  • convert - Convert data between formats
  • drivers - List available drivers