Resampling

Resampling in Satpy.

Satpy provides multiple resampling algorithms for resampling geolocated data to uniform projected grids. The easiest way to perform resampling in Satpy is through the Scene object’s resample() method. Additional utility functions are also available to assist in resampling data. Below is more information on resampling with Satpy as well as links to the relevant API documentation for available keyword arguments.

Resampling algorithms

Available Resampling Algorithms

Resampler

Description

Related

nearest

Nearest Neighbor

KDTreeResampler

ewa

Elliptical Weighted Averaging

DaskEWAResampler

ewa_legacy

Elliptical Weighted Averaging (Legacy)

LegacyDaskEWAResampler

native

Native

NativeResampler

bilinear

Bilinear

BilinearResampler

bucket_avg

Average Bucket Resampling

BucketAvg

bucket_sum

Sum Bucket Resampling

BucketSum

bucket_count

Count Bucket Resampling

BucketCount

bucket_fraction

Fraction Bucket Resampling

BucketFraction

gradient_search

Gradient Search Resampling

create_gradient_search_resampler()

The resampling algorithm used can be specified with the resampler keyword argument and defaults to nearest:

>>> scn = Scene(...)
>>> euro_scn = scn.resample('euro4', resampler='nearest')

Warning

Some resampling algorithms expect certain forms of data. For example, the EWA resampling expects polar-orbiting swath data and prefers if the data can be broken in to “scan lines”. See the API documentation for a specific algorithm for more information.

Resampling for comparison and composites

While all the resamplers can be used to put datasets of different resolutions on to a common area, the ‘native’ resampler is designed to match datasets to one resolution in the dataset’s original projection. This is extremely useful when generating composites between bands of different resolutions.

>>> new_scn = scn.resample(resampler='native')

By default this resamples to the highest resolution area (smallest footprint per pixel) shared between the loaded datasets. You can easily specify the lowest resolution area:

>>> new_scn = scn.resample(scn.coarsest_area(), resampler='native')

Providing an area that is neither the minimum or maximum resolution area may work, but behavior is currently undefined.

Caching for geostationary data

Satpy will do its best to reuse calculations performed to resample datasets, but it can only do this for the current processing and will lose this information when the process/script ends. Some resampling algorithms, like nearest and bilinear, can benefit by caching intermediate data on disk in the directory specified by cache_dir and using it next time. This is most beneficial with geostationary satellite data where the locations of the source data and the target pixels don’t change over time.

>>> new_scn = scn.resample('euro4', cache_dir='/path/to/cache_dir')

See the documentation for specific algorithms to see availability and limitations of caching for that algorithm.

Create custom area definition

See pyresample.geometry.AreaDefinition for information on creating areas that can be passed to the resample method:

>>> from pyresample.geometry import AreaDefinition
>>> my_area = AreaDefinition(...)
>>> local_scene = scn.resample(my_area)

Resize area definition in pixels

Sometimes you may want to create a small image with fixed size in pixels. For example, to create an image of (y, x) pixels :

>>> small_scn = scn.resample(scn.finest_area().copy(height=y, width=x), resampler="nearest")

Warning

Be aware that resizing with native resampling (resampler="native") only works if the new size is an integer factor of the original input size. For example, multiplying the size by 2 or dividing the size by 2. Multiplying by 1.5 would not be allowed.

Create dynamic area definition

See pyresample.geometry.DynamicAreaDefinition for more information.

Examples coming soon…

Store area definitions

Area definitions can be saved to a custom YAML file (see pyresample’s writing to disk) and loaded using pyresample’s utility methods (pyresample’s loading from disk):

>>> from pyresample import load_area
>>> my_area = load_area('my_areas.yaml', 'my_area')

Or using satpy.area.get_area_def(), which will search through all areas.yaml files in your SATPY_CONFIG_PATH (see Component Configuration):

>>> from satpy.area import get_area_def
>>> area_eurol = get_area_def("eurol")

For examples of area definitions, see the file etc/areas.yaml that is included with Satpy and where all the area definitions shipped with Satpy are defined. The section below gives an overview of these area definitions.

Area definitions included in Satpy

Area Definitions

Name

Description

Projection

msg_seviri_fes_3km

MSG SEVIRI Full Earth Scanning service area definition with 3 km resolution

geos

msg_seviri_fes_1km

MSG SEVIRI Full Earth Scanning service area definition with 1 km resolution

geos

msg_seviri_rss_3km

MSG SEVIRI Rapid Scanning Service area definition with 3 km resolution

geos

msg_seviri_rss_1km

MSG SEVIRI Rapid Scanning Service area definition with 1 km resolution

geos

msg_seviri_iodc_3km

MSG SEVIRI Indian Ocean Data Coverage service area definition with 3 km resolution

geos

msg_seviri_iodc_1km

MSG SEVIRI Indian Ocean Data Coverage service area definition with 1 km resolution

geos

msg_seviri_fes_9km

MSG SEVIRI Full Earth Scanning service area definition with 9 km resolution

geos

msg_seviri_rss_9km

MSG SEVIRI Rapid Scanning Service area definition with 9 km resolution

geos

msg_seviri_iodc_9km

MSG SEVIRI Indian Ocean Data Coverage service area definition with 9 km resolution

geos

msg_seviri_fes_9km_ext

MSG SEVIRI Full Earth Scanning service area definition with 9 km resolution (extended outside original 3km grid)

geos

msg_seviri_rss_9km_ext

MSG SEVIRI Rapid Scanning Service area definition with 9 km resolution (extended outside original 3km grid)

geos

msg_seviri_iodc_9km_ext

MSG SEVIRI Indian Ocean Data Coverage service area definition with 9 km resolution (extended outside original 3km grid)

geos

msg_seviri_fes_48km

MSG SEVIRI Full Earth Scanning service area definition with 48 km resolution

geos

msg_seviri_rss_48km

MSG SEVIRI Rapid Scanning Service area definition with 48 km resolution

geos

msg_seviri_iodc_48km

MSG SEVIRI Indian Ocean Data Coverage service area definition with 48 km resolution

geos

himawari_ahi_fes_500m

Himawari-8/9 full disk area definition at 500m resolution

geos

himawari_ahi_fes_1km

Himawari-8/9 full disk area definition at 1km resolution

geos

himawari_ahi_fes_2km

Himawari-8/9 full disk area definition at 2km resolution

geos

EuropeCanary

Northern disk MSG image 0 degrees

geos

EastEurope

Eastern part of Northern disk MSG image 0 degrees

geos

AfHorn_geos

Eastern disk MSG image 0 degrees

geos

SouthAmerica_geos

Lower West part of Southern disk MSG image 0 degrees

geos

mtg_fci_fdss_500m

MTG FCI Full Disk Scanning Service area definition with 500 m SSP resolution

geos

mtg_fci_fdss_1km

MTG FCI Full Disk Scanning Service area definition with 1 km SSP resolution

geos

mtg_fci_fdss_2km

MTG FCI Full Disk Scanning Service area definition with 2 km SSP resolution

geos

mtg_fci_fdss_4km

MTG FCI Full Disk Scanning Service area definition with 4 km SSP resolution

geos

mtg_fci_fdss_6km

MTG FCI Full Disk Scanning Service area definition with 6 km SSP resolution

geos

mtg_fci_fdss_32km

MTG FCI Full Disk Scanning Service area definition with 32 km SSP resolution

geos

goes_east_abi_f_500m

GOES East ABI Full Disk at 500 m SSP resolution

geos

goes_east_abi_f_1km

GOES East ABI Full Disk at 1 km SSP resolution

geos

goes_east_abi_f_2km

GOES East ABI Full Disk at 2 km SSP resolution

geos

goes_west_abi_f_500m

GOES West ABI Full Disk at 500 m SSP resolution

geos

goes_west_abi_f_1km

GOES West ABI Full Disk at 1 km SSP resolution

geos

goes_west_abi_f_2km

GOES West ABI Full Disk at 2 km SSP resolution

geos

goes_east_abi_c_500m

GOES East ABI CONUS at 500 m SSP resolution

geos

goes_east_abi_c_1km

GOES East ABI CONUS at 1 km SSP resolution

geos

goes_east_abi_c_2km

GOES East ABI CONUS at 2 km SSP resolution

geos

goes_west_abi_p_500m

GOES West ABI PACUS at 500 m resolution

geos

goes_west_abi_p_1km

GOES West ABI PACUS at 1 km SSP resolution

geos

goes_west_abi_p_2km

