Skip to main content

Python wrapper for Gdal/OGR command line tools

Project description

pygdaltools

Python library providing wrappers for the most common Gdal/OGR command line tools. Currently, ogr2ogr, ogrinfo, gdalinfo and gdalsrsinfo are supported. Note that this library requires GDAL/OGR tools to be installed in the system.

Installation

pip install pygdaltools

This command does not automatically install GDAL/OGR tools in your system. In Debian or Ubuntu you can install them by using:

apt-get install gdal-bin

In CentOS:

yum -y install gdal

For Windows, you can install GDAL/OGR by using OSGeo4W. You will also need to see the Configuration section.

Usage

Gdalinfo:

import gdaltools
info = gdaltools.gdalinfo("/mypath/myraster.tif")
print info # output is the same generated by the gdalinfo command

Raster stats:

stats = gdaltools.get_raster_stats("/mypath/myraster.tif")
print stats[0]
# outputs a tuple: (band0_min, band0_max, band0_mean, band0_stdev)
print stats[1]
# outputs a tuple: (band1_min, band1_max, band1_mean, band1_stdev)

Ogrinfo:

# Basic usage:
info = gdaltools.ogrinfo("thelayer.shp", "thelayer", geom=False)
print info # output is the same generated by the ogrinfo command

# Other examples:
ogrinfo("thedb.sqlite")
gdaltools.ogrinfo("thedb.sqlite", "layer1", "layer2", geom="SUMMARY")
gdaltools.ogrinfo("thedb.sqlite", sql="SELECT UpdateLayerStatistics()")

Ogr2ogr. From shp to geojson:

ogr = gdaltools.ogr2ogr()
ogr.set_encoding("UTF-8")
ogr.set_input("mylayer.shp", srs="EPSG:4326")
ogr.set_output("mylayer.geojson")
ogr.execute()

It can also be chained in a single line:

gdaltools.ogr2ogr()\
  .set_encoding("UTF-8")\
  .set_input("mylayer.shp", srs="EPSG:4326")\
  .set_output("mylayer.geojson").execute()

Ogr2ogr. From postgis to shp:

ogr = gdaltools.ogr2ogr()
conn = gdaltools.PgConnectionString(host="localhost", port=5432, dbname="scolab", schema="data", user="myuser", password="mypass")
ogr.set_input(conn, table_name="roads", srs="EPSG:4326")
ogr.set_output("mylayer.shp")
ogr.execute()

Ogr2ogr. From postgis to spatialite, specifying a different output table name:

ogr = gdaltools.ogr2ogr()
conn = gdaltools.PgConnectionString(host="localhost", port=5432, dbname="scolab", schema="data", user="myuser", password="mypass")
ogr.set_input(conn, table_name="roads", srs="EPSG:4326")
ogr.set_output("mydb.sqlite", table_name="roads2010")
ogr.set_output_mode(data_source_mode=ogr.MODE_DS_CREATE_OR_UPDATE) # required to add the layer to an existing DB
ogr.execute()

Ogr2ogr. From postgis to spatialite, reprojecting to "EPSG:25830":

ogr = gdaltools.ogr2ogr()
conn = gdaltools.PgConnectionString(host="localhost", port=5432, dbname="scolab", schema="data", user="myuser", password="mypass")
ogr.set_input(conn, table_name="roads", srs="EPSG:4326")
ogr.set_output("mydb.sqlite", srs="EPSG:25830")
ogr.execute()

Configuration

By default, gdaltools assumes that Gdal/Ogr commands are installed under /usr/bin/ (the standard Linux path). In order to configure specific paths (for instance for using the library in Windows), you can use:

import gdaltools
gdaltools.Wrapper.BASEPATH = "C/Program Files/Gdal/bin"
print gdaltools.gdalinfo("mywindowsraster.tif")

You can also use lower level API for setting the full path for specific commands:

info = gdaltools.GdalInfo(command_path="C/Program Files/Gdal/bin/gdalinfo.exe")
info.set_input('mywindowsraster.tif')
print info.execute()
print info.get_raster_stats()

FAQ

Nobody asked yet, but just in case.

Q - Why don't you use the Python GDAL/OGR API?
A - The GDAL/OGR command line tools perform very specific, higher-level tasks, while the Python GDAL/OGR API offers a much lower level API. Therefore, in this library we try to offer this higher level functionality using a programmer-friendly interface.

Q - But why do you internally call the command line tools, instead of implementing each command using the Python GDAL/OGR API?
A - We believe it would take us more time to write the library using the API instead of the CLI. It also has some advantages: 1) it can use different versions of GDAL/OGR in the same computer 2) it does not require having Python GDAL bindings installed. In any case, we can try "the API way" if you are willing to fund it ;-)

Q - Why don't you use the sample Python implementation of these commands that are included in the GDAL Python bindings?
A - They can be used, the library allows specifying the path to the command to use.

Authors

Cesar Martinez Izquierdo - Scolab

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pygdaltools-1.4.2.tar.gz (33.3 kB view details)

Uploaded Source

Built Distribution

pygdaltools-1.4.2-py2.py3-none-any.whl (27.8 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file pygdaltools-1.4.2.tar.gz.

File metadata

  • Download URL: pygdaltools-1.4.2.tar.gz
  • Upload date:
  • Size: 33.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.19

File hashes

Hashes for pygdaltools-1.4.2.tar.gz
Algorithm Hash digest
SHA256 fc77e27bc770d1c50e874e2ef605d3680a57276cc070e1d5b8eeba3c96910bae
MD5 746885a1da4a94cbf556cc253821f388
BLAKE2b-256 7e5833e1cf3564c0a4bfe71485edcb202cc6c36f81225d8ac12fc48e876531e3

See more details on using hashes here.

File details

Details for the file pygdaltools-1.4.2-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for pygdaltools-1.4.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 a02cbe4093165ac124e79c5c8653fa616cee75f42714d712e90e9195d737e89f
MD5 8f9e18390cc4edcea4afc41d472da56b
BLAKE2b-256 009e95f2cdb9cf42ab2f81593ad60892b24455c49ea8780a008f8c1ba1c86601

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page