Skip to content

Commit

Permalink
For now, use PlateCarree() rather than Geodetic
Browse files Browse the repository at this point in the history
Use it without the globe; Geodetic doesn't work as a projection for
plotting.
  • Loading branch information
dopplershift committed Mar 28, 2018
1 parent d14fd6a commit 97ebf99
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion metpy/plots/mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ def make_lcc(attrs_dict, globe):
def make_latlon(attrs_dict, globe):
# TODO: 180 here needs to be determined by longitude?
# return ccrs.PlateCarree(globe=globe, central_longitude=180)
return ccrs.Geodetic(globe=globe)
# return ccrs.Geodetic(globe=globe)
return ccrs.PlateCarree()


@CFProjection.register('mercator')
Expand Down

0 comments on commit 97ebf99

Please sign in to comment.