goes
GOES Satellite Reader. Deprecated wrapper — use monetio.load('goes', ...) instead.
The add_goes_bands utility function is not deprecated and remains
available here.
add_goes_bands(dset, blue_band='blue', red_band='red', veggie_band='veggie')
Makes true color image from GOES-R satellite. Must have blue, red, veggie bands.
Note: This function modifies the input Dataset in-place by adding the 'tci' variable.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
dset
|
Dataset
|
needs to have at least blue, red, veggie bands as data variables. |
required |
blue_band
|
str
|
Name of the blue band variable in the dataset. |
'blue'
|
red_band
|
str
|
Name of the red band variable in the dataset. |
'red'
|
veggie_band
|
str
|
Name of the veggie band variable in the dataset. |
'veggie'
|
Returns:
| Type | Description |
|---|---|
Dataset
|
the original dataset with the true color image array added. |
Source code in monetio/sat/goes.py
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | |
open_dataset(date=None, filename=None, satellite='16', product=None, **kwargs)
Open GOES data from Amazon S3 or a local file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
date
|
str or datetime - like
|
Date to retrieve from S3. |
None
|
filename
|
str
|
Local file path. If provided, |
None
|
satellite
|
str
|
Satellite identifier (e.g. '16', '17', '18'). |
'16'
|
product
|
str
|
GOES product (e.g. 'ABI-L2-AODF'). |
None
|
**kwargs
|
dict
|
Additional arguments forwarded to |
{}
|
Returns:
| Type | Description |
|---|---|
Dataset
|
|
Source code in monetio/sat/goes.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | |