cartopy.io.RasterSourceContainer#

class cartopy.io.RasterSourceContainer(contained_source)[source]#

A container which simply calls the appropriate methods on the contained RasterSource.

Parameters:

contained_source (RasterSource instance.) – The source of the raster that this container is wrapping.

fetch_raster(projection, extent, target_resolution)[source]#

Return a sequence of images with extents given some constraining information.

Parameters:
  • projection (cartopy.crs.Projection) – The desired projection of the image.

  • extent (iterable of length 4) – The extent of the requested image in projected coordinates. The resulting image may not be defined exactly by these extents, and so the extent of the resulting image is also returned. The extents must be defined in the form (min_x, max_x, min_y, max_y).

  • target_resolution (iterable of length 2) – The desired resolution of the image as (width, height) in pixels.

Returns:

images – A sequence of LocatedImage instances.

validate_projection(projection)[source]#

Raise an error if this raster source cannot provide images in the specified projection.

Parameters:

projection (cartopy.crs.Projection) – The desired projection of the image.