Skip to content

Commit

Permalink
added in proj4 information for old basemap I used
Browse files Browse the repository at this point in the history
  • Loading branch information
kthyng committed Jul 25, 2019
1 parent 644d02e commit 6cc5300
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tracpy/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,12 @@ def make_proj(setup='nwgom', usebasemap=True, **kwargs):

elif setup == 'nwgom-pyproj':

# proj4 string
# '+proj=lcc +R=6370997.0 +units=m +lat_0=30.0 +lon_0=-94.0 +lat_1=30.0 +lat_2=30.0 +x_0=466061.13903578784 +y_0=827157.5974829497 '
# lcc = cartopy.crs.LambertConformal(central_longitude=-94.0, central_latitude=30,
# false_easting=466061.13903578784,
# false_northing=827157.5974829497)

inputs = {'proj': 'lcc', 'ellps': 'clrk66', 'datum': 'NAD27',
'lat_1': 22.5, 'lat_2': 31.0, 'lat_0': 30, 'lon_0': -94,
'x_0': 0, 'y_0': 0}
Expand Down

0 comments on commit 6cc5300

Please sign in to comment.