wradlib.georef.rect.get_radolan_coordinates#
- wradlib.georef.rect.get_radolan_coordinates(nrows=None, ncols=None, **kwargs)[source]#
Calculates x/y coordinates of radolan projection of the German Weather Service
Returns the 1D x,y coordinates of the radolan projection for the given grid layout.
- Parameters:
- Keyword Arguments:
wgs84 (
bool
) – if True, output coordinates are in wgs84 lonlat format (default: False)mode (
str
) – ‘radolan’ - lower left pixel coordinates ‘center’ - pixel center coordinates ‘edge’ - pixel edge coordinatescrs (
osgeo.osr.SpatialReference
| str) – projection of the DWD grid with spheroid model or string trig to use trigonometric formulas for calculation (only for earth model - sphere). Defaults to None (earth model - sphere).
- Returns:
radolan_ccords (
tuple
) – x and y 1D coordinatenumpy.ndarray
shape is (nrows, ) and (ncols, ) if mode=’radolan’ shape is (nrows, ) and (ncols, ) if mode=’center’ shape is (nrows+1, ) and (ncols+1, ) if mode=’edge’