Use geometric objects as matplotlib paths and patches
Project description
Use Shapely or GeoJSON-like geometric objects as matplotlib paths and patches
Requires: matplotlib, numpy, and optionally Shapely 1.2.
Example:
from matplotlib import pyplot from shapely.geometry import LineString from descartes.patch import PolygonPatch line = LineString([(0, 0), (1, 1), (0, 2), (2, 2), (3, 1), (1, 0)]) fig = pyplot.figure(1, figsize=(7.5, 3), dpi=180) # 1 ax = fig.add_subplot(121) dilated = line.buffer(0.5) patch1 = PolygonPatch(dilated, facecolor='#99ccff', edgecolor='#6699cc') ax.add_patch(patch1) x, y = line.xy ax.plot(x, y, color='#999999') ax.set_xlim(-1, 4) ax.set_ylim(-1, 3) #2 ax = fig.add_subplot(122) patch2a = PolygonPatch(dilated, facecolor='#cccccc', edgecolor='#999999') ax.add_patch(patch2a) eroded = dilated.buffer(-0.3) # GeoJSON-like data works as well polygon = eroded.__geo_interface__ # >>> geo['type'] # 'Polygon' # >>> geo['coordinates'][0][:2] # ((0.50502525316941682, 0.78786796564403572), (0.5247963548222736, 0.8096820147509064)) patch2b = PolygonPatch(polygon, facecolor='#99ccff', edgecolor='#6699cc') ax.add_patch(patch2b) ax.set_xlim(-1, 4) ax.set_ylim(-1, 3) fig.subplots_adjust(0.0, 0.0, 1.0, 1.0, 0.1) fig.savefig('buffering.png')
See also: examples/patches.py.
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
descartes-0.1.1.tar.gz
(3.0 kB
view details)
File details
Details for the file descartes-0.1.1.tar.gz
.
File metadata
- Download URL: descartes-0.1.1.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 472e59132d04d6e4bfc1d41fe07fca659ba63a1376c872ef78630a856abe7823 |
|
MD5 | bcc68e46e4d757568279745dadb68551 |
|
BLAKE2b-256 | 085c6f9267dc5b1211818a89274048c2e50868a8aade1aab959161b74cd41678 |