You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Indexing improvements for ABI projection, navigation, and imagery
- Enable projections for indexed subsets of the ABI Fixed Grid Format (FGF), including Cloud Optimized GeoTIFF (COG), IREMIS, and WaterMask outputs
- ABINavigation and ABINaturalRGB objects can now be constrained to an index or continuous slice on the ABI FGF
- Fix possible division by zero exception in NCInterface
- Fix bug where resample2cog() could not overwrite an existing file
Loads in UW CIMSS' Baseline Fit Infrared Emissivity Database a.k.a IREMIS (Download and info: https://cimss.ssec.wisc.edu/iremis/)
99
-
and projects to the ABI fixed grid. Requres IREMIS netCDFs to be present in a directory set by the `iremis_dir` argument or
98
+
and projects to the ABI Fixed Grid. Requres IREMIS netCDFs to be present in a directory set by the `iremis_dir` argument or
100
99
by the HEREGOES_ENV_IREMIS_DIR environmental variable.
101
100
102
101
Provides a linear interpolation of land surface emissivity for:
@@ -105,16 +104,21 @@ class IREMIS(AncillaryDataset):
105
104
106
105
Arguments:
107
106
- `abi_data`: The ABIObject formed on a GOES-R ABI L1b Radiance netCDF file as returned by `heregoes.load()`
107
+
- `index`: Optionally constrains the IREMIS dataset to an index or continuous slice on the ABI Fixed Grid matching the resolution of the provided `abi_data` object
108
108
- `iremis_dir`: Location of IREMIS netCDF files. Defaults to the directory set by the HEREGOES_ENV_IREMIS_DIR environmental variable
Loads in Global Self-consistent, Hierarchical, High-resolution Shorelines (GSHHS a.k.a GSHHG) (http://www.soest.hawaii.edu/pwessel/gshhg/)
201
-
and projects to the ABI fixed grid. Natural Earth rivers (https://www.naturalearthdata.com/downloads/10m-physical-vectors/10m-rivers-lake-centerlines/)
205
+
and projects to the ABI Fixed Grid. Natural Earth rivers (https://www.naturalearthdata.com/downloads/10m-physical-vectors/10m-rivers-lake-centerlines/)
202
206
are optionally added on top of GSHHS when `rivers` is `True`. Both the GSHHS and Natural Earth datasets are automatically downloaded by Cartopy.
203
207
204
208
Provides a boolean land/water mask in `data['water_mask']` where water is `False` and land is `True`.
205
209
206
210
Arguments:
207
211
- `abi_data`: The ABIObject formed on a GOES-R ABI L1b Radiance netCDF file as returned by `heregoes.load()`
212
+
- `index`: Optionally constrains the GSHHS dataset to an index or continuous slice on the ABI Fixed Grid matching the resolution of the provided `abi_data` object
208
213
- `gshhs_scale`: 'auto', 'coarse', 'low', 'intermediate', 'high, or 'full' (https://scitools.org.uk/cartopy/docs/latest/reference/generated/cartopy.feature.GSHHSFeature.html)
0 commit comments