Forrest logo
back to the gdalinfo tool

gdalinfo:tldr:03d25

gdalinfo: List information about a Web Map Service (WMS).
$ gdalinfo WMS:${https:--services-meggsimum-de-geoserver-ows}
try on your machine

The command "gdalinfo" is a command-line utility in GDAL (Geospatial Data Abstraction Library), which is a set of open-source software tools used to manipulate and analyze raster and vector geospatial data formats.

The specified command "gdalinfo WMS:${https:--services-meggsimum-de-geoserver-ows}" is using gdalinfo to retrieve information about a Web Map Service (WMS) provided by a particular URL.

Here is the breakdown of the command:

  • "gdalinfo": This is the command itself, which is followed by options and arguments to specify the operation.

  • "WMS:${https:--services-meggsimum-de-geoserver-ows}": This is the parameter passed to the gdalinfo command. It indicates that we want to retrieve information about a WMS using the specified URL.

In this case, the URL for the WMS is "https://services.meggsimum.de/geoserver/ows". The WMS is a standard protocol for serving georeferenced map images over the internet. By executing the command, gdalinfo will connect to the WMS server, retrieve the information about available layers, projections, extent, and other relevant details, and display them on the command-line interface.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the gdalinfo tool