Skip to content
/ pygdal Public
forked from nextgis/pygdal

Virtualenv and setuptools friendly version of standard GDAL python bindings

License

Notifications You must be signed in to change notification settings

ldgeo/pygdal

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Virtualenv friendly GDAL bindings for Python

This package is for you if you had problems installing GDAL in your virtualenv. You can install GDAL into your virtualenv using this package but you still need to install GDAL library and its header files on your system. On Ubuntu it can be done this way:

$ sudo apt-get install libgdal1-dev

Version of the same package, and GDAL, so that if you have installed GDAL 3.6.4 you need to install 3.6.4.* of this package:

$ gdal-config --version
3.6.4
$ virtualenv --no-site-packages env
$ env/bin/pip install pygdal=="3.6.4.*"

The trick with range of versions required to support pygdal versioning.

Package numpy is also listed as a dependency, so you do not need to install it before installing GDAL. After package is installed you can use is same way as standard GDAL bindings:

from osgeo import gdal, ogr, osr

# ...

About

Virtualenv and setuptools friendly version of standard GDAL python bindings

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 78.7%
  • Python 18.2%
  • C 3.1%