You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ifprojectionin ['lcc', 'eqdc', 'aea']:
ifprojection=='lcc'andk_0isnotNone:
projparams['k_0']=k_0# if lat_0 is given, but not lat_1,# set lat_1=lat_0iflat_1isNoneandlat_0isnotNone:
lat_1=lat_0projparams['lat_1'] =lat_1iflat_1isNoneorlon_0isNone:
raiseValueError('must specify lat_1 or lat_0 and lon_0 for %s basemap (lat_2 is optional)'%_projnames[projection])
iflat_2isNone:
projparams['lat_2'] =lat_1
Is this perhaps something we should be emulating?
The text was updated successfully, but these errors were encountered:
Currently, we have default values for standard parallels hard-coded in both
LambertConformal
andAlbersEqualArea
.With basemap though, it automatically picks standard parallels based on central latitude:
Is this perhaps something we should be emulating?
The text was updated successfully, but these errors were encountered: