|
def __init__(self, projection='eqc', ctrLat=None, ctrLon=None, ellipse='WGS84', datum='WGS84', **kwargs): |
Currently to specify a lat/lon center for a map projection such as azimuthal equidistant, this must be called as:
coords.MapProjection(projection='aeqd', ctrLat=radar_lat, ctrLon=radar_lon, lat_0=radar_lat, lon_0=radar_lon)
This feels a little redundant, maybe the call could be simplified as:
coords.MapProjection(projection='aeqd', ctrLat=radar_lat, ctrLon=radar_lon)