diff options
Diffstat (limited to 'docs/plot')
| -rw-r--r-- | docs/plot/plot.py | 4 | ||||
| -rw-r--r-- | docs/plot/plotdefs.json | 10 |
2 files changed, 7 insertions, 7 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) diff --git a/docs/plot/plotdefs.json b/docs/plot/plotdefs.json index 53340a68..1e9c05ee 100644 --- a/docs/plot/plotdefs.json +++ b/docs/plot/plotdefs.json @@ -3,8 +3,8 @@ "filename": "adams_hemi.png", "latmax": 90, "latmin": -90, - "lonmax": 180, - "lonmin": -180, + "lonmax": 90, + "lonmin": -90, "name": "adams_hemi", "projstring": "+proj=adams_hemi", "res": "low", @@ -514,8 +514,8 @@ "filename": "guyou.png", "latmax": 90, "latmin": -90, - "lonmax": 180, - "lonmin": -180, + "lonmax": 90, + "lonmin": -90, "name": "guyou", "projstring": "+proj=guyou", "res": "low", @@ -1053,7 +1053,7 @@ { "filename": "peirce_q.png", "latmax": 90, - "latmin": -90, + "latmin": 0, "lonmax": 180, "lonmin": -180, "name": "peirce_q", |
