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
Resampler |
Description |
Related |
---|---|---|
nearest |
Nearest Neighbor |
|
ewa |
Elliptical Weighted Averaging |
|
ewa_legacy |
Elliptical Weighted Averaging (Legacy) |
|
native |
Native |
|
bilinear |
Bilinear |
|
bucket_avg |
Average Bucket Resampling |
|
bucket_sum |
Sum Bucket Resampling |
|
bucket_count |
Count Bucket Resampling |
|
bucket_fraction |
Fraction Bucket Resampling |
|
gradient_search |
Gradient Search Resampling |
|
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.resample.get_area_def()
, which will search through all
areas.yaml
files in your SATPY_CONFIG_PATH
:
>>> from satpy.resample 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
Name |
Description |
Projection |
---|---|---|
MSG SEVIRI Full Earth Scanning service area definition with 3 km resolution |
geos |
|
MSG SEVIRI Full Earth Scanning service area definition with 1 km resolution |
geos |
|
MSG SEVIRI Rapid Scanning Service area definition with 3 km resolution |
geos |
|
MSG SEVIRI Rapid Scanning Service area definition with 1 km resolution |
geos |
|
MSG SEVIRI Indian Ocean Data Coverage service area definition with 3 km resolution |
geos |
|
MSG SEVIRI Indian Ocean Data Coverage service area definition with 1 km resolution |
geos |
|
MSG SEVIRI Full Earth Scanning service area definition with 9 km resolution |
geos |
|
MSG SEVIRI Rapid Scanning Service area definition with 9 km resolution |
geos |
|
MSG SEVIRI Indian Ocean Data Coverage service area definition with 9 km resolution |
geos |
|
MSG SEVIRI Full Earth Scanning service area definition with 9 km resolution (extended outside original 3km grid) |
geos |
|
MSG SEVIRI Rapid Scanning Service area definition with 9 km resolution (extended outside original 3km grid) |
geos |
|
MSG SEVIRI Indian Ocean Data Coverage service area definition with 9 km resolution (extended outside original 3km grid) |
geos |
|
MSG SEVIRI Full Earth Scanning service area definition with 48 km resolution |
geos |
|
MSG SEVIRI Rapid Scanning Service area definition with 48 km resolution |
geos |
|
MSG SEVIRI Indian Ocean Data Coverage service area definition with 48 km resolution |
geos |
|
Himawari-8/9 full disk area definition at 500m resolution |
geos |
|
Himawari-8/9 full disk area definition at 1km resolution |
geos |
|
Himawari-8/9 full disk area definition at 2km resolution |
geos |
|
Northern disk MSG image 0 degrees |
geos |
|
Eastern part of Northern disk MSG image 0 degrees |
geos |
|
Eastern disk MSG image 0 degrees |
geos |
|
Lower West part of Southern disk MSG image 0 degrees |
geos |
|
MTG FCI Full Disk Scanning Service area definition with 500 m SSP resolution |
geos |
|
MTG FCI Full Disk Scanning Service area definition with 1 km SSP resolution |
geos |
|
MTG FCI Full Disk Scanning Service area definition with 2 km SSP resolution |
geos |
|
MTG FCI Full Disk Scanning Service area definition with 4 km SSP resolution |
geos |
|
MTG FCI Full Disk Scanning Service area definition with 6 km SSP resolution |
geos |
|
MTG FCI Full Disk Scanning Service area definition with 32 km SSP resolution |
geos |
|
GOES East ABI Full Disk at 500 m SSP resolution |
geos |
|
GOES East ABI Full Disk at 1 km SSP resolution |
geos |
|
GOES East ABI Full Disk at 2 km SSP resolution |
geos |
|
GOES West ABI Full Disk at 500 m SSP resolution |
geos |
|
GOES West ABI Full Disk at 1 km SSP resolution |
geos |
|
GOES West ABI Full Disk at 2 km SSP resolution |
geos |
|
GOES East ABI CONUS at 500 m SSP resolution |
geos |
|
GOES East ABI CONUS at 1 km SSP resolution |
geos |
|
GOES East ABI CONUS at 2 km SSP resolution |
geos |
|
GOES West ABI PACUS at 500 m resolution |
geos |
|
GOES West ABI PACUS at 1 km SSP resolution |
geos |
|
GOES West ABI PACUS at 2 km resolution |
geos |
|
australia |
merc |
|
mali |
merc |
|
mali |
eqc |
|
Sweden and baltic sea |
utm |
|
brazil, platecarree |
eqc |
|
sudeste, platecarree |
eqc |
|
South America flat |
eqc |
|
south_america, platecarree |
eqc |
|
brazil, platecarree |
eqc |
|
World in 3km, platecarree |
eqc |
|
World in 3km, platecarree |
eqc |
|
World in 3km, platecarree |
eqc |
|
World in 3km, platecarree |
eqc |
|
World in 3km, platecarree |
eqc |
|
libya area |
merc |
|
kuwait area |
merc |
|
kuwait area |
merc |
|
kuwait area |
merc |
|
Afghanistan |
merc |
|
Western Africa and Canary Islands |
merc |
|
Africa horn 3km resolution |
merc |
|
Spain |
stere |
|
Germany |
stere |
|
Germany |
stere |
|
Euro 4km area - Europe |
stere |
|
Euro 4km area - Europe |
stere |
|
Scandinavia |
stere |
|
Scandinavia - 2km area |
stere |
|
Scandinavia - 1km area |
stere |
|
Scandinavia - 500m area |
stere |
|
Mesan-X rotated lon/lat 1.8km |
ob_tran |
|
Europe Mesan rotated lon/lat 1.8km |
ob_tran |
|
BAWS |
aea |
|
Europe TV - 6.2x5.0km |
stere |
|
Europe TV4 - 4.1x4.1km |
stere |
|
Euro 3.0km area - Europe |
stere |
|
Euro 3.0km area - Europe |
stere |
|
Scandinavia - Large |
stere |
|
Northern Europe - 1km |
stere |
|
Northern Europe - 1km |
stere |
|
North Baltic Sea |
merc |
|
South Baltic Sea |
merc |
|
North Baltic Sea |
merc |
|
South Baltic Sea |
merc |
|
South Baltic Sea |
merc |
|
South Baltic Sea |
merc |
|
South Baltic Sea |
merc |
|
Euro area - Europe |
stere |
|
Baltrad Lambert |
laea |
|
eport |
stere |
|
eport |
stere |
|
eport reduced resolution |
stere |
|
eport reduced resolution |
stere |
|
eport reduced resolution |
stere |
|
North America - NPP sample data - M-bands |
laea |
|
Arctic and Europe |
laea |
|
Arctic and Europe |
laea |
|
Southern Sweden |
stere |
|
Northern Sweden |
stere |
|
Svalbard |
stere |
|
Antarctic EASE grid |
laea |
|
Arctic EASE grid |
laea |
|
Barents and Greenland seas |
stere |
|
Antarctica - 1km |
laea |
|
arctica - 1km |
laea |
|
Euroasia - Global 1km USGS Landuse database |
laea |
|
Euroasia - Global 1km USGS Landuse database |
laea |
|
Euroasia - optimised for Asia - Global 1km USGS Landuse database |
laea |
|
Euroasia - optimised for Asia - Global 1km USGS Landuse database |
laea |
|
Austalia/Pacific - Global 1km USGS Landuse database |
laea |
|
Austalia/Pacific - Global 1km USGS Landuse database |
laea |
|
Africa - Global 1km USGS Landuse database |
laea |
|
Africa - Global 1km USGS Landuse database |
laea |
|
South America - Global 1km USGS Landuse database |
laea |
|
South America - Global 1km USGS Landuse database |
laea |
|
North America - Global 1km USGS Landuse database |
laea |
|
North America - Global 1km USGS Landuse database |
laea |
|
Romania - 3km |
stere |
|
stere |
stere |
|
stere |
stere |
|
nsper_swe |
nsper |
|
new_bsea250 |
stere |
|
Scandinavia and Iceland |
laea |
|
BAWS, 250m resolution |
aea |
|
moll |
moll |
|
robinson |
robin |
|
Full disk IODC image 57 degrees |
geos |
|
Cropped disk MSG image 0 degrees |
geos |
|
Full disk MSG image 0 degrees |
geos |
|
Full disk MSG image 0 degrees |
geos |
|
Full disk MSG image 41.5 degrees |
geos |
|
Full disk MSG image 20.75 degrees |
geos |
|
Global equal latitude/longitude grid at 0.01 degree resolution |
longlat |
|
Global equal latitude/longitude grid at 0.05 degree resolution |
longlat |
|
Global equal latitude/longitude grid at 0.1 degree resolution |
longlat |
|
Global equal latitude/longitude grid at 0.25 degree resolution |
longlat |
|
Global equal latitude/longitude grid at 0.5 degree resolution |
longlat |
|
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)
- Area name
- 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'}
- Width/Height
- 3712/3712 Pixel
- Resolution x/y (SSP)
- 3000.4/3000.4 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 11136/11136 Pixel
- Resolution x/y (SSP)
- 1000.1/1000.1 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 3712/3712 Pixel
- Resolution x/y (SSP)
- 3000.4/3000.4 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 11136/11136 Pixel
- Resolution x/y (SSP)
- 1000.1/1000.1 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 3712/3712 Pixel
- Resolution x/y (SSP)
- 3000.4/3000.4 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 11136/11136 Pixel
- Resolution x/y (SSP)
- 1000.1/1000.1 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1237/1237 Pixel
- Resolution x/y (SSP)
- 9001.2/9001.2 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1237/1237 Pixel
- Resolution x/y (SSP)
- 9001.2/9001.2 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1237/1237 Pixel
- Resolution x/y (SSP)
- 9001.2/9001.2 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1238/1238 Pixel
- Resolution x/y (SSP)
- 9001.2/9001.2 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1238/1238 Pixel
- Resolution x/y (SSP)
- 9001.2/9001.2 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1238/1238 Pixel
- Resolution x/y (SSP)
- 9001.2/9001.2 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 232/232 Pixel
- Resolution x/y (SSP)
- 48006.5/48006.5 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 232/232 Pixel
- Resolution x/y (SSP)
- 48006.5/48006.5 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 232/232 Pixel
- Resolution x/y (SSP)
- 48006.5/48006.5 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 22000/22000 Pixel
- Resolution x/y (SSP)
- 500.0/500.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 11000/11000 Pixel
- Resolution x/y (SSP)
- 1000.0/1000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 5500/5500 Pixel
- Resolution x/y (SSP)
- 2000.0/2000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 3000/1200 Pixel
- Resolution x/y (SSP)
- 3000.4/3000.4 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1300/800 Pixel
- Resolution x/y (SSP)
- 2999.2/3000.4 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (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)
- Area name
- 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'}
- Width/Height
- 1100/1600 Pixel
- Resolution x/y (SSP)
- 3000.4/3000.4 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (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)
- Area name
- 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'}
- Width/Height
- 3000/1200 Pixel
- Resolution x/y (SSP)
- 1728.5/4669.4 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 22272/22272 Pixel
- Resolution x/y (SSP)
- 500.0/500.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 11136/11136 Pixel
- Resolution x/y (SSP)
- 1000.0/1000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 5568/5568 Pixel
- Resolution x/y (SSP)
- 2000.0/2000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 2784/2784 Pixel
- Resolution x/y (SSP)
- 4000.0/4000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1856/1856 Pixel
- Resolution x/y (SSP)
- 6000.0/6000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 348/348 Pixel
- Resolution x/y (SSP)
- 32000.0/32000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 21696/21696 Pixel
- Resolution x/y (SSP)
- 501.0/501.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 10848/10848 Pixel
- Resolution x/y (SSP)
- 1002.0/1002.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 5424/5424 Pixel
- Resolution x/y (SSP)
- 2004.0/2004.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 21696/21696 Pixel
- Resolution x/y (SSP)
- 501.0/501.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 10848/10848 Pixel
- Resolution x/y (SSP)
- 1002.0/1002.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 5424/5424 Pixel
- Resolution x/y (SSP)
- 2004.0/2004.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 10000/6000 Pixel
- Resolution x/y (SSP)
- 501.0/501.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 5000/3000 Pixel
- Resolution x/y (SSP)
- 1002.0/1002.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 2500/1500 Pixel
- Resolution x/y (SSP)
- 2004.0/2004.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 10000/6000 Pixel
- Resolution x/y (SSP)
- 501.0/501.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 5000/3000 Pixel
- Resolution x/y (SSP)
- 1002.0/1002.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 2500/1500 Pixel
- Resolution x/y (SSP)
- 2004.0/2004.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- australia
- Description
- australia
- Projection
- {'ellps': 'WGS84', 'lat_0': '-27.5', 'lon_0': '132.5', 'proj': 'merc', 'type': 'crs'}
- Width/Height
- 1001/895 Pixel
- Resolution x/y (SSP)
- 5004.4/5005.4
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- mali
- Description
- mali
- Projection
- {'ellps': 'WGS84', 'lat_0': '19.0', 'lon_0': '-1.0', 'proj': 'merc', 'type': 'crs'}
- Width/Height
- 816/705 Pixel
- Resolution x/y (SSP)
- 3001.3/3003.5
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 816/667 Pixel
- Resolution x/y (SSP)
- 3001.3/3004.1 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- sve
- Description
- Sweden and baltic sea
- Projection
- {'ellps': 'GRS80', 'no_defs': 'None', 'proj': 'utm', 'type': 'crs', 'units': 'm', 'zone': '33'}
- Width/Height
- 2000/2000 Pixel
- Resolution x/y (SSP)
- 883.0/998.5 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 768/768 Pixel
- Resolution x/y (SSP)
- 7247.4/7972.1 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 959/959 Pixel
- Resolution x/y (SSP)
- 1973.3/1625.1 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1442/1213 Pixel
- Resolution x/y (SSP)
- 5388.2/5066.1 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1024/1024 Pixel
- Resolution x/y (SSP)
- 7392.3/6196.5 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 768/768 Pixel
- Resolution x/y (SSP)
- 5942.8/6377.7 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 8192/4096 Pixel
- Resolution x/y (SSP)
- 4892.0/3804.9 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 819/410 Pixel
- Resolution x/y (SSP)
- 48931.6/38011.5 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 4096/2048 Pixel
- Resolution x/y (SSP)
- 9783.9/7990.2 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 4096/2048 Pixel
- Resolution x/y (SSP)
- 9783.9/9783.9 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 820/410 Pixel
- Resolution x/y (SSP)
- 48872.0/48872.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1280/1024 Pixel
- Resolution x/y (SSP)
- 3000.0/3000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- phil
- Description
- kuwait area
- Projection
- {'ellps': 'WGS84', 'lat_0': '10.0', 'lat_ts': '10.0', 'lon_0': '125.0', 'proj': 'merc', 'type': 'crs'}
- Width/Height
- 4096/2048 Pixel
- Resolution x/y (SSP)
- 1074.2/1074.2
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- phil_small
- Description
- kuwait area
- Projection
- {'ellps': 'WGS84', 'lat_0': '10.0', 'lat_ts': '10.0', 'lon_0': '125.0', 'proj': 'merc', 'type': 'crs'}
- Width/Height
- 512/512 Pixel
- Resolution x/y (SSP)
- 4296.9/4296.9
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 512/512 Pixel
- Resolution x/y (SSP)
- 5000.0/5000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1600/1600 Pixel
- Resolution x/y (SSP)
- 2000.0/2000.0
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 2100/1100 Pixel
- Resolution x/y (SSP)
- 1000.0/1000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1622/1622 Pixel
- Resolution x/y (SSP)
- 2998.8/2998.8 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 2048/2048 Pixel
- Resolution x/y (SSP)
- 488.3/488.3
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1024/1024 Pixel
- Resolution x/y (SSP)
- 1000.0/1000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1280/1024 Pixel
- Resolution x/y (SSP)
- 815.6/1000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1024/1024 Pixel
- Resolution x/y (SSP)
- 4000.0/4000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 4096/4096 Pixel
- Resolution x/y (SSP)
- 1000.0/1000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 512/512 Pixel
- Resolution x/y (SSP)
- 4000.0/4000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1024/1024 Pixel
- Resolution x/y (SSP)
- 2000.0/2000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 2048/2088 Pixel
- Resolution x/y (SSP)
- 1000.0/1000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 4096/4176 Pixel
- Resolution x/y (SSP)
- 500.0/500.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1476/1608 Pixel
- Resolution x/y (SSP)
- 1845.8/1846.3
- Extent (ll_x, ll_y, ur_x, ur_y)
- (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)
- Area name
- 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'}
- Width/Height
- 5093/6294 Pixel
- Resolution x/y (SSP)
- 1000.0/999.9
- Extent (ll_x, ll_y, ur_x, ur_y)
- (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)
- Area name
- 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'}
- Width/Height
- 1400/1400 Pixel
- Resolution x/y (SSP)
- 1000.0/1000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1024/1024 Pixel
- Resolution x/y (SSP)
- 6197.6/4970.4 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 2048/1152 Pixel
- Resolution x/y (SSP)
- 4100.0/4100.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 2560/2048 Pixel
- Resolution x/y (SSP)
- 3000.0/3000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 10000/8000 Pixel
- Resolution x/y (SSP)
- 768.0/768.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 2900/2900 Pixel
- Resolution x/y (SSP)
- 1000.0/1000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 3072/3072 Pixel
- Resolution x/y (SSP)
- 1000.0/1000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 12288/12288 Pixel
- Resolution x/y (SSP)
- 250.0/250.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1024/1024 Pixel
- Resolution x/y (SSP)
- 2000.0/2000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1024/1024 Pixel
- Resolution x/y (SSP)
- 2000.0/2000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 4096/4096 Pixel
- Resolution x/y (SSP)
- 500.0/500.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 4096/4096 Pixel
- Resolution x/y (SSP)
- 500.0/500.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 4752/5632 Pixel
- Resolution x/y (SSP)
- 250.0/250.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (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)
- Area name
- 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'}
- Width/Height
- 4752/5632 Pixel
- Resolution x/y (SSP)
- 250.0/250.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (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)
- Area name
- 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'}
- Width/Height
- 1188/1408 Pixel
- Resolution x/y (SSP)
- 1000.0/1000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (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)
- Area name
- 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'}
- Width/Height
- 512/512 Pixel
- Resolution x/y (SSP)
- 8000.0/8000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 815/1195 Pixel
- Resolution x/y (SSP)
- 2000.0/2000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1792/1792 Pixel
- Resolution x/y (SSP)
- 5896.7/5896.7 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 10567/10567 Pixel
- Resolution x/y (SSP)
- 1000.0/1000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1057/1057 Pixel
- Resolution x/y (SSP)
- 9997.0/9997.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 2642/2642 Pixel
- Resolution x/y (SSP)
- 3999.6/3999.6 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 5285/5285 Pixel
- Resolution x/y (SSP)
- 1999.4/1999.4 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1500/1500 Pixel
- Resolution x/y (SSP)
- 1866.7/1866.7 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 9100/9100 Pixel
- Resolution x/y (SSP)
- 1000.0/1000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 910/910 Pixel
- Resolution x/y (SSP)
- 10000.0/10000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1024/1024 Pixel
- Resolution x/y (SSP)
- 1000.0/1000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1024/1024 Pixel
- Resolution x/y (SSP)
- 1000.0/1000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1024/1024 Pixel
- Resolution x/y (SSP)
- 1000.0/1000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 425/425 Pixel
- Resolution x/y (SSP)
- 25067.5/25067.5 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 425/425 Pixel
- Resolution x/y (SSP)
- 25067.5/25067.5 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 3000/1700 Pixel
- Resolution x/y (SSP)
- 1000.0/1000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 5718/5718 Pixel
- Resolution x/y (SSP)
- 1000.0/1000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 5718/5718 Pixel
- Resolution x/y (SSP)
- 510.3/510.3 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 13000/13000 Pixel
- Resolution x/y (SSP)
- 999.9/999.9 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1300/1300 Pixel
- Resolution x/y (SSP)
- 9999.2/9999.2 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 13000/12000 Pixel
- Resolution x/y (SSP)
- 999.9/999.9 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 1300/1200 Pixel
- Resolution x/y (SSP)
- 9999.2/9999.2 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 9300/8000 Pixel
- Resolution x/y (SSP)
- 999.9/999.9 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 930/800 Pixel
- Resolution x/y (SSP)
- 9998.9/9998.8 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 8350/9276 Pixel
- Resolution x/y (SSP)
- 999.9/999.9 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 835/928 Pixel
- Resolution x/y (SSP)
- 9998.8/9994.6 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 6000/8000 Pixel
- Resolution x/y (SSP)
- 999.8/999.9 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 600/800 Pixel
- Resolution x/y (SSP)
- 9998.3/9998.8 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 9223/8996 Pixel
- Resolution x/y (SSP)
- 999.9/999.9 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 922/900 Pixel
- Resolution x/y (SSP)
- 10002.2/9994.4 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- romania
- Description
- Romania - 3km
- Projection
- {'ellps': 'WGS84', 'lat_0': '50.0', 'lat_ts': '60.0', 'lon_0': '15.0', 'proj': 'stere', 'type': 'crs'}
- Width/Height
- 1509/855 Pixel
- Resolution x/y (SSP)
- 2999.4/3000.8
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-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)
- Area name
- 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'}
- Width/Height
- 7200/7162 Pixel
- Resolution x/y (SSP)
- 1000.0/1000.0 m
- Extent (ll_x, ll_y, ur_x, ur_y)
- (-3589072.8403, -3568228.0728, 3611014.2563, 3594111.7023)