Skip to main content

Geospatial geometries, predicates, and operations

Project description

Shapely is a Python package for manipulation and analysis of 2D geospatial geometries. It is based on GEOS (http://geos.refractions.net). Shapely 1.0 is not concerned with data formats or coordinate reference systems. Responsibility for reading and writing data and projecting coordinates is left to other packages like WorldMill and pyproj. For more information, see:

Shapely requires Python 2.4+. (I’ve also begun to port it to Python 3.0: http://sgillies.net/blog/564/shapely-for-python-3-0/.)

See also CHANGES.txt and HISTORY.txt.

Dependencies

  • libgeos_c (2.2.3 or 3.0.0+)

  • Python ctypes (standard in Python 2.5+)

Installation

Windows users should use the executable installer, which contains the required GEOS DLL. Other users should acquire libgeos_c by any means, make sure that it is on the system library path, and install from the Python package index:

$ sudo easy_install Shapely

or with the setup script:

$ sudo python setup.py install

Usage

To buffer a point:

>>> from shapely.geometry import Point
>>> point = Point(-106.0, 40.0) # longitude, latitude
>>> point.buffer(10.0)
<shapely.geometry.polygon.Polygon object at ...>

See the manual for comprehensive examples of usage. See also Operations.txt and Predicates.txt under tests/ for more examples of the spatial operations and predicates provided by Shapely. See also Point.txt, LineString.txt, etc for examples of the geometry APIs.

Numpy integration

All Shapely geometry instances provide the Numpy array interface:

>>> from numpy import asarray
>>> a = asarray(point)
>>> a.size
3
>>> a.shape
(2,)

Numpy arrays can also be adapted to Shapely points and linestrings:

>>> from shapely.geometry import asLineString
>>> a = array([[1.0, 2.0], [3.0, 4.0]])
>>> line = asLineString(a)
>>> line.wkt
'LINESTRING (1.0000000000000000 2.0000000000000000, 3.0000000000000000 4.0000000000000000)'

Python Geo Interface

Any object that provides the Python geo interface can be adapted to a Shapely geometry with the asShape factory:

>>> d = {"type": "Point", "coordinates": (0.0, 0.0)}
>>> from shapely.geometry import asShape
>>> shape = asShape(d)
>>> shape.geom_type
'Point'
>>> tuple(shape.coords)
((0.0, 0.0),)

>>> class GeoThing(object):
...     def __init__(self, d):
...         self.__geo_interface__ = d
>>> thing = GeoThing({"type": "Point", "coordinates": (0.0, 0.0)})
>>> shape = asShape(thing)
>>> shape.geom_type
'Point'
>>> tuple(shape.coords)
((0.0, 0.0),)

See http://trac.gispython.org/lab/wiki/PythonGeoInterface for more details on the interface.

Testing

Several of the modules have docstring doctests:

$ cd shapely
$ python point.py

There are also two test runners under tests/. test_doctests.py requires zope.testing. runalldoctests.py does not. Perhaps the easiest way to run the tests is:

$ python setup.py test

Support

For current information about this project, see the wiki.

If you have questions, please consider joining our community list:

http://trac.gispython.org/projects/PCL/wiki/CommunityList

Credits

  • Sean Gillies (Pleiades)

  • Howard Butler (Hobu, Inc.)

  • Kai Lautaportti (Hexagon IT)

  • Frédéric Junod (Camptocamp SA)

  • Eric Lemoine (Camptocamp SA)

  • Justin Bronn (GeoDjango) for ctypes inspiration

Major portions of this work were supported by a grant (to Pleiades) from the U.S. National Endowment for the Humanities (http://www.neh.gov).

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

Shapely-1.0.14.tar.gz (36.7 kB view details)

Uploaded Source

Built Distribution

Shapely-1.0.14.win32.exe (739.6 kB view details)

Uploaded Source

File details

Details for the file Shapely-1.0.14.tar.gz.

File metadata

  • Download URL: Shapely-1.0.14.tar.gz
  • Upload date:
  • Size: 36.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for Shapely-1.0.14.tar.gz
Algorithm Hash digest
SHA256 97abc20183385e4c444f605130f9e4d2a384a6626f3a7bcef9c7e3f6372bf46c
MD5 0e6576caffc0733c8c8e2bb19a09e7e4
BLAKE2b-256 3ccbb10d375504dade89ba74ab73aa036847a351fc357cfe01e3e1a88c6ecf7f

See more details on using hashes here.

File details

Details for the file Shapely-1.0.14.win32.exe.

File metadata

  • Download URL: Shapely-1.0.14.win32.exe
  • Upload date:
  • Size: 739.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for Shapely-1.0.14.win32.exe
Algorithm Hash digest
SHA256 285a3685cb355c98633b72a154010a238a5b8fde9ba168201dbf71dbc827499e
MD5 5ffec33f568982172ef9c8db901c606c
BLAKE2b-256 143f98d27ccf56994fc731973f23edc1f0524db2fa339619420369427f518905

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