diff --git a/satpy/area.py b/satpy/area.py index 2e552758eb..e6a13123a9 100644 --- a/satpy/area.py +++ b/satpy/area.py @@ -15,6 +15,10 @@ # You should have received a copy of the GNU General Public License along with # satpy. If not, see . """Utility functions for area definitions.""" +import warnings + +from pyresample.area_config import AreaNotFound, _create_area_def_from_dict, _read_yaml_area_file_content + from ._config import config_search_paths, get_config_path @@ -29,7 +33,37 @@ def get_area_file(): else: return get_config_path("areas.def") +def deprecate_area_name(fun): + """Decorator to deprecate area names. + + This function is used to retire area names or warn about changed area names. + """ + def area_with_new_name(area_name): + try: + return fun(area_name) + except AreaNotFound: + area_file_name = get_area_file() + areas_dict = _read_yaml_area_file_content(area_file_name) + area_dict = None + for new_area_name, v in areas_dict.items(): + + if "old_name" in v.keys() and area_name in v["old_name"]:# == area_name: + area_dict = areas_dict.get(new_area_name) + del area_dict["old_name"] + break + + if area_dict is not None: + warnings.simplefilter("always", DeprecationWarning) + warnings.warn(f"This area name is being deprecated in Satpy v1.0. Pleas use the new area name:" + f" {new_area_name}", DeprecationWarning, stacklevel=2) + warnings.simplefilter("default", DeprecationWarning) + return _create_area_def_from_dict(new_area_name, area_dict) + else: + raise AreaNotFound('Area "{0}" not found in file "{1}"'.format(area_name, area_file_name)) + + return area_with_new_name +@deprecate_area_name def get_area_def(area_name): """Get the definition of *area_name* from file. diff --git a/satpy/etc/areas.yaml b/satpy/etc/areas.yaml index f1994b799c..d605825079 100644 --- a/satpy/etc/areas.yaml +++ b/satpy/etc/areas.yaml @@ -13,6 +13,7 @@ # Full disk msg_seviri_fes_3km: + old_name: ["met09globeFull", "seviri_0deg"] description: MSG SEVIRI Full Earth Scanning service area definition with 3 km resolution @@ -81,6 +82,7 @@ msg_seviri_rss_1km: upper_right_xy: [5566247.740968115, 5571248.412732527] msg_seviri_iodc_3km: + old_name: seviri_iodc description: MSG SEVIRI Indian Ocean Data Coverage service area definition with 3 km resolution @@ -319,8 +321,9 @@ himawari_ahi_fes_2km: # Regional -EuropeCanary: - description: Northern disk MSG image 0 degrees +EuropeCanary_geos_3km: + old_name: EuropeCanary + description: Northern disk MSG image 0 degrees with 3km SSP resolution projection: proj: geos lon_0: 0.0 @@ -334,8 +337,9 @@ EuropeCanary: lower_left_xy: [-4823148.089050828, 1969764.6783588605] upper_right_xy: [4178061.408400173, 5570248.477339261] -EastEurope: - description: Eastern part of Northern disk MSG image 0 degrees +EastEurope_geos_3km: + old_name: EastEurope + description: Eastern part of Northern disk MSG image 0 degrees with 3km SSP resolution projection: proj: geos lon_0: 0.0 @@ -349,8 +353,9 @@ EastEurope: lower_left_xy: [654112.8864287604, 2989901.7547366405] upper_right_xy: [4553111.804127298, 5390224.287390241] -AfHorn_geos: - description: Eastern disk MSG image 0 degrees +AfHorn_geos_3km: + old_name: AfHorn_geos + description: Eastern disk MSG image 0 degrees with 3km SSP resolution projection: proj: geos lon_0: 0.0 @@ -364,8 +369,9 @@ AfHorn_geos: lower_left_xy: [2263804.1886089267, -1327678.4008740226] upper_right_xy: [5564247.671007627, 3472966.6644331776] -SouthAmerica_geos: - description: Lower West part of Southern disk MSG image 0 degrees +SouthAmerica_geos_3km: + old_name: SouthAmerica_geos + description: Lower West part of Southern disk MSG image 0 degrees with 3km SSP resolution projection: proj: geos lon_0: 0.0 @@ -771,87 +777,8 @@ laea_bb: proj: laea optimize_projection: True -australia: - description: australia - projection: - proj: merc - lat_0: -27.5 - lon_0: 132.5 - ellps: WGS84 - shape: - height: 895 - width: 1001 - area_extent: - lower_left_xy: [-2504688.5428486555, -5591295.9185533915] - upper_right_xy: [2504688.5428486555, -1111475.102852225] - -mali: - description: mali - projection: - proj: merc - lat_0: 19.0 - lon_0: -1.0 - ellps: WGS84 - shape: - height: 705 - width: 816 - area_extent: - lower_left_xy: [-1224514.3987260093, 1111475.1028522244] - upper_right_xy: [1224514.3987260093, 3228918.5790461157] - -mali_eqc: - description: mali - projection: - proj: eqc - lat_0: 19.0 - lon_0: -1.0 - ellps: WGS84 - shape: - height: 667 - width: 816 - area_extent: - lower_left_xy: [-1224514.3987260093, -1001875.4171394627] - upper_right_xy: [1224514.3987260093, 1001875.4171394617] - -sve: - description: - Sweden and baltic sea - projection: - EPSG: 3006 - shape: - height: 2000 - width: 2000 - area_extent: - lower_left_xy: [-342379.698, 6032580.06] - upper_right_xy: [1423701.52, 8029648.75] - -brazil2: - description: brazil, platecarree - projection: - proj: eqc - ellps: WGS84 - shape: - height: 768 - width: 768 - area_extent: - lower_left_xy: [-7792364.355529149, -4452779.631730943] - upper_right_xy: [-2226389.8158654715, 1669792.3618991035] - units: m - -sudeste: - description: sudeste, platecarree - projection: - proj: eqc - ellps: WGS84 - shape: - height: 959 - width: 959 - area_extent: - lower_left_xy: [-6122571.993630046, -3005626.251418386] - upper_right_xy: [-4230140.650144396, -1447153.3803125564] - units: m - -SouthAmerica_flat: +SouthAmerica_eqc_5.2km: + old_name: SouthAmerica_flat description: South America flat projection: proj: eqc @@ -865,7 +792,8 @@ SouthAmerica_flat: upper_right_xy: [-556597.4539663679, 1535833.8895192828] units: m -south_america: +SouthAmerica_eqc_6.8km: + old_name: south_america description: south_america, platecarree projection: proj: eqc @@ -878,163 +806,8 @@ south_america: upper_right_xy: [-556597.4539663679, 1335833.8895192828] units: m -brazil: - description: brazil, platecarree - projection: - proj: eqc - ellps: WGS84 - shape: - height: 768 - width: 768 - area_extent: - lower_left_xy: [-8348961.809495518, -3896182.1777645745] - upper_right_xy: [-3784862.6869713017, 1001875.4171394621] - units: m - -worldeqc3km70: - description: World in 3km, platecarree - projection: - proj: eqc - ellps: WGS84 - shape: - height: 4096 - width: 8192 - area_extent: - lower_left_xy: [-20037508.3428, -7792364.355533333] - upper_right_xy: [20037508.3428, 7792364.355533333] - units: m - -worldeqc30km70: - description: World in 3km, platecarree - projection: - proj: eqc - ellps: WGS84 - shape: - height: 410 - width: 819 - area_extent: - lower_left_xy: [-20037508.3428, -7792364.355533333] - upper_right_xy: [20037508.3428, 7792364.355533333] - units: m - -worldeqc3km73: - description: World in 3km, platecarree - projection: - proj: eqc - ellps: WGS84 - shape: - height: 2048 - width: 4096 - area_extent: - lower_left_xy: [-20037508.3428, -8181982.573309999] - upper_right_xy: [20037508.3428, 8181982.573309999] - units: m - -worldeqc3km: - description: World in 3km, platecarree - projection: - proj: eqc - ellps: WGS84 - shape: - height: 2048 - width: 4096 - area_extent: - lower_left_xy: [-20037508.3428, -10018754.1714] - upper_right_xy: [20037508.3428, 10018754.1714] - units: m - -worldeqc30km: - description: World in 3km, platecarree - projection: - proj: eqc - ellps: WGS84 - shape: - height: 410 - width: 820 - area_extent: - lower_left_xy: [-20037508.3428, -10018754.1714] - upper_right_xy: [20037508.3428, 10018754.1714] - units: m - -libya: - description: libya area - projection: - proj: merc - lat_ts: 31.625 - lon_0: 17.875 - ellps: WGS84 - shape: - height: 1024 - width: 1280 - area_extent: - lower_left_xy: [-1921632.0902750609, 1725320.2028891125] - upper_right_xy: [1918367.9097249391, 4797320.202889113] - units: m - -phil: - description: kuwait area - projection: - proj: merc - lat_0: 10.0 - lat_ts: 10.0 - lon_0: 125.0 - ellps: WGS84 - shape: - height: 2048 - width: 4096 - area_extent: - lower_left_xy: [-2200000.0, 0.0] - upper_right_xy: [2200000.0, 2200000.0] - units: m - -phil_small: - description: kuwait area - projection: - proj: merc - lat_0: 10.0 - lat_ts: 10.0 - lon_0: 125.0 - ellps: WGS84 - shape: - height: 512 - width: 512 - area_extent: - lower_left_xy: [-600000.0, 0.0] - upper_right_xy: [1600000.0, 2200000.0] - units: m - -kuwait: - description: kuwait area - projection: - proj: merc - lat_ts: 30.0 - lon_0: 44.75 - ellps: WGS84 - shape: - height: 512 - width: 512 - area_extent: - lower_left_xy: [-1280000.0, 1820000.0] - upper_right_xy: [1280000.0, 4380000.0] - units: m - -afghanistan: - description: Afghanistan - projection: - proj: merc - lat_ts: 35.0 - a: 6370997.0 - b: 6370997.0 - lon_0: 67.5 - lat_0: 35.0 - shape: - height: 1600 - width: 1600 - area_extent: - lower_left_xy: [-1600000.0, 1600000.0] - upper_right_xy: [1600000.0, 4800000.0] - -maspalomas: +maspalomas_merc_1km: + old_name: maspalomas description: Western Africa and Canary Islands projection: proj: merc @@ -1047,246 +820,8 @@ maspalomas: lower_left_xy: [-1200000.0, 2900000.0] upper_right_xy: [900000.0, 4000000.0] -afhorn_merc: - description: Africa horn 3km resolution - projection: - proj: merc - ellps: bessel - lon_0: 50.0 - shape: - height: 1622 - width: 1622 - area_extent: - lower_left_xy: [-2432000.0, -1130348.139543] - upper_right_xy: [2432000.0, 3733651.860457] - -spain: - description: Spain - projection: - proj: stere - ellps: bessel - lat_0: 40.0 - lon_0: -3.0 - lat_ts: 40.0 - a: 6378144.0 - b: 6356759.0 - shape: - height: 2048 - width: 2048 - area_extent: - lower_left_xy: [-500000.0, -500000.0] - upper_right_xy: [500000.0, 500000.0] - -germ: - description: Germany - projection: - proj: stere - ellps: bessel - lat_0: 90.0 - lon_0: 5.0 - lat_ts: 50.0 - a: 6378144.0 - b: 6356759.0 - shape: - height: 1024 - width: 1024 - area_extent: - lower_left_xy: [-155100.436345, -4441495.37946] - upper_right_xy: [868899.563655, -3417495.37946] - -germ2: - description: Germany - projection: - proj: stere - ellps: bessel - lat_0: 90.0 - lon_0: 5.0 - lat_ts: 50.0 - a: 6378144.0 - b: 6356759.0 - shape: - height: 1024 - width: 1280 - area_extent: - lower_left_xy: [-165100.436345, -4441495.37946] - upper_right_xy: [878899.563655, -3417495.37946] - -euro4: - description: Euro 4km area - Europe - projection: - proj: stere - ellps: bessel - lat_0: 90.0 - lon_0: 14.0 - lat_ts: 60.0 - shape: - height: 1024 - width: 1024 - area_extent: - lower_left_xy: [-2717181.7304994687, -5571048.14031214] - upper_right_xy: [1378818.2695005313, -1475048.1403121399] - -euro1: - description: Euro 4km area - Europe - projection: - proj: stere - ellps: bessel - lat_0: 90.0 - lon_0: 14.0 - lat_ts: 60.0 - shape: - height: 4096 - width: 4096 - area_extent: - lower_left_xy: [-2717181.7304994687, -5571048.14031214] - upper_right_xy: [1378818.2695005313, -1475048.1403121399] - -scan: - description: Scandinavia - projection: - proj: stere - ellps: bessel - lat_0: 90.0 - lon_0: 14.0 - lat_ts: 60.0 - shape: - height: 512 - width: 512 - area_extent: - lower_left_xy: [-1268854.126638295, -4150234.8425892727] - upper_right_xy: [779145.8733617051, -2102234.8425892727] - -scan2: - description: Scandinavia - 2km area - projection: - proj: stere - ellps: bessel - lat_0: 90.0 - lon_0: 14.0 - lat_ts: 60.0 - shape: - height: 1024 - width: 1024 - area_extent: - lower_left_xy: [-1268854.126638295, -4150234.8425892727] - upper_right_xy: [779145.8733617051, -2102234.8425892727] - -scan1: - description: Scandinavia - 1km area - projection: - proj: stere - ellps: bessel - lat_0: 90.0 - lon_0: 14.0 - lat_ts: 60.0 - shape: - height: 2088 - width: 2048 - area_extent: - lower_left_xy: [-1268854.126638295, -4150234.8425892727] - upper_right_xy: [779145.8733617051, -2062234.8425892727] - -scan500m: - description: Scandinavia - 500m area - projection: - proj: stere - ellps: bessel - lat_0: 90.0 - lon_0: 14.0 - lat_ts: 60.0 - shape: - height: 4176 - width: 4096 - area_extent: - lower_left_xy: [-1268854.126638295, -4150234.8425892727] - upper_right_xy: [779145.8733617051, -2062234.8425892727] - -mesanX: - description: Mesan-X rotated lon/lat 1.8km - projection: - proj: ob_tran - o_proj: eqc - o_lat_p: 30.0 - o_lon_p: 10.0 - lon_0: -10.0 - a: 6371000.0 - b: 6371000.0 - wktext: True - shape: - height: 1608 - width: 1476 - area_extent: - lower_left_xy: [1067435.7598983962, -1278764.890341909] - upper_right_xy: [3791765.9965939857, 1690140.6680267097] - -mesanE: - description: Europe Mesan rotated lon/lat 1.8km - projection: - proj: ob_tran - o_proj: eqc - o_lat_p: 30.0 - o_lon_p: 10.0 - lon_0: -10.0 - a: 6371000.0 - b: 6371000.0 - wktext: True - shape: - height: 6294 - width: 5093 - area_extent: - lower_left_xy: [289083.0005619671, -2957836.6467769896] - upper_right_xy: [5381881.121371055, 3335826.68502126] - -baws: - description: BAWS - projection: - proj: aea - ellps: bessel - lon_0: 14.0 - lat_1: 60.0 - lat_2: 60.0 - shape: - height: 1400 - width: 1400 - area_extent: - lower_left_xy: [-475617.0, 5324430.0] - upper_right_xy: [924383.0, 6724430.0] - -eurotv: - description: Europe TV - 6.2x5.0km - projection: - proj: stere - ellps: bessel - lat_0: 90.0 - lon_0: 14.0 - lat_ts: 60.0 - a: 6378144.0 - b: 6356759.0 - shape: - height: 1024 - width: 1024 - area_extent: - lower_left_xy: [-3503748.8201907813, -6589593.134058789] - upper_right_xy: [2842567.6359087573, -1499856.5846593212] - -eurotv4n: - description: Europe TV4 - 4.1x4.1km - projection: - proj: stere - ellps: bessel - lat_0: 90.0 - lon_0: 14.0 - lat_ts: 60.0 - a: 6378144.0 - b: 6356759.0 - shape: - height: 1152 - width: 2048 - area_extent: - lower_left_xy: [-5103428.678666952, -6772478.60053407] - upper_right_xy: [3293371.321333048, -2049278.6005340703] - -eurol: +eurol_stere_3km: + old_name: eurol description: Euro 3.0km area - Europe projection: proj: stere @@ -1301,7 +836,8 @@ eurol: lower_left_xy: [-3780000.0, -7644000.0] upper_right_xy: [3900000.0, -1500000.0] -eurol1: +eurol1_stere_0.8km: + old_name: eurol1 description: Euro 3.0km area - Europe projection: proj: stere @@ -1316,22 +852,8 @@ eurol1: lower_left_xy: [-3780000.0, -7644000.0] upper_right_xy: [3900000.0, -1500000.0] -scanl: - description: Scandinavia - Large - projection: - proj: stere - ellps: WGS84 - lat_0: 90.0 - lon_0: 0.0 - lat_ts: 60.0 - shape: - height: 2900 - width: 2900 - area_extent: - lower_left_xy: [-900000.0, -4500000.0] - upper_right_xy: [2000000.0, -1600000.0] - -euron1: +euron1_stere_1km: + old_name: euron1 description: Northern Europe - 1km projection: proj: stere @@ -1346,240 +868,8 @@ euron1: lower_left_xy: [-1000000.0, -4500000.0] upper_right_xy: [2072000.0, -1428000.0] -euron0250: - description: Northern Europe - 1km - projection: - proj: stere - ellps: WGS84 - lat_0: 90.0 - lon_0: 0.0 - lat_ts: 60.0 - shape: - height: 12288 - width: 12288 - area_extent: - lower_left_xy: [-1000000.0, -4500000.0] - upper_right_xy: [2072000.0, -1428000.0] - -nsea: - description: North Baltic Sea - projection: - proj: merc - ellps: WGS84 - lat_ts: 0.0 - lon_0: 15.0 - shape: - height: 1024 - width: 1024 - area_extent: - lower_left_xy: [-322789.07638000086, 7784901.986829306] - upper_right_xy: [1725210.923619999, 9832901.986829307] - -ssea: - description: South Baltic Sea - projection: - proj: merc - ellps: WGS84 - lat_ts: 0.0 - lon_0: 15.0 - shape: - height: 1024 - width: 1024 - area_extent: - lower_left_xy: [-801407.3620468981, 7003690.663643802] - upper_right_xy: [1246592.637953102, 9051690.663643802] - -nsea250: - description: North Baltic Sea - projection: - proj: merc - ellps: WGS84 - lat_ts: 0.0 - lon_0: 15.0 - shape: - height: 4096 - width: 4096 - area_extent: - lower_left_xy: [-322789.07638000086, 7784901.986829306] - upper_right_xy: [1725210.923619999, 9832901.986829307] - -ssea250: - description: South Baltic Sea - projection: - proj: merc - ellps: WGS84 - lat_ts: 0.0 - lon_0: 15.0 - shape: - height: 4096 - width: 4096 - area_extent: - lower_left_xy: [-801407.3620468981, 7003690.663643802] - upper_right_xy: [1246592.637953102, 9051690.663643802] - -bsea250: - description: South Baltic Sea - projection: - proj: merc - ellps: WGS84 - lat_ts: 60.0 - lon_0: 0.0 - shape: - height: 5632 - width: 4752 - area_extent: - lower_left_xy: [512000.0, 3525000.0] - upper_right_xy: [1700000.0, 4933000.0] - -test250: - description: South Baltic Sea - projection: - proj: merc - ellps: WGS84 - lat_ts: 60.0 - lon_0: 0.0 - shape: - height: 5632 - width: 4752 - area_extent: - lower_left_xy: [512000.0, 3525000.0] - upper_right_xy: [1700000.0, 4933000.0] - -bsea1000: - description: South Baltic Sea - projection: - proj: merc - ellps: WGS84 - lat_ts: 60.0 - lon_0: 0.0 - shape: - height: 1408 - width: 1188 - area_extent: - lower_left_xy: [512000.0, 3525000.0] - upper_right_xy: [1700000.0, 4933000.0] - -euro: - description: Euro area - Europe - projection: - proj: stere - ellps: bessel - lat_0: 90.0 - lon_0: 14.0 - lat_ts: 60.0 - shape: - height: 512 - width: 512 - area_extent: - lower_left_xy: [-2717181.7304994687, -5571048.14031214] - upper_right_xy: [1378818.2695005313, -1475048.1403121399] - -baltrad_lambert: - description: Baltrad Lambert - projection: - proj: laea - a: 6370997.0 - b: 6370997.0 - lon_0: 20.0 - lat_0: 60.0 - shape: - height: 1195 - width: 815 - area_extent: - lower_left_xy: [-994211.85388, -1291605.15396] - upper_right_xy: [635788.14612, 1098394.84604] - -eport: - description: eport - projection: - proj: stere - lat_0: 90.0 - lon_0: 0.0 - ellps: WGS84 - shape: - height: 1792 - width: 1792 - area_extent: - lower_left_xy: [-5283418.625834752, -5283418.625834753] - upper_right_xy: [5283418.625834753, 5283418.625834752] - units: m - -eport1: - description: eport - projection: - proj: stere - lat_0: 90.0 - lon_0: 0.0 - ellps: WGS84 - shape: - height: 10567 - width: 10567 - area_extent: - lower_left_xy: [-5283418.625834752, -5283418.625834753] - upper_right_xy: [5283418.625834753, 5283418.625834752] - units: m - -eport10: - description: eport reduced resolution - projection: - proj: stere - lat_0: 90.0 - lon_0: 0.0 - ellps: WGS84 - shape: - height: 1057 - width: 1057 - area_extent: - lower_left_xy: [-5283418.625834752, -5283418.625834753] - upper_right_xy: [5283418.625834753, 5283418.625834752] - units: m - -eport4: - description: eport reduced resolution - projection: - proj: stere - lat_0: 90.0 - lon_0: 0.0 - ellps: WGS84 - shape: - height: 2642 - width: 2642 - area_extent: - lower_left_xy: [-5283418.625834752, -5283418.625834753] - upper_right_xy: [5283418.625834753, 5283418.625834752] - units: m - -eport2: - description: eport reduced resolution - projection: - proj: stere - lat_0: 90.0 - lon_0: 0.0 - ellps: WGS84 - shape: - height: 5285 - width: 5285 - area_extent: - lower_left_xy: [-5283418.625834752, -5283418.625834753] - upper_right_xy: [5283418.625834753, 5283418.625834752] - units: m - -npp_sample_m: - description: North America - NPP sample data - M-bands - projection: - proj: laea - a: 6370997.0 - b: 6370997.0 - lat_0: 60.0 - lon_0: -120.0 - shape: - height: 1500 - width: 1500 - area_extent: - lower_left_xy: [-1700000.0, -1400000.0] - upper_right_xy: [1100000.0, 1400000.0] - -arctic_europe_1km: +ArcticEurope_laea_1km: + old_name: arctic_europe_1km description: Arctic and Europe projection: proj: laea @@ -1594,7 +884,8 @@ arctic_europe_1km: lower_left_xy: [-3100000.0, -7100000.0] upper_right_xy: [6000000.0, 2000000.0] -arctic_europe_9km: +ArcticEurope_laea_9km: + old_name: arctic_europe_9km description: Arctic and Europe projection: proj: laea @@ -1609,56 +900,8 @@ arctic_europe_9km: lower_left_xy: [-3100000.0, -7100000.0] upper_right_xy: [6000000.0, 2000000.0] -sswe: - description: Southern Sweden - projection: - proj: stere - ellps: bessel - a: 6378144.0 - b: 6356759.0 - lat_0: 90.0 - lon_0: 14.0 - lat_ts: 60.0 - shape: - height: 1024 - width: 1024 - area_extent: - lower_left_xy: [-400884.23045, -3946631.71387] - upper_right_xy: [623115.76955, -2922631.71387] - -nswe: - description: Northern Sweden - projection: - proj: stere - ellps: bessel - a: 6378144.0 - b: 6356759.0 - lat_0: 90.0 - lon_0: 14.0 - lat_ts: 60.0 - shape: - height: 1024 - width: 1024 - area_extent: - lower_left_xy: [-392288.010506, -3105279.35252] - upper_right_xy: [631711.989494, -2081279.35252] - -sval: - description: Svalbard - projection: - proj: stere - ellps: WGS84 - lat_0: 90.0 - lon_0: 20.0 - lat_ts: 75.0 - shape: - height: 1024 - width: 1024 - area_extent: - lower_left_xy: [-287554.9489620461, -1630805.15418955] - upper_right_xy: [736445.0510379539, -606805.1541895501] - -ease_sh: +AntarcticEaseSH_laea_25km: + old_name: ease_sh description: Antarctic EASE grid projection: proj: laea @@ -1674,7 +917,8 @@ ease_sh: upper_right_xy: [5326849.0625, 5326849.0625] units: m -ease_nh: +ArcticEaseNH_laea_25km: + old_name: ease_nh description: Arctic EASE grid projection: proj: laea @@ -1690,7 +934,8 @@ ease_nh: upper_right_xy: [5326849.0625, 5326849.0625] units: m -barents_sea: +BarentsSea_stere_1km: + old_name: barents_sea description: Barents and Greenland seas projection: proj: stere @@ -1705,7 +950,8 @@ barents_sea: lower_left_xy: [-1600000.0, -2000000.0] upper_right_xy: [1400000.0, -300000.0] -antarctica: +antarctica_laea_1km: + old_name: antarctica description: Antarctica - 1km projection: proj: laea @@ -1720,8 +966,9 @@ antarctica: lower_left_xy: [-2858899.2042342643, -2858899.204234264] upper_right_xy: [2858899.204234264, 2858899.2042342643] -arctica: - description: arctica - 1km +arctica_laea_0.5km: + old_name: arctica + description: Arctica with 0.5km resolution projection: proj: laea a: 6370997.0 @@ -1735,7 +982,8 @@ arctica: lower_left_xy: [-1458899.2042342643, -1458899.2042342639] upper_right_xy: [1458899.2042342639, 1458899.2042342643] -euroasia: +euroasia_laea_1km: + old_name: euroasia description: Euroasia - Global 1km USGS Landuse database projection: proj: laea @@ -1750,8 +998,9 @@ euroasia: lower_left_xy: [-3000000.0, -4999000.0] upper_right_xy: [9999000.0, 8000000.0] -euroasia_10km: - description: Euroasia - Global 1km USGS Landuse database +euroasia_laea_10km: + old_name: euroasia_10km + description: Euroasia - Global 10km USGS Landuse database projection: proj: laea a: 6370997.0 @@ -1765,10 +1014,9 @@ euroasia_10km: lower_left_xy: [-3000000.0, -4999000.0] upper_right_xy: [9999000.0, 8000000.0] -euroasia_asia: - description: - Euroasia - optimised for Asia - - Global 1km USGS Landuse database +euroasia_asia_laea_1km: + old_name: euroasia_asia + description: Euroasia - optimised for Asia - Global 1km resolution USGS Landuse database projection: proj: laea a: 6370997.0 @@ -1782,8 +1030,9 @@ euroasia_asia: lower_left_xy: [-8000000.0, -5499000.0] upper_right_xy: [4999000.0, 6500000.0] -euroasia_asia_10km: - description: Euroasia - optimised for Asia - Global 1km USGS Landuse database +euroasia_asia_laea_10km: + old_name: euroasia_asia_10km + description: Euroasia - optimised for Asia - Global 10km resolution USGS Landuse database projection: proj: laea a: 6370997.0 @@ -1797,8 +1046,9 @@ euroasia_asia_10km: lower_left_xy: [-8000000.0, -5499000.0] upper_right_xy: [4999000.0, 6500000.0] -australia_pacific: - description: Austalia/Pacific - Global 1km USGS Landuse database +australia_pacific_laea_1km: + old_name: australia_pacific + description: Austalia/Pacific - Global 1km resolution USGS Landuse database projection: proj: laea a: 6370997.0 @@ -1812,8 +1062,9 @@ australia_pacific: lower_left_xy: [-5000000.0, -3944890.0] upper_right_xy: [4299000.0, 4054110.0] -australia_pacific_10km: - description: Austalia/Pacific - Global 1km USGS Landuse database +australia_pacific_laea_10km: + old_name: australia_pacific_10km + description: Austalia/Pacific - Global 10km resolution USGS Landuse database projection: proj: laea a: 6370997.0 @@ -1827,8 +1078,9 @@ australia_pacific_10km: lower_left_xy: [-5000000.0, -3944890.0] upper_right_xy: [4299000.0, 4054110.0] -africa: - description: Africa - Global 1km USGS Landuse database +africa_laea_1km: + old_name: africa + description: Africa - Global 1km resolution USGS Landuse database projection: proj: laea a: 6370997.0 @@ -1842,8 +1094,9 @@ africa: lower_left_xy: [-4458000.0, -4795000.0] upper_right_xy: [3891000.0, 4480000.0] -africa_10km: - description: Africa - Global 1km USGS Landuse database +africa_laea_10km: + old_name: africa_10km + description: Africa - Global 10km resolution USGS Landuse database projection: proj: laea a: 6370997.0 @@ -1857,8 +1110,9 @@ africa_10km: lower_left_xy: [-4458000.0, -4795000.0] upper_right_xy: [3891000.0, 4480000.0] -southamerica_laea: - description: South America - Global 1km USGS Landuse database +southamerica_laea_1km: + old_name: southamerica_laea + description: South America - Global 1km resolution USGS Landuse database projection: proj: laea a: 6370997.0 @@ -1872,8 +1126,9 @@ southamerica_laea: lower_left_xy: [-3000000.0, -4899000.0] upper_right_xy: [2999000.0, 3100000.0] -southamerica_10km: - description: South America - Global 1km USGS Landuse database +southamerica_laea_10km: + old_name: southamerica_1km + description: South America - Global 1km resolution USGS Landuse database projection: proj: laea a: 6370997.0 @@ -1887,8 +1142,9 @@ southamerica_10km: lower_left_xy: [-3000000.0, -4899000.0] upper_right_xy: [2999000.0, 3100000.0] -northamerica: - description: North America - Global 1km USGS Landuse database +northamerica_laea_1km: + old_name: northamerica + description: North America - Global 1km resolution USGS Landuse database projection: proj: laea a: 6370997.0 @@ -1902,8 +1158,9 @@ northamerica: lower_left_xy: [-4487000.0, -4515000.0] upper_right_xy: [4735000.0, 4480000.0] -northamerica_10km: - description: North America - Global 1km USGS Landuse database +northamerica_laea_10km: + old_name: northamerica_10km + description: North America - Global 10km resolution USGS Landuse database projection: proj: laea a: 6370997.0 @@ -1917,108 +1174,9 @@ northamerica_10km: lower_left_xy: [-4487000.0, -4515000.0] upper_right_xy: [4735000.0, 4480000.0] -romania: - description: Romania - 3km - projection: - proj: stere - ellps: WGS84 - lat_0: 50.0 - lon_0: 15.0 - lat_ts: 60.0 - shape: - height: 855 - width: 1509 - area_extent: - lower_left_xy: [-2226837.662574135, -1684219.2829063328] - upper_right_xy: [2299196.337425865, 881436.7170936672] - -stere_asia_test: - description: stere - projection: - proj: stere - lon_0: 121.5 - lat_0: 25.0 - shape: - height: 7162 - width: 7200 - area_extent: - lower_left_xy: [-3589072.840299738, -3568228.07278016] - upper_right_xy: [3611014.256314698, 3594111.7022882444] - -bocheng_test: - description: stere - projection: - proj: stere - lon_0: 121.5 - lat_0: 25.0 - shape: - height: 1989 - width: 2000 - area_extent: - lower_left_xy: [-3589072.840299738, -3568228.07278016] - upper_right_xy: [3611014.256314698, 3594111.7022882444] - -nsper_swe: - description: nsper_swe - projection: - proj: nsper - lon_0: 16.0 - lat_0: 58.0 - h: 360000000.0 - wktext: True - shape: - height: 1024 - width: 1024 - area_extent: - lower_left_xy: [-5000000.0, -5000000.0] - upper_right_xy: [5000000.0, 5000000.0] - -new_bsea250: - description: new_bsea250 - projection: - proj: stere - lat_0: 59.5 - lon_0: 19.5 - ellps: WGS84 - shape: - height: 5750 - width: 5104 - area_extent: - lower_left_xy: [-638072.2772287376, -680339.8397175331] - upper_right_xy: [638072.277228737, 757253.9342263378] - -scanice: - description: Scandinavia and Iceland - projection: - proj: laea - a: 6370997.0 - b: 6370997.0 - lon_0: 0.0 - lat_0: 64.0 - shape: - height: 1024 - width: 1280 - area_extent: - lower_left_xy: [-1920000.0, -1536000.0] - upper_right_xy: [1920000.0, 1536000.0] - -baws250: - description: BAWS, 250m resolution - projection: - proj: aea - ellps: WGS84 - lon_0: 14.0 - lat_1: 60.0 - lat_2: 60.0 - shape: - height: 5600 - width: 5600 - area_extent: - lower_left_xy: [-475617.0, 5324430.0] - upper_right_xy: [924383.0, 6724430.0] - -moll: - description: moll +global_moll_10km: + old_name: moll + description: Globe in Mollweide projection projection: proj: moll lat_0: 0.0 @@ -2031,8 +1189,9 @@ moll: lower_left_xy: [-18040095.696147293, -9020047.848073646] upper_right_xy: [18040095.696147293, 9020047.848073646] -robinson: - description: robinson +greenland_robin_1km: + old_name: robinson + description: Greenland in Robinson projection projection: proj: robin lat_0: 70.0 @@ -2080,51 +1239,6 @@ met09globe: # obsolete platform number lower_left_xy: [-5432229.931711678, -5429229.528545862] upper_right_xy: [5429229.528545862, 5432229.931711678] -met09globeFull: # superseded by msg_seviri_fes_3km - description: Full disk MSG image 0 degrees - projection: - proj: geos - lon_0: 0.0 - a: 6378169.0 - b: 6356583.8 - h: 35785831.0 - shape: - height: 3712 - width: 3712 - area_extent: - lower_left_xy: [-5570248.477339261, -5567248.074173444] - upper_right_xy: [5567248.074173444, 5570248.477339261] - -seviri_0deg: # superseded by msg_seviri_fes_3km - description: Full disk MSG image 0 degrees - projection: - proj: geos - lon_0: 0.0 - a: 6378169.0 - b: 6356583.8 - h: 35785831.0 - shape: - height: 3712 - width: 3712 - area_extent: - lower_left_xy: [-5570248.686685662, -5567248.28340708] - upper_right_xy: [5567248.28340708, 5570248.686685662] - -seviri_iodc: # superseded by msg_seviri_iodc_3km - description: Full disk MSG image 41.5 degrees - projection: - proj: geos - lon_0: 41.5 - a: 6378169.0 - b: 6356583.8 - h: 35785831.0 - shape: - height: 3712 - width: 3712 - area_extent: - lower_left_xy: [-5570248.686685662, -5567248.28340708] - upper_right_xy: [5567248.28340708, 5570248.686685662] - msg_resample_area: description: Full disk MSG image 20.75 degrees projection: @@ -2141,7 +1255,8 @@ msg_resample_area: upper_right_xy: [5567248.074173444, 5570248.477339261] # Global lat / lon gridded areas -EPSG_4326_36000x18000: +EPSG_4326_0.01deg: + old_name: EPSG_4326_36000x18000 description: Global equal latitude/longitude grid at 0.01 degree resolution projection: EPSG:4326 @@ -2152,7 +1267,8 @@ EPSG_4326_36000x18000: lower_left_xy: [-180.0, -90.0] upper_right_xy: [180.0, 90.0] -EPSG_4326_7200x3600: +EPSG_4326_0.05deg: + old_name: EPSG_4326_7200x3600 description: Global equal latitude/longitude grid at 0.05 degree resolution projection: EPSG:4326 @@ -2163,7 +1279,8 @@ EPSG_4326_7200x3600: lower_left_xy: [-180.0, -90.0] upper_right_xy: [180.0, 90.0] -EPSG_4326_3600x1800: +EPSG_4326_0.1deg: + old_name: EPSG_4326_3600x1800 description: Global equal latitude/longitude grid at 0.1 degree resolution projection: EPSG:4326 @@ -2174,7 +1291,8 @@ EPSG_4326_3600x1800: lower_left_xy: [-180.0, -90.0] upper_right_xy: [180.0, 90.0] -EPSG_4326_1440x720: +EPSG_4326_0.25deg: + old_name: EPSG_4326_1440x720 description: Global equal latitude/longitude grid at 0.25 degree resolution projection: EPSG:4326 @@ -2185,7 +1303,8 @@ EPSG_4326_1440x720: lower_left_xy: [-180.0, -90.0] upper_right_xy: [180.0, 90.0] -EPSG_4326_720x360: +EPSG_4326_0.5deg: + old_name: EPSG_4326_720x360 description: Global equal latitude/longitude grid at 0.5 degree resolution projection: EPSG:4326 @@ -2196,7 +1315,8 @@ EPSG_4326_720x360: lower_left_xy: [-180.0, -90.0] upper_right_xy: [180.0, 90.0] -EPSG_4326_360x180: +EPSG_4326_1.0deg: + old_name: EPSG_4326_360x180 description: Global equal latitude/longitude grid at 1 degree resolution projection: EPSG:4326