Skip to content

Commit

Permalink
Add partial support for lambert_azimuthal_equal_area
Browse files Browse the repository at this point in the history
  • Loading branch information
alexamici committed May 22, 2020
1 parent d62705e commit 9c97f2a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions cfgrib/dataset.py
Expand Up @@ -335,14 +335,15 @@ def __getitem__(self, item):
return array


GRID_TYPES_DIMENSION_COORDS = ['regular_ll', 'regular_gg']
GRID_TYPES_2D_NON_DIMENSION_COORDS = [
GRID_TYPES_DIMENSION_COORDS = {'regular_ll', 'regular_gg'}
GRID_TYPES_2D_NON_DIMENSION_COORDS = {
'rotated_ll',
'rotated_gg',
'lambert',
'lambert_azimuthal_equal_area',
'albers',
'polar_stereographic',
]
}


def build_geography_coordinates(
Expand Down

0 comments on commit 9c97f2a

Please sign in to comment.