GOES West ABI PACUS at 2 km resolution

geos

australia

australia

merc

mali

mali

merc

mali_eqc

mali

eqc

sve

Sweden and baltic sea

utm

brazil2

brazil, platecarree

eqc

sudeste

sudeste, platecarree

eqc

SouthAmerica_flat

South America flat

eqc

south_america

south_america, platecarree

eqc

brazil

brazil, platecarree

eqc

worldeqc3km70

World in 3km, platecarree

eqc

worldeqc30km70

World in 3km, platecarree

eqc

worldeqc3km73

World in 3km, platecarree

eqc

worldeqc3km

World in 3km, platecarree

eqc

worldeqc30km

World in 3km, platecarree

eqc

libya

libya area

merc

phil

kuwait area

merc

phil_small

kuwait area

merc

kuwait

kuwait area

merc

afghanistan

Afghanistan

merc

maspalomas

Western Africa and Canary Islands

merc

afhorn_merc

Africa horn 3km resolution

merc

spain

Spain

stere

germ

Germany

stere

germ2

Germany

stere

euro4

Euro 4km area - Europe

stere

euro1

Euro 4km area - Europe

stere

scan

Scandinavia

stere

scan2

Scandinavia - 2km area

stere

scan1

Scandinavia - 1km area

stere

scan500m

Scandinavia - 500m area

stere

mesanX

Mesan-X rotated lon/lat 1.8km

ob_tran

mesanE

Europe Mesan rotated lon/lat 1.8km

ob_tran

baws

BAWS

aea

eurotv

Europe TV - 6.2x5.0km

stere

eurotv4n

Europe TV4 - 4.1x4.1km

stere

eurol

Euro 3.0km area - Europe

stere

eurol1

Euro 3.0km area - Europe

stere

scanl

Scandinavia - Large

stere

euron1

Northern Europe - 1km

stere

euron0250

Northern Europe - 1km

stere

nsea

North Baltic Sea

merc

ssea

South Baltic Sea

merc

nsea250

North Baltic Sea

merc

ssea250

South Baltic Sea

merc

bsea250

South Baltic Sea

merc

test250

South Baltic Sea

merc

bsea1000

South Baltic Sea

merc

euro

Euro area - Europe

stere

baltrad_lambert

Baltrad Lambert

laea

eport

eport

stere

eport1

eport

stere

eport10

eport reduced resolution

stere

eport4

eport reduced resolution

stere

eport2

eport reduced resolution

stere

npp_sample_m

North America - NPP sample data - M-bands

laea

arctic_europe_1km

Arctic and Europe

laea

arctic_europe_9km

Arctic and Europe

laea

sswe

Southern Sweden

stere

nswe

Northern Sweden

stere

sval

Svalbard

stere

ease_sh

Antarctic EASE grid

laea

ease_nh

Arctic EASE grid

laea

barents_sea

Barents and Greenland seas

stere

antarctica

Antarctica - 1km

laea

arctica

arctica - 1km

laea

euroasia

Euroasia - Global 1km USGS Landuse database

laea

euroasia_10km

Euroasia - Global 1km USGS Landuse database

laea

euroasia_asia

Euroasia - optimised for Asia - Global 1km USGS Landuse database

laea

euroasia_asia_10km

Euroasia - optimised for Asia - Global 1km USGS Landuse database

laea

australia_pacific

Austalia/Pacific - Global 1km USGS Landuse database

laea

australia_pacific_10km

Austalia/Pacific - Global 1km USGS Landuse database

laea

africa

Africa - Global 1km USGS Landuse database

laea

africa_10km

Africa - Global 1km USGS Landuse database

laea

southamerica_laea

South America - Global 1km USGS Landuse database

laea

southamerica_10km

South America - Global 1km USGS Landuse database

laea

northamerica

North America - Global 1km USGS Landuse database

laea

northamerica_10km

North America - Global 1km USGS Landuse database

laea

romania

Romania - 3km

stere

stere_asia_test

stere

stere

bocheng_test

stere

stere

nsper_swe

nsper_swe

nsper

new_bsea250

new_bsea250

stere

scanice

Scandinavia and Iceland

laea

baws250

BAWS, 250m resolution

aea

moll

moll

moll

robinson

robinson

robin

met07globe

Full disk IODC image 57 degrees

geos

met09globe

Cropped disk MSG image 0 degrees

geos

met09globeFull

Full disk MSG image 0 degrees

geos

seviri_0deg

Full disk MSG image 0 degrees

geos

seviri_iodc

Full disk MSG image 41.5 degrees

geos

msg_resample_area

Full disk MSG image 20.75 degrees

geos

EPSG_4326_36000x18000

Global equal latitude/longitude grid at 0.01 degree resolution

longlat

EPSG_4326_7200x3600

Global equal latitude/longitude grid at 0.05 degree resolution

longlat

EPSG_4326_3600x1800

Global equal latitude/longitude grid at 0.1 degree resolution

longlat

EPSG_4326_1440x720

Global equal latitude/longitude grid at 0.25 degree resolution

longlat

EPSG_4326_720x360

Global equal latitude/longitude grid at 0.5 degree resolution

longlat

EPSG_4326_360x180

Global equal latitude/longitude grid at 1 degree resolution

longlat

msg_seviri_fes_3km

Area ID: msg_seviri_fes_3km
 Description: MSG SEVIRI Full Earth Scanning service area definition with 3 km resolution
 Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '0', 'no_defs': 'None', 'proj': 'geos', 'rf': '295.488065897001', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 3712
 Number of rows: 3712
 Area extent: (-5570248.6867, -5567248.2834, 5567248.2834, 5570248.6867)

msg_seviri_fes_1km

Area ID: msg_seviri_fes_1km
 Description: MSG SEVIRI Full Earth Scanning service area definition with 1 km resolution
 Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '0', 'no_defs': 'None', 'proj': 'geos', 'rf': '295.488065897001', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 11136
 Number of rows: 11136
 Area extent: (-5571248.4127, -5566247.741, 5566247.741, 5571248.4127)

msg_seviri_rss_3km

Area ID: msg_seviri_rss_3km
 Description: MSG SEVIRI Rapid Scanning Service area definition with 3 km resolution
 Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '9.5', 'no_defs': 'None', 'proj': 'geos', 'rf': '295.488065897001', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 3712
 Number of rows: 3712
 Area extent: (-5570248.6867, -5567248.2834, 5567248.2834, 5570248.6867)

msg_seviri_rss_1km

Area ID: msg_seviri_rss_1km
 Description: MSG SEVIRI Rapid Scanning Service area definition with 1 km resolution
 Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '9.5', 'no_defs': 'None', 'proj': 'geos', 'rf': '295.488065897001', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 11136
 Number of rows: 11136
 Area extent: (-5571248.4127, -5566247.741, 5566247.741, 5571248.4127)

msg_seviri_iodc_3km

Area ID: msg_seviri_iodc_3km
 Description: MSG SEVIRI Indian Ocean Data Coverage service area definition with 3 km resolution
 Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '45.5', 'no_defs': 'None', 'proj': 'geos', 'rf': '295.488065897001', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 3712
 Number of rows: 3712
 Area extent: (-5570248.6867, -5567248.2834, 5567248.2834, 5570248.6867)

msg_seviri_iodc_1km

Area ID: msg_seviri_iodc_1km
 Description: MSG SEVIRI Indian Ocean Data Coverage service area definition with 1 km resolution
 Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '45.5', 'no_defs': 'None', 'proj': 'geos', 'rf': '295.488065897001', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 11136
 Number of rows: 11136
 Area extent: (-5571248.4127, -5566247.741, 5566247.741, 5571248.4127)

msg_seviri_fes_9km

Area ID: msg_seviri_fes_9km
 Description: MSG SEVIRI Full Earth Scanning service area definition with 9 km resolution
 Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '0', 'no_defs': 'None', 'proj': 'geos', 'rf': '295.488065897001', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1237
 Number of rows: 1237
 Area extent: (-5567248.2835, -5567248.2834, 5567248.2834, 5567248.2835)

msg_seviri_rss_9km

Area ID: msg_seviri_rss_9km
 Description: MSG SEVIRI Rapid Scanning Service area definition with 9 km resolution
 Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '9.5', 'no_defs': 'None', 'proj': 'geos', 'rf': '295.488065897001', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1237
 Number of rows: 1237
 Area extent: (-5567248.2835, -5567248.2834, 5567248.2834, 5567248.2835)

msg_seviri_iodc_9km

Area ID: msg_seviri_iodc_9km
 Description: MSG SEVIRI Indian Ocean Data Coverage service area definition with 9 km resolution
 Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '45.5', 'no_defs': 'None', 'proj': 'geos', 'rf': '295.488065897001', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1237
 Number of rows: 1237
 Area extent: (-5567248.2835, -5567248.2834, 5567248.2834, 5567248.2835)

msg_seviri_fes_9km_ext

Area ID: msg_seviri_fes_9km_ext
 Description: MSG SEVIRI Full Earth Scanning service area definition with 9 km resolution (extended outside original 3km grid)
 Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '0', 'no_defs': 'None', 'proj': 'geos', 'rf': '295.488065897001', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1238
 Number of rows: 1238
 Area extent: (-5571748.8883, -5571748.8882, 5571748.8882, 5571748.8883)

msg_seviri_rss_9km_ext

Area ID: msg_seviri_rss_9km_ext
 Description: MSG SEVIRI Rapid Scanning Service area definition with 9 km resolution (extended outside original 3km grid)
 Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '9.5', 'no_defs': 'None', 'proj': 'geos', 'rf': '295.488065897001', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1238
 Number of rows: 1238
 Area extent: (-5571748.8883, -5571748.8882, 5571748.8882, 5571748.8883)

msg_seviri_iodc_9km_ext

Area ID: msg_seviri_iodc_9km_ext
 Description: MSG SEVIRI Indian Ocean Data Coverage service area definition with 9 km resolution (extended outside original 3km grid)
 Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '45.5', 'no_defs': 'None', 'proj': 'geos', 'rf': '295.488065897001', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1238
 Number of rows: 1238
 Area extent: (-5571748.8883, -5571748.8882, 5571748.8882, 5571748.8883)

msg_seviri_fes_48km

Area ID: msg_seviri_fes_48km
 Description: MSG SEVIRI Full Earth Scanning service area definition with 48 km resolution
 Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '0', 'no_defs': 'None', 'proj': 'geos', 'rf': '295.488065897001', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 232
 Number of rows: 232
 Area extent: (-5570248.6867, -5567248.2834, 5567248.2834, 5570248.6867)

msg_seviri_rss_48km

Area ID: msg_seviri_rss_48km
 Description: MSG SEVIRI Rapid Scanning Service area definition with 48 km resolution
 Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '9.5', 'no_defs': 'None', 'proj': 'geos', 'rf': '295.488065897001', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 232
 Number of rows: 232
 Area extent: (-5570248.6867, -5567248.2834, 5567248.2834, 5570248.6867)

msg_seviri_iodc_48km

Area ID: msg_seviri_iodc_48km
 Description: MSG SEVIRI Indian Ocean Data Coverage service area definition with 48 km resolution
 Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '45.5', 'no_defs': 'None', 'proj': 'geos', 'rf': '295.488065897001', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 232
 Number of rows: 232
 Area extent: (-5570248.6867, -5567248.2834, 5567248.2834, 5570248.6867)

himawari_ahi_fes_500m

Area ID: himawari_ahi_fes_500m
 Description: Himawari-8/9 full disk area definition at 500m resolution
 Projection: {'a': '6378137', 'h': '35785863', 'lon_0': '140.7', 'no_defs': 'None', 'proj': 'geos', 'rf': '298.257024882273', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 22000
 Number of rows: 22000
 Area extent: (-5499999.9684, -5499999.9684, 5499999.9684, 5499999.9684)

himawari_ahi_fes_1km

Area ID: himawari_ahi_fes_1km
 Description: Himawari-8/9 full disk area definition at 1km resolution
 Projection: {'a': '6378137', 'h': '35785863', 'lon_0': '140.7', 'no_defs': 'None', 'proj': 'geos', 'rf': '298.257024882273', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 11000
 Number of rows: 11000
 Area extent: (-5500000.0355, -5500000.0355, 5500000.0355, 5500000.0355)

himawari_ahi_fes_2km

Area ID: himawari_ahi_fes_2km
 Description: Himawari-8/9 full disk area definition at 2km resolution
 Projection: {'a': '6378137', 'h': '35785863', 'lon_0': '140.7', 'no_defs': 'None', 'proj': 'geos', 'rf': '298.257024882273', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 5500
 Number of rows: 5500
 Area extent: (-5499999.9012, -5499999.9012, 5499999.9012, 5499999.9012)

EuropeCanary

Area ID: EuropeCanary
 Description: Northern disk MSG image 0 degrees
 Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '0', 'no_defs': 'None', 'proj': 'geos', 'rf': '295.488065897001', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 3000
 Number of rows: 1200
 Area extent: (-4823148.0891, 1969764.6784, 4178061.4084, 5570248.4773)

EastEurope

Area ID: EastEurope
 Description: Eastern part of Northern disk MSG image 0 degrees
 Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '0', 'no_defs': 'None', 'proj': 'geos', 'rf': '295.488065897001', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1300
 Number of rows: 800
 Area extent: (654112.8864, 2989901.7547, 4553111.8041, 5390224.2874)

AfHorn_geos

Area ID: AfHorn_geos
 Description: Eastern disk MSG image 0 degrees
 Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '0', 'no_defs': 'None', 'proj': 'geos', 'rf': '295.488065897001', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1100
 Number of rows: 1600
 Area extent: (2263804.1886, -1327678.4009, 5564247.671, 3472966.6644)

SouthAmerica_geos

Area ID: SouthAmerica_geos
 Description: Lower West part of Southern disk MSG image 0 degrees
 Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '0', 'no_defs': 'None', 'proj': 'geos', 'rf': '295.488065897001', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 3000
 Number of rows: 1200
 Area extent: (-5570248.4773, -4263473.561, -384719.9082, 1339786.2707)

mtg_fci_fdss_500m

Area ID: mtg_fci_fdss_500m
 Description: MTG FCI Full Disk Scanning Service area definition with 500 m SSP resolution
 Projection: {'ellps': 'WGS84', 'h': '35786400', 'lon_0': '0', 'no_defs': 'None', 'proj': 'geos', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 22272
 Number of rows: 22272
 Area extent: (-5567999.9996, -5567999.9996, 5567999.9996, 5567999.9996)

mtg_fci_fdss_1km

Area ID: mtg_fci_fdss_1km
 Description: MTG FCI Full Disk Scanning Service area definition with 1 km SSP resolution
 Projection: {'ellps': 'WGS84', 'h': '35786400', 'lon_0': '0', 'no_defs': 'None', 'proj': 'geos', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 11136
 Number of rows: 11136
 Area extent: (-5567999.9986, -5567999.9986, 5567999.9986, 5567999.9986)

mtg_fci_fdss_2km

Area ID: mtg_fci_fdss_2km
 Description: MTG FCI Full Disk Scanning Service area definition with 2 km SSP resolution
 Projection: {'ellps': 'WGS84', 'h': '35786400', 'lon_0': '0', 'no_defs': 'None', 'proj': 'geos', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 5568
 Number of rows: 5568
 Area extent: (-5567999.9942, -5567999.9942, 5567999.9942, 5567999.9942)

mtg_fci_fdss_4km

Area ID: mtg_fci_fdss_4km
 Description: MTG FCI Full Disk Scanning Service area definition with 4 km SSP resolution
 Projection: {'ellps': 'WGS84', 'h': '35786400', 'lon_0': '0', 'no_defs': 'None', 'proj': 'geos', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 2784
 Number of rows: 2784
 Area extent: (-5567999.9942, -5567999.9942, 5567999.9942, 5567999.9942)

mtg_fci_fdss_6km

Area ID: mtg_fci_fdss_6km
 Description: MTG FCI Full Disk Scanning Service area definition with 6 km SSP resolution
 Projection: {'ellps': 'WGS84', 'h': '35786400', 'lon_0': '0', 'no_defs': 'None', 'proj': 'geos', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1856
 Number of rows: 1856
 Area extent: (-5567999.9942, -5567999.9942, 5567999.9942, 5567999.9942)

mtg_fci_fdss_32km

Area ID: mtg_fci_fdss_32km
 Description: MTG FCI Full Disk Scanning Service area definition with 32 km SSP resolution
 Projection: {'ellps': 'WGS84', 'h': '35786400', 'lon_0': '0', 'no_defs': 'None', 'proj': 'geos', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 348
 Number of rows: 348
 Area extent: (-5567999.9942, -5567999.9942, 5567999.9942, 5567999.9942)

goes_east_abi_f_500m

Area ID: goes_east_abi_f_500m
 Description: GOES East ABI Full Disk at 500 m SSP resolution
 Projection: {'ellps': 'GRS80', 'h': '35786023', 'lon_0': '-75', 'no_defs': 'None', 'proj': 'geos', 'sweep': 'x', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 21696
 Number of rows: 21696
 Area extent: (-5434894.8851, -5434894.8851, 5434894.8851, 5434894.8851)

goes_east_abi_f_1km

Area ID: goes_east_abi_f_1km
 Description: GOES East ABI Full Disk at 1 km SSP resolution
 Projection: {'ellps': 'GRS80', 'h': '35786023', 'lon_0': '-75', 'no_defs': 'None', 'proj': 'geos', 'sweep': 'x', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 10848
 Number of rows: 10848
 Area extent: (-5434894.8851, -5434894.8851, 5434894.8851, 5434894.8851)

goes_east_abi_f_2km

Area ID: goes_east_abi_f_2km
 Description: GOES East ABI Full Disk at 2 km SSP resolution
 Projection: {'ellps': 'GRS80', 'h': '35786023', 'lon_0': '-75', 'no_defs': 'None', 'proj': 'geos', 'sweep': 'x', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 5424
 Number of rows: 5424
 Area extent: (-5434894.8851, -5434894.8851, 5434894.8851, 5434894.8851)

goes_west_abi_f_500m

Area ID: goes_west_abi_f_500m
 Description: GOES West ABI Full Disk at 500 m SSP resolution
 Projection: {'ellps': 'GRS80', 'h': '35786023', 'lon_0': '-137', 'no_defs': 'None', 'proj': 'geos', 'sweep': 'x', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 21696
 Number of rows: 21696
 Area extent: (-5434894.8851, -5434894.8851, 5434894.8851, 5434894.8851)

goes_west_abi_f_1km

Area ID: goes_west_abi_f_1km
 Description: GOES West ABI Full Disk at 1 km SSP resolution
 Projection: {'ellps': 'GRS80', 'h': '35786023', 'lon_0': '-137', 'no_defs': 'None', 'proj': 'geos', 'sweep': 'x', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 10848
 Number of rows: 10848
 Area extent: (-5434894.8851, -5434894.8851, 5434894.8851, 5434894.8851)

goes_west_abi_f_2km

Area ID: goes_west_abi_f_2km
 Description: GOES West ABI Full Disk at 2 km SSP resolution
 Projection: {'ellps': 'GRS80', 'h': '35786023', 'lon_0': '-137', 'no_defs': 'None', 'proj': 'geos', 'sweep': 'x', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 5424
 Number of rows: 5424
 Area extent: (-5434894.8851, -5434894.8851, 5434894.8851, 5434894.8851)

goes_east_abi_c_500m

Area ID: goes_east_abi_c_500m
 Description: GOES East ABI CONUS at 500 m SSP resolution
 Projection: {'ellps': 'GRS80', 'h': '35786023', 'lon_0': '-75', 'no_defs': 'None', 'proj': 'geos', 'sweep': 'x', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 10000
 Number of rows: 6000
 Area extent: (-3627271.2913, 1583173.6575, 1382771.9287, 4589199.5895)

goes_east_abi_c_1km

Area ID: goes_east_abi_c_1km
 Description: GOES East ABI CONUS at 1 km SSP resolution
 Projection: {'ellps': 'GRS80', 'h': '35786023', 'lon_0': '-75', 'no_defs': 'None', 'proj': 'geos', 'sweep': 'x', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 5000
 Number of rows: 3000
 Area extent: (-3627271.2913, 1583173.6575, 1382771.9287, 4589199.5895)

goes_east_abi_c_2km

Area ID: goes_east_abi_c_2km
 Description: GOES East ABI CONUS at 2 km SSP resolution
 Projection: {'ellps': 'GRS80', 'h': '35786023', 'lon_0': '-75', 'no_defs': 'None', 'proj': 'geos', 'sweep': 'x', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 2500
 Number of rows: 1500
 Area extent: (-3627271.2913, 1583173.6575, 1382771.9287, 4589199.5895)

goes_west_abi_p_500m

Area ID: goes_west_abi_p_500m
 Description: GOES West ABI PACUS at 500 m resolution
 Projection: {'ellps': 'GRS80', 'h': '35786023', 'lon_0': '-137', 'no_defs': 'None', 'proj': 'geos', 'sweep': 'x', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 10000
 Number of rows: 6000
 Area extent: (-2505021.61, 1583173.6575, 2505021.61, 4589199.5895)

goes_west_abi_p_1km

Area ID: goes_west_abi_p_1km
 Description: GOES West ABI PACUS at 1 km SSP resolution
 Projection: {'ellps': 'GRS80', 'h': '35786023', 'lon_0': '-137', 'no_defs': 'None', 'proj': 'geos', 'sweep': 'x', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 5000
 Number of rows: 3000
 Area extent: (-2505021.61, 1583173.6575, 2505021.61, 4589199.5895)

goes_west_abi_p_2km

Area ID: goes_west_abi_p_2km
 Description: GOES West ABI PACUS at 2 km resolution
 Projection: {'ellps': 'GRS80', 'h': '35786023', 'lon_0': '-137', 'no_defs': 'None', 'proj': 'geos', 'sweep': 'x', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 2500
 Number of rows: 1500
 Area extent: (-2505021.61, 1583173.6575, 2505021.61, 4589199.5895)

australia

Area ID: australia
 Description: australia
 Projection: {'ellps': 'WGS84', 'lat_0': '-27.5', 'lon_0': '132.5', 'proj': 'merc', 'type': 'crs'}
 Number of columns: 1001
 Number of rows: 895
 Area extent: (-2504688.5428, -5591295.9186, 2504688.5428, -1111475.1029)

mali

Area ID: mali
 Description: mali
 Projection: {'ellps': 'WGS84', 'lat_0': '19.0', 'lon_0': '-1.0', 'proj': 'merc', 'type': 'crs'}
 Number of columns: 816
 Number of rows: 705
 Area extent: (-1224514.3987, 1111475.1029, 1224514.3987, 3228918.579)

mali_eqc

Area ID: mali_eqc
 Description: mali
 Projection: {'ellps': 'WGS84', 'lat_0': '19', 'lat_ts': '0', 'lon_0': '-1', 'no_defs': 'None', 'proj': 'eqc', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 816
 Number of rows: 667
 Area extent: (-1224514.3987, -1001875.4171, 1224514.3987, 1001875.4171)

sve

Area ID: sve
 Description: Sweden and baltic sea
 Projection: {'ellps': 'GRS80', 'no_defs': 'None', 'proj': 'utm', 'type': 'crs', 'units': 'm', 'zone': '33'}
 Number of columns: 2000
 Number of rows: 2000
 Area extent: (-342379.698, 6032580.06, 1423701.52, 8029648.75)

brazil2

Area ID: brazil2
 Description: brazil, platecarree
 Projection: {'ellps': 'WGS84', 'lat_0': '0', 'lat_ts': '0', 'lon_0': '0', 'no_defs': 'None', 'proj': 'eqc', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 768
 Number of rows: 768
 Area extent: (-7792364.3555, -4452779.6317, -2226389.8159, 1669792.3619)

sudeste

Area ID: sudeste
 Description: sudeste, platecarree
 Projection: {'ellps': 'WGS84', 'lat_0': '0', 'lat_ts': '0', 'lon_0': '0', 'no_defs': 'None', 'proj': 'eqc', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 959
 Number of rows: 959
 Area extent: (-6122571.9936, -3005626.2514, -4230140.6501, -1447153.3803)

SouthAmerica_flat

Area ID: SouthAmerica_flat
 Description: South America flat
 Projection: {'R': '6378137', 'lat_0': '0', 'lat_ts': '0', 'lon_0': '0', 'no_defs': 'None', 'proj': 'eqc', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1442
 Number of rows: 1213
 Area extent: (-8326322.8279, -4609377.0857, -556597.454, 1535833.8895)

south_america

Area ID: south_america
 Description: south_america, platecarree
 Projection: {'ellps': 'WGS84', 'lat_0': '0', 'lat_ts': '0', 'lon_0': '0', 'no_defs': 'None', 'proj': 'eqc', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1024
 Number of rows: 1024
 Area extent: (-8126322.8279, -5009377.0857, -556597.454, 1335833.8895)

brazil

Area ID: brazil
 Description: brazil, platecarree
 Projection: {'ellps': 'WGS84', 'lat_0': '0', 'lat_ts': '0', 'lon_0': '0', 'no_defs': 'None', 'proj': 'eqc', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 768
 Number of rows: 768
 Area extent: (-8348961.8095, -3896182.1778, -3784862.687, 1001875.4171)

worldeqc3km70

Area ID: worldeqc3km70
 Description: World in 3km, platecarree
 Projection: {'ellps': 'WGS84', 'lat_0': '0', 'lat_ts': '0', 'lon_0': '0', 'no_defs': 'None', 'proj': 'eqc', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 8192
 Number of rows: 4096
 Area extent: (-20037508.3428, -7792364.3555, 20037508.3428, 7792364.3555)

worldeqc30km70

Area ID: worldeqc30km70
 Description: World in 3km, platecarree
 Projection: {'ellps': 'WGS84', 'lat_0': '0', 'lat_ts': '0', 'lon_0': '0', 'no_defs': 'None', 'proj': 'eqc', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 819
 Number of rows: 410
 Area extent: (-20037508.3428, -7792364.3555, 20037508.3428, 7792364.3555)

worldeqc3km73

Area ID: worldeqc3km73
 Description: World in 3km, platecarree
 Projection: {'ellps': 'WGS84', 'lat_0': '0', 'lat_ts': '0', 'lon_0': '0', 'no_defs': 'None', 'proj': 'eqc', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 4096
 Number of rows: 2048
 Area extent: (-20037508.3428, -8181982.5733, 20037508.3428, 8181982.5733)

worldeqc3km

Area ID: worldeqc3km
 Description: World in 3km, platecarree
 Projection: {'ellps': 'WGS84', 'lat_0': '0', 'lat_ts': '0', 'lon_0': '0', 'no_defs': 'None', 'proj': 'eqc', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 4096
 Number of rows: 2048
 Area extent: (-20037508.3428, -10018754.1714, 20037508.3428, 10018754.1714)

worldeqc30km

Area ID: worldeqc30km
 Description: World in 3km, platecarree
 Projection: {'ellps': 'WGS84', 'lat_0': '0', 'lat_ts': '0', 'lon_0': '0', 'no_defs': 'None', 'proj': 'eqc', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 820
 Number of rows: 410
 Area extent: (-20037508.3428, -10018754.1714, 20037508.3428, 10018754.1714)

libya

Area ID: libya
 Description: libya area
 Projection: {'ellps': 'WGS84', 'lat_ts': '31.625', 'lon_0': '17.875', 'no_defs': 'None', 'proj': 'merc', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1280
 Number of rows: 1024
 Area extent: (-1921632.0903, 1725320.2029, 1918367.9097, 4797320.2029)

phil

Area ID: phil
 Description: kuwait area
 Projection: {'ellps': 'WGS84', 'lat_0': '10.0', 'lat_ts': '10.0', 'lon_0': '125.0', 'proj': 'merc', 'type': 'crs'}
 Number of columns: 4096
 Number of rows: 2048
 Area extent: (-2200000.0, 0.0, 2200000.0, 2200000.0)

phil_small

Area ID: phil_small
 Description: kuwait area
 Projection: {'ellps': 'WGS84', 'lat_0': '10.0', 'lat_ts': '10.0', 'lon_0': '125.0', 'proj': 'merc', 'type': 'crs'}
 Number of columns: 512
 Number of rows: 512
 Area extent: (-600000.0, 0.0, 1600000.0, 2200000.0)

kuwait

Area ID: kuwait
 Description: kuwait area
 Projection: {'ellps': 'WGS84', 'lat_ts': '30', 'lon_0': '44.75', 'no_defs': 'None', 'proj': 'merc', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 512
 Number of rows: 512
 Area extent: (-1280000.0, 1820000.0, 1280000.0, 4380000.0)

afghanistan

Area ID: afghanistan
 Description: Afghanistan
 Projection: {'a': '6370997.0', 'b': '6370997.0', 'lat_0': '35.0', 'lat_ts': '35.0', 'lon_0': '67.5', 'proj': 'merc', 'type': 'crs'}
 Number of columns: 1600
 Number of rows: 1600
 Area extent: (-1600000.0, 1600000.0, 1600000.0, 4800000.0)

maspalomas

Area ID: maspalomas
 Description: Western Africa and Canary Islands
 Projection: {'ellps': 'bessel', 'k': '1', 'lon_0': '-10', 'no_defs': 'None', 'proj': 'merc', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 2100
 Number of rows: 1100
 Area extent: (-1200000.0, 2900000.0, 900000.0, 4000000.0)

afhorn_merc

Area ID: afhorn_merc
 Description: Africa horn 3km resolution
 Projection: {'ellps': 'bessel', 'k': '1', 'lon_0': '50', 'no_defs': 'None', 'proj': 'merc', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1622
 Number of rows: 1622
 Area extent: (-2432000.0, -1130348.1395, 2432000.0, 3733651.8605)

spain

Area ID: spain
 Description: Spain
 Projection: {'a': '6378144.0', 'b': '6356759.0', 'ellps': 'bessel', 'lat_0': '40.0', 'lat_ts': '40.0', 'lon_0': '-3.0', 'proj': 'stere', 'type': 'crs'}
 Number of columns: 2048
 Number of rows: 2048
 Area extent: (-500000.0, -500000.0, 500000.0, 500000.0)

germ

Area ID: germ
 Description: Germany
 Projection: {'a': '6378144', 'lat_0': '90', 'lat_ts': '50', 'lon_0': '5', 'no_defs': 'None', 'proj': 'stere', 'rf': '298.253168108487', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1024
 Number of rows: 1024
 Area extent: (-155100.4363, -4441495.3795, 868899.5637, -3417495.3795)

germ2

Area ID: germ2
 Description: Germany
 Projection: {'a': '6378144', 'lat_0': '90', 'lat_ts': '50', 'lon_0': '5', 'no_defs': 'None', 'proj': 'stere', 'rf': '298.253168108487', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1280
 Number of rows: 1024
 Area extent: (-165100.4363, -4441495.3795, 878899.5637, -3417495.3795)

euro4

Area ID: euro4
 Description: Euro 4km area - Europe
 Projection: {'ellps': 'bessel', 'lat_0': '90', 'lat_ts': '60', 'lon_0': '14', 'no_defs': 'None', 'proj': 'stere', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1024
 Number of rows: 1024
 Area extent: (-2717181.7305, -5571048.1403, 1378818.2695, -1475048.1403)

euro1

Area ID: euro1
 Description: Euro 4km area - Europe
 Projection: {'ellps': 'bessel', 'lat_0': '90', 'lat_ts': '60', 'lon_0': '14', 'no_defs': 'None', 'proj': 'stere', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 4096
 Number of rows: 4096
 Area extent: (-2717181.7305, -5571048.1403, 1378818.2695, -1475048.1403)

scan

Area ID: scan
 Description: Scandinavia
 Projection: {'ellps': 'bessel', 'lat_0': '90', 'lat_ts': '60', 'lon_0': '14', 'no_defs': 'None', 'proj': 'stere', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 512
 Number of rows: 512
 Area extent: (-1268854.1266, -4150234.8426, 779145.8734, -2102234.8426)

scan2

Area ID: scan2
 Description: Scandinavia - 2km area
 Projection: {'ellps': 'bessel', 'lat_0': '90', 'lat_ts': '60', 'lon_0': '14', 'no_defs': 'None', 'proj': 'stere', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1024
 Number of rows: 1024
 Area extent: (-1268854.1266, -4150234.8426, 779145.8734, -2102234.8426)

scan1

Area ID: scan1
 Description: Scandinavia - 1km area
 Projection: {'ellps': 'bessel', 'lat_0': '90', 'lat_ts': '60', 'lon_0': '14', 'no_defs': 'None', 'proj': 'stere', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 2048
 Number of rows: 2088
 Area extent: (-1268854.1266, -4150234.8426, 779145.8734, -2062234.8426)

scan500m

Area ID: scan500m
 Description: Scandinavia - 500m area
 Projection: {'ellps': 'bessel', 'lat_0': '90', 'lat_ts': '60', 'lon_0': '14', 'no_defs': 'None', 'proj': 'stere', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 4096
 Number of rows: 4176
 Area extent: (-1268854.1266, -4150234.8426, 779145.8734, -2062234.8426)

mesanX

Area ID: mesanX
 Description: Mesan-X rotated lon/lat 1.8km
 Projection: {'a': '6371000.0', 'b': '6371000.0', 'lon_0': '-10.0', 'o_lat_p': '30.0', 'o_lon_p': '10.0', 'o_proj': 'eqc', 'proj': 'ob_tran', 'type': 'crs'}
 Number of columns: 1476
 Number of rows: 1608
 Area extent: (1067435.7599, -1278764.8903, 3791765.9966, 1690140.668)

mesanE

Area ID: mesanE
 Description: Europe Mesan rotated lon/lat 1.8km
 Projection: {'a': '6371000.0', 'b': '6371000.0', 'lon_0': '-10.0', 'o_lat_p': '30.0', 'o_lon_p': '10.0', 'o_proj': 'eqc', 'proj': 'ob_tran', 'type': 'crs'}
 Number of columns: 5093
 Number of rows: 6294
 Area extent: (289083.0006, -2957836.6468, 5381881.1214, 3335826.685)

baws

Area ID: baws
 Description: BAWS
 Projection: {'ellps': 'bessel', 'lat_0': '0', 'lat_1': '60', 'lat_2': '60', 'lon_0': '14', 'no_defs': 'None', 'proj': 'aea', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1400
 Number of rows: 1400
 Area extent: (-475617.0, 5324430.0, 924383.0, 6724430.0)

eurotv

Area ID: eurotv
 Description: Europe TV -  6.2x5.0km
 Projection: {'a': '6378144', 'lat_0': '90', 'lat_ts': '60', 'lon_0': '14', 'no_defs': 'None', 'proj': 'stere', 'rf': '298.253168108487', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1024
 Number of rows: 1024
 Area extent: (-3503748.8202, -6589593.1341, 2842567.6359, -1499856.5847)

eurotv4n

Area ID: eurotv4n
 Description: Europe TV4 -  4.1x4.1km
 Projection: {'a': '6378144', 'lat_0': '90', 'lat_ts': '60', 'lon_0': '14', 'no_defs': 'None', 'proj': 'stere', 'rf': '298.253168108487', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 2048
 Number of rows: 1152
 Area extent: (-5103428.6787, -6772478.6005, 3293371.3213, -2049278.6005)

eurol

Area ID: eurol
 Description: Euro 3.0km area - Europe
 Projection: {'ellps': 'WGS84', 'lat_0': '90', 'lat_ts': '60', 'lon_0': '0', 'no_defs': 'None', 'proj': 'stere', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 2560
 Number of rows: 2048
 Area extent: (-3780000.0, -7644000.0, 3900000.0, -1500000.0)

eurol1

Area ID: eurol1
 Description: Euro 3.0km area - Europe
 Projection: {'ellps': 'WGS84', 'lat_0': '90', 'lat_ts': '60', 'lon_0': '0', 'no_defs': 'None', 'proj': 'stere', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 10000
 Number of rows: 8000
 Area extent: (-3780000.0, -7644000.0, 3900000.0, -1500000.0)

scanl

Area ID: scanl
 Description: Scandinavia - Large
 Projection: {'ellps': 'WGS84', 'lat_0': '90', 'lat_ts': '60', 'lon_0': '0', 'no_defs': 'None', 'proj': 'stere', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 2900
 Number of rows: 2900
 Area extent: (-900000.0, -4500000.0, 2000000.0, -1600000.0)

euron1

Area ID: euron1
 Description: Northern Europe - 1km
 Projection: {'ellps': 'WGS84', 'lat_0': '90', 'lat_ts': '60', 'lon_0': '0', 'no_defs': 'None', 'proj': 'stere', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 3072
 Number of rows: 3072
 Area extent: (-1000000.0, -4500000.0, 2072000.0, -1428000.0)

euron0250

Area ID: euron0250
 Description: Northern Europe - 1km
 Projection: {'ellps': 'WGS84', 'lat_0': '90', 'lat_ts': '60', 'lon_0': '0', 'no_defs': 'None', 'proj': 'stere', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 12288
 Number of rows: 12288
 Area extent: (-1000000.0, -4500000.0, 2072000.0, -1428000.0)

nsea

Area ID: nsea
 Description: North Baltic Sea
 Projection: {'ellps': 'WGS84', 'lat_ts': '0', 'lon_0': '15', 'no_defs': 'None', 'proj': 'merc', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1024
 Number of rows: 1024
 Area extent: (-322789.0764, 7784901.9868, 1725210.9236, 9832901.9868)

ssea

Area ID: ssea
 Description: South Baltic Sea
 Projection: {'ellps': 'WGS84', 'lat_ts': '0', 'lon_0': '15', 'no_defs': 'None', 'proj': 'merc', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1024
 Number of rows: 1024
 Area extent: (-801407.362, 7003690.6636, 1246592.638, 9051690.6636)

nsea250

Area ID: nsea250
 Description: North Baltic Sea
 Projection: {'ellps': 'WGS84', 'lat_ts': '0', 'lon_0': '15', 'no_defs': 'None', 'proj': 'merc', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 4096
 Number of rows: 4096
 Area extent: (-322789.0764, 7784901.9868, 1725210.9236, 9832901.9868)

ssea250

Area ID: ssea250
 Description: South Baltic Sea
 Projection: {'ellps': 'WGS84', 'lat_ts': '0', 'lon_0': '15', 'no_defs': 'None', 'proj': 'merc', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 4096
 Number of rows: 4096
 Area extent: (-801407.362, 7003690.6636, 1246592.638, 9051690.6636)

bsea250

Area ID: bsea250
 Description: South Baltic Sea
 Projection: {'ellps': 'WGS84', 'lat_ts': '60', 'lon_0': '0', 'no_defs': 'None', 'proj': 'merc', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 4752
 Number of rows: 5632
 Area extent: (512000.0, 3525000.0, 1700000.0, 4933000.0)

test250

Area ID: test250
 Description: South Baltic Sea
 Projection: {'ellps': 'WGS84', 'lat_ts': '60', 'lon_0': '0', 'no_defs': 'None', 'proj': 'merc', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 4752
 Number of rows: 5632
 Area extent: (512000.0, 3525000.0, 1700000.0, 4933000.0)

bsea1000

Area ID: bsea1000
 Description: South Baltic Sea
 Projection: {'ellps': 'WGS84', 'lat_ts': '60', 'lon_0': '0', 'no_defs': 'None', 'proj': 'merc', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1188
 Number of rows: 1408
 Area extent: (512000.0, 3525000.0, 1700000.0, 4933000.0)

euro

Area ID: euro
 Description: Euro area - Europe
 Projection: {'ellps': 'bessel', 'lat_0': '90', 'lat_ts': '60', 'lon_0': '14', 'no_defs': 'None', 'proj': 'stere', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 512
 Number of rows: 512
 Area extent: (-2717181.7305, -5571048.1403, 1378818.2695, -1475048.1403)

baltrad_lambert

Area ID: baltrad_lambert
 Description: Baltrad Lambert
 Projection: {'ellps': 'sphere', 'lat_0': '60', 'lon_0': '20', 'no_defs': 'None', 'proj': 'laea', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 815
 Number of rows: 1195
 Area extent: (-994211.8539, -1291605.154, 635788.1461, 1098394.846)

eport

Area ID: eport
 Description: eport
 Projection: {'ellps': 'WGS84', 'k': '1', 'lat_0': '90', 'lon_0': '0', 'no_defs': 'None', 'proj': 'stere', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1792
 Number of rows: 1792
 Area extent: (-5283418.6258, -5283418.6258, 5283418.6258, 5283418.6258)

eport1

Area ID: eport1
 Description: eport
 Projection: {'ellps': 'WGS84', 'k': '1', 'lat_0': '90', 'lon_0': '0', 'no_defs': 'None', 'proj': 'stere', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 10567
 Number of rows: 10567
 Area extent: (-5283418.6258, -5283418.6258, 5283418.6258, 5283418.6258)

eport10

Area ID: eport10
 Description: eport reduced resolution
 Projection: {'ellps': 'WGS84', 'k': '1', 'lat_0': '90', 'lon_0': '0', 'no_defs': 'None', 'proj': 'stere', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1057
 Number of rows: 1057
 Area extent: (-5283418.6258, -5283418.6258, 5283418.6258, 5283418.6258)

eport4

Area ID: eport4
 Description: eport reduced resolution
 Projection: {'ellps': 'WGS84', 'k': '1', 'lat_0': '90', 'lon_0': '0', 'no_defs': 'None', 'proj': 'stere', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 2642
 Number of rows: 2642
 Area extent: (-5283418.6258, -5283418.6258, 5283418.6258, 5283418.6258)

eport2

Area ID: eport2
 Description: eport reduced resolution
 Projection: {'ellps': 'WGS84', 'k': '1', 'lat_0': '90', 'lon_0': '0', 'no_defs': 'None', 'proj': 'stere', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 5285
 Number of rows: 5285
 Area extent: (-5283418.6258, -5283418.6258, 5283418.6258, 5283418.6258)

npp_sample_m

Area ID: npp_sample_m
 Description: North America - NPP sample data - M-bands
 Projection: {'ellps': 'sphere', 'lat_0': '60', 'lon_0': '-120', 'no_defs': 'None', 'proj': 'laea', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1500
 Number of rows: 1500
 Area extent: (-1700000.0, -1400000.0, 1100000.0, 1400000.0)

arctic_europe_1km

Area ID: arctic_europe_1km
 Description: Arctic and Europe
 Projection: {'R': '6371228', 'lat_0': '90', 'lon_0': '0', 'no_defs': 'None', 'proj': 'laea', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 9100
 Number of rows: 9100
 Area extent: (-3100000.0, -7100000.0, 6000000.0, 2000000.0)

arctic_europe_9km

Area ID: arctic_europe_9km
 Description: Arctic and Europe
 Projection: {'R': '6371228', 'lat_0': '90', 'lon_0': '0', 'no_defs': 'None', 'proj': 'laea', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 910
 Number of rows: 910
 Area extent: (-3100000.0, -7100000.0, 6000000.0, 2000000.0)

sswe

Area ID: sswe
 Description: Southern Sweden
 Projection: {'a': '6378144', 'lat_0': '90', 'lat_ts': '60', 'lon_0': '14', 'no_defs': 'None', 'proj': 'stere', 'rf': '298.253168108487', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1024
 Number of rows: 1024
 Area extent: (-400884.2304, -3946631.7139, 623115.7695, -2922631.7139)

nswe

Area ID: nswe
 Description: Northern Sweden
 Projection: {'a': '6378144', 'lat_0': '90', 'lat_ts': '60', 'lon_0': '14', 'no_defs': 'None', 'proj': 'stere', 'rf': '298.253168108487', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1024
 Number of rows: 1024
 Area extent: (-392288.0105, -3105279.3525, 631711.9895, -2081279.3525)

sval

Area ID: sval
 Description: Svalbard
 Projection: {'ellps': 'WGS84', 'lat_0': '90', 'lat_ts': '75', 'lon_0': '20', 'no_defs': 'None', 'proj': 'stere', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1024
 Number of rows: 1024
 Area extent: (-287554.949, -1630805.1542, 736445.051, -606805.1542)

ease_sh

Area ID: ease_sh
 Description: Antarctic EASE grid
 Projection: {'R': '6371228', 'lat_0': '-90', 'lon_0': '0', 'no_defs': 'None', 'proj': 'laea', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 425
 Number of rows: 425
 Area extent: (-5326849.0625, -5326849.0625, 5326849.0625, 5326849.0625)

ease_nh

Area ID: ease_nh
 Description: Arctic EASE grid
 Projection: {'R': '6371228', 'lat_0': '90', 'lon_0': '0', 'no_defs': 'None', 'proj': 'laea', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 425
 Number of rows: 425
 Area extent: (-5326849.0625, -5326849.0625, 5326849.0625, 5326849.0625)

barents_sea

Area ID: barents_sea
 Description: Barents and Greenland seas
 Projection: {'ellps': 'WGS84', 'lat_0': '90', 'lat_ts': '75', 'lon_0': '40', 'no_defs': 'None', 'proj': 'stere', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 3000
 Number of rows: 1700
 Area extent: (-1600000.0, -2000000.0, 1400000.0, -300000.0)

antarctica

Area ID: antarctica
 Description: Antarctica - 1km
 Projection: {'ellps': 'sphere', 'lat_0': '-90', 'lon_0': '0', 'no_defs': 'None', 'proj': 'laea', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 5718
 Number of rows: 5718
 Area extent: (-2858899.2042, -2858899.2042, 2858899.2042, 2858899.2042)

arctica

Area ID: arctica
 Description: arctica - 1km
 Projection: {'ellps': 'sphere', 'lat_0': '90', 'lon_0': '0', 'no_defs': 'None', 'proj': 'laea', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 5718
 Number of rows: 5718
 Area extent: (-1458899.2042, -1458899.2042, 1458899.2042, 1458899.2042)

euroasia

Area ID: euroasia
 Description: Euroasia - Global 1km USGS Landuse database
 Projection: {'ellps': 'sphere', 'lat_0': '55', 'lon_0': '20', 'no_defs': 'None', 'proj': 'laea', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 13000
 Number of rows: 13000
 Area extent: (-3000000.0, -4999000.0, 9999000.0, 8000000.0)

euroasia_10km

Area ID: euroasia_10km
 Description: Euroasia - Global 1km USGS Landuse database
 Projection: {'ellps': 'sphere', 'lat_0': '55', 'lon_0': '20', 'no_defs': 'None', 'proj': 'laea', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1300
 Number of rows: 1300
 Area extent: (-3000000.0, -4999000.0, 9999000.0, 8000000.0)

euroasia_asia

Area ID: euroasia_asia
 Description: Euroasia - optimised for Asia - Global 1km USGS Landuse database
 Projection: {'ellps': 'sphere', 'lat_0': '45', 'lon_0': '100', 'no_defs': 'None', 'proj': 'laea', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 13000
 Number of rows: 12000
 Area extent: (-8000000.0, -5499000.0, 4999000.0, 6500000.0)

euroasia_asia_10km

Area ID: euroasia_asia_10km
 Description: Euroasia - optimised for Asia - Global 1km USGS Landuse database
 Projection: {'ellps': 'sphere', 'lat_0': '45', 'lon_0': '100', 'no_defs': 'None', 'proj': 'laea', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1300
 Number of rows: 1200
 Area extent: (-8000000.0, -5499000.0, 4999000.0, 6500000.0)

australia_pacific

Area ID: australia_pacific
 Description: Austalia/Pacific - Global 1km USGS Landuse database
 Projection: {'ellps': 'sphere', 'lat_0': '-15', 'lon_0': '135', 'no_defs': 'None', 'proj': 'laea', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 9300
 Number of rows: 8000
 Area extent: (-5000000.0, -3944890.0, 4299000.0, 4054110.0)

australia_pacific_10km

Area ID: australia_pacific_10km
 Description: Austalia/Pacific - Global 1km USGS Landuse database
 Projection: {'ellps': 'sphere', 'lat_0': '-15', 'lon_0': '135', 'no_defs': 'None', 'proj': 'laea', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 930
 Number of rows: 800
 Area extent: (-5000000.0, -3944890.0, 4299000.0, 4054110.0)

africa

Area ID: africa
 Description: Africa - Global 1km USGS Landuse database
 Projection: {'ellps': 'sphere', 'lat_0': '5', 'lon_0': '20', 'no_defs': 'None', 'proj': 'laea', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 8350
 Number of rows: 9276
 Area extent: (-4458000.0, -4795000.0, 3891000.0, 4480000.0)

africa_10km

Area ID: africa_10km
 Description: Africa - Global 1km USGS Landuse database
 Projection: {'ellps': 'sphere', 'lat_0': '5', 'lon_0': '20', 'no_defs': 'None', 'proj': 'laea', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 835
 Number of rows: 928
 Area extent: (-4458000.0, -4795000.0, 3891000.0, 4480000.0)

southamerica_laea

Area ID: southamerica_laea
 Description: South America - Global 1km USGS Landuse database
 Projection: {'ellps': 'sphere', 'lat_0': '-15', 'lon_0': '-60', 'no_defs': 'None', 'proj': 'laea', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 6000
 Number of rows: 8000
 Area extent: (-3000000.0, -4899000.0, 2999000.0, 3100000.0)

southamerica_10km

Area ID: southamerica_10km
 Description: South America - Global 1km USGS Landuse database
 Projection: {'ellps': 'sphere', 'lat_0': '-15', 'lon_0': '-60', 'no_defs': 'None', 'proj': 'laea', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 600
 Number of rows: 800
 Area extent: (-3000000.0, -4899000.0, 2999000.0, 3100000.0)

northamerica

Area ID: northamerica
 Description: North America - Global 1km USGS Landuse database
 Projection: {'ellps': 'sphere', 'lat_0': '50', 'lon_0': '-100', 'no_defs': 'None', 'proj': 'laea', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 9223
 Number of rows: 8996
 Area extent: (-4487000.0, -4515000.0, 4735000.0, 4480000.0)

northamerica_10km

Area ID: northamerica_10km
 Description: North America - Global 1km USGS Landuse database
 Projection: {'ellps': 'sphere', 'lat_0': '50', 'lon_0': '-100', 'no_defs': 'None', 'proj': 'laea', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 922
 Number of rows: 900
 Area extent: (-4487000.0, -4515000.0, 4735000.0, 4480000.0)

romania

Area ID: romania
 Description: Romania - 3km
 Projection: {'ellps': 'WGS84', 'lat_0': '50.0', 'lat_ts': '60.0', 'lon_0': '15.0', 'proj': 'stere', 'type': 'crs'}
 Number of columns: 1509
 Number of rows: 855
 Area extent: (-2226837.6626, -1684219.2829, 2299196.3374, 881436.7171)

stere_asia_test

Area ID: stere_asia_test
 Description: stere
 Projection: {'datum': 'WGS84', 'k': '1', 'lat_0': '25', 'lon_0': '121.5', 'no_defs': 'None', 'proj': 'stere', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 7200
 Number of rows: 7162
 Area extent: (-3589072.8403, -3568228.0728, 3611014.2563, 3594111.7023)

bocheng_test

Area ID: bocheng_test
 Description: stere
 Projection: {'datum': 'WGS84', 'k': '1', 'lat_0': '25', 'lon_0': '121.5', 'no_defs': 'None', 'proj': 'stere', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 2000
 Number of rows: 1989
 Area extent: (-3589072.8403, -3568228.0728, 3611014.2563, 3594111.7023)

nsper_swe

Area ID: nsper_swe
 Description: nsper_swe
 Projection: {'datum': 'WGS84', 'h': '360000000', 'lat_0': '58', 'lon_0': '16', 'no_defs': 'None', 'proj': 'nsper', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1024
 Number of rows: 1024
 Area extent: (-5000000.0, -5000000.0, 5000000.0, 5000000.0)

new_bsea250

Area ID: new_bsea250
 Description: new_bsea250
 Projection: {'ellps': 'WGS84', 'k': '1', 'lat_0': '59.5', 'lon_0': '19.5', 'no_defs': 'None', 'proj': 'stere', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 5104
 Number of rows: 5750
 Area extent: (-638072.2772, -680339.8397, 638072.2772, 757253.9342)

scanice

Area ID: scanice
 Description: Scandinavia and Iceland
 Projection: {'ellps': 'sphere', 'lat_0': '64', 'lon_0': '0', 'no_defs': 'None', 'proj': 'laea', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 1280
 Number of rows: 1024
 Area extent: (-1920000.0, -1536000.0, 1920000.0, 1536000.0)

baws250

Area ID: baws250
 Description: BAWS, 250m resolution
 Projection: {'ellps': 'WGS84', 'lat_0': '0', 'lat_1': '60', 'lat_2': '60', 'lon_0': '14', 'no_defs': 'None', 'proj': 'aea', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 5600
 Number of rows: 5600
 Area extent: (-475617.0, 5324430.0, 924383.0, 6724430.0)

moll

Area ID: moll
 Description: moll
 Projection: {'ellps': 'WGS84', 'lat_0': '0.0', 'lon_0': '0.0', 'proj': 'moll', 'type': 'crs'}
 Number of columns: 3600
 Number of rows: 1800
 Area extent: (-18040095.6961, -9020047.8481, 18040095.6961, 9020047.8481)

robinson

Area ID: robinson
 Description: robinson
 Projection: {'ellps': 'WGS84', 'lat_0': '70.0', 'lon_0': '-45.0', 'proj': 'robin', 'type': 'crs'}
 Number of columns: 4096
 Number of rows: 3296
 Area extent: (-2049911.5256, 5326895.726, 2049911.5256, 8625155.1286)

met07globe

Area ID: met07globe
 Description: Full disk IODC image 57 degrees
 Projection: {'a': '6378140', 'h': '35785831', 'lon_0': '57', 'no_defs': 'None', 'proj': 'geos', 'rf': '298.252981061492', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 2500
 Number of rows: 2500
 Area extent: (-5621225.2378, -5621225.2378, 5621225.2378, 5621225.2378)

met09globe

Area ID: met09globe
 Description: Cropped disk MSG image 0 degrees
 Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '0', 'no_defs': 'None', 'proj': 'geos', 'rf': '295.488065897001', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 3620
 Number of rows: 3620
 Area extent: (-5432229.9317, -5429229.5285, 5429229.5285, 5432229.9317)

met09globeFull

Area ID: met09globeFull
 Description: Full disk MSG image 0 degrees
 Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '0', 'no_defs': 'None', 'proj': 'geos', 'rf': '295.488065897001', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 3712
 Number of rows: 3712
 Area extent: (-5570248.4773, -5567248.0742, 5567248.0742, 5570248.4773)

seviri_0deg

Area ID: seviri_0deg
 Description: Full disk MSG image 0 degrees
 Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '0', 'no_defs': 'None', 'proj': 'geos', 'rf': '295.488065897001', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 3712
 Number of rows: 3712
 Area extent: (-5570248.6867, -5567248.2834, 5567248.2834, 5570248.6867)

seviri_iodc

Area ID: seviri_iodc
 Description: Full disk MSG image 41.5 degrees
 Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '41.5', 'no_defs': 'None', 'proj': 'geos', 'rf': '295.488065897001', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 3712
 Number of rows: 3712
 Area extent: (-5570248.6867, -5567248.2834, 5567248.2834, 5570248.6867)

msg_resample_area

Area ID: msg_resample_area
 Description: Full disk MSG image 20.75 degrees
 Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '20.75', 'no_defs': 'None', 'proj': 'geos', 'rf': '295.488065897001', 'type': 'crs', 'units': 'm', 'x_0': '0', 'y_0': '0'}
 Number of columns: 3712
 Number of rows: 3712
 Area extent: (-5570248.4773, -5567248.0742, 5567248.0742, 5570248.4773)

EPSG_4326_36000x18000

Area ID: EPSG_4326_36000x18000
 Description: Global equal latitude/longitude grid at 0.01 degree resolution
 Projection: {'datum': 'WGS84', 'no_defs': 'None', 'proj': 'longlat', 'type': 'crs'}
 Number of columns: 36000
 Number of rows: 18000
 Area extent: (-180.0, -90.0, 180.0, 90.0)

EPSG_4326_7200x3600

Area ID: EPSG_4326_7200x3600
 Description: Global equal latitude/longitude grid at 0.05 degree resolution
 Projection: {'datum': 'WGS84', 'no_defs': 'None', 'proj': 'longlat', 'type': 'crs'}
 Number of columns: 7200
 Number of rows: 3600
 Area extent: (-180.0, -90.0, 180.0, 90.0)

EPSG_4326_3600x1800

Area ID: EPSG_4326_3600x1800
 Description: Global equal latitude/longitude grid at 0.1 degree resolution
 Projection: {'datum': 'WGS84', 'no_defs': 'None', 'proj': 'longlat', 'type': 'crs'}
 Number of columns: 3600
 Number of rows: 1800
 Area extent: (-180.0, -90.0, 180.0, 90.0)

EPSG_4326_1440x720

Area ID: EPSG_4326_1440x720
 Description: Global equal latitude/longitude grid at 0.25 degree resolution
 Projection: {'datum': 'WGS84', 'no_defs': 'None', 'proj': 'longlat', 'type': 'crs'}
 Number of columns: 1440
 Number of rows: 720
 Area extent: (-180.0, -90.0, 180.0, 90.0)

EPSG_4326_720x360

Area ID: EPSG_4326_720x360
 Description: Global equal latitude/longitude grid at 0.5 degree resolution
 Projection: {'datum': 'WGS84', 'no_defs': 'None', 'proj': 'longlat', 'type': 'crs'}
 Number of columns: 720
 Number of rows: 360
 Area extent: (-180.0, -90.0, 180.0, 90.0)

EPSG_4326_360x180

Area ID: EPSG_4326_360x180
 Description: Global equal latitude/longitude grid at 1 degree resolution
 Projection: {'datum': 'WGS84', 'no_defs': 'None', 'proj': 'longlat', 'type': 'crs'}
 Number of columns: 360
 Number of rows: 180
 Area extent: (-180.0, -90.0, 180.0, 90.0)