diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-05-24 20:03:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-24 20:03:48 +0200 |
| commit | 5d502d356e16ef81f481eb82dcdeba0ea3ab1f9e (patch) | |
| tree | c4afb8963bd003e13fd872f6f0f3d611faddeac8 /docs/plot/plot.py | |
| parent | 35dc7d00f92b4a575a2bbc1d90767a9c3e67557c (diff) | |
| parent | f7f3b98a5334bdb2dae186e8ce806eece8432a96 (diff) | |
| download | PROJ-5d502d356e16ef81f481eb82dcdeba0ea3ab1f9e.tar.gz PROJ-5d502d356e16ef81f481eb82dcdeba0ea3ab1f9e.zip | |
Merge pull request #2230 from rouault/limit_peirce_q_to_northern_hemisphere
Limit peirce_q to northern hemisphere, and fix images for adams_hemi, guyou and peirce_q
Diffstat (limited to 'docs/plot/plot.py')
| -rw-r--r-- | docs/plot/plot.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/plot/plot.py b/docs/plot/plot.py index ec263fe4..1822f347 100644 --- a/docs/plot/plot.py +++ b/docs/plot/plot.py @@ -61,7 +61,7 @@ from shapely.geometry import shape from shapely.ops import transform from descartes import PolygonPatch -PROJ = '../../src/proj' +PROJ = os.environ.get('PROJ_EXE', '../../src/proj') PROJ_LIB = '../../data' LINE_LOW = 'data/coastline.geojson' @@ -161,7 +161,7 @@ def project(coordinates, proj_string, in_radians=False): proc = subprocess.Popen(args, stdin=subprocess.PIPE, stdout=subprocess.PIPE, env={'PROJ_LIB': os.path.abspath(PROJ_LIB)}) except FileNotFoundError: - print("'proj' binary not found, please update PROJ constant in plot.py " + print("'proj' binary not found, set the PROJ_EXE environment variable " "to point to your local 'proj' binary") exit(1) |
