diff --git a/_images/173c4fc217a96494fae376d677a80324ddd2f82493b6981a62fee60268a51234.png b/_images/173c4fc217a96494fae376d677a80324ddd2f82493b6981a62fee60268a51234.png new file mode 100644 index 000000000..7eabef761 Binary files /dev/null and b/_images/173c4fc217a96494fae376d677a80324ddd2f82493b6981a62fee60268a51234.png differ diff --git a/_images/18ba9dd8bd36ae62410a7738ab98b07f97acf8512e58382e62ab1ddfd0a21e83.png b/_images/18ba9dd8bd36ae62410a7738ab98b07f97acf8512e58382e62ab1ddfd0a21e83.png new file mode 100644 index 000000000..3ca6bb296 Binary files /dev/null and b/_images/18ba9dd8bd36ae62410a7738ab98b07f97acf8512e58382e62ab1ddfd0a21e83.png differ diff --git a/_images/23ac4d913a7986f57684b769857cd48d908cd3b09da379eb377187cedfa1ca51.png b/_images/23ac4d913a7986f57684b769857cd48d908cd3b09da379eb377187cedfa1ca51.png new file mode 100644 index 000000000..fa20ac1f9 Binary files /dev/null and b/_images/23ac4d913a7986f57684b769857cd48d908cd3b09da379eb377187cedfa1ca51.png differ diff --git a/_images/2e097a1220dd847e03b127655b57bb4b24df8c5a91d2c4d49fc612b67343d4b2.png b/_images/2e097a1220dd847e03b127655b57bb4b24df8c5a91d2c4d49fc612b67343d4b2.png new file mode 100644 index 000000000..2e7a39f11 Binary files /dev/null and b/_images/2e097a1220dd847e03b127655b57bb4b24df8c5a91d2c4d49fc612b67343d4b2.png differ diff --git a/_images/4c2ecf4359fe41ddf2242e899989af5699436aa7d769b08d475e9e3b9bbca908.png b/_images/4c2ecf4359fe41ddf2242e899989af5699436aa7d769b08d475e9e3b9bbca908.png new file mode 100644 index 000000000..ed5ddf422 Binary files /dev/null and b/_images/4c2ecf4359fe41ddf2242e899989af5699436aa7d769b08d475e9e3b9bbca908.png differ diff --git a/_images/519dca2afcc68a2c2b79abdd21698f4595257df05cfa6790da5ff8ffb589e1bd.png b/_images/519dca2afcc68a2c2b79abdd21698f4595257df05cfa6790da5ff8ffb589e1bd.png new file mode 100644 index 000000000..1eb522dea Binary files /dev/null and b/_images/519dca2afcc68a2c2b79abdd21698f4595257df05cfa6790da5ff8ffb589e1bd.png differ diff --git a/_images/8cd37cfc537db0e6313f3436c2c9e631e2b919794bbce1e12f9591156929c923.png b/_images/8cd37cfc537db0e6313f3436c2c9e631e2b919794bbce1e12f9591156929c923.png new file mode 100644 index 000000000..ad8bb70f7 Binary files /dev/null and b/_images/8cd37cfc537db0e6313f3436c2c9e631e2b919794bbce1e12f9591156929c923.png differ diff --git a/_images/b305b17d6d00d306709b93ceb6ebe645cb4d791f6ddbcbc511c5e77b585eacc3.png b/_images/b305b17d6d00d306709b93ceb6ebe645cb4d791f6ddbcbc511c5e77b585eacc3.png new file mode 100644 index 000000000..f27e4e6c9 Binary files /dev/null and b/_images/b305b17d6d00d306709b93ceb6ebe645cb4d791f6ddbcbc511c5e77b585eacc3.png differ diff --git a/_images/c4f1503ee24482e1773af464267d16fbfab92c8f8b5af969b115a546e953bdc4.png b/_images/c4f1503ee24482e1773af464267d16fbfab92c8f8b5af969b115a546e953bdc4.png new file mode 100644 index 000000000..631b42153 Binary files /dev/null and b/_images/c4f1503ee24482e1773af464267d16fbfab92c8f8b5af969b115a546e953bdc4.png differ diff --git a/_images/db31591733408b63d96d6b5b36c0d54f98da4ed42110b5443f30efffbb326207.png b/_images/db31591733408b63d96d6b5b36c0d54f98da4ed42110b5443f30efffbb326207.png new file mode 100644 index 000000000..adefb7640 Binary files /dev/null and b/_images/db31591733408b63d96d6b5b36c0d54f98da4ed42110b5443f30efffbb326207.png differ diff --git a/_images/f2d3181b0cf3cf6476874d22499ed75e128bce3c1f4239c6b07d6fb16a678e6d.png b/_images/f2d3181b0cf3cf6476874d22499ed75e128bce3c1f4239c6b07d6fb16a678e6d.png new file mode 100644 index 000000000..c1f91d54e Binary files /dev/null and b/_images/f2d3181b0cf3cf6476874d22499ed75e128bce3c1f4239c6b07d6fb16a678e6d.png differ diff --git a/_sources/core/numpy/numpy-basics.ipynb b/_sources/core/numpy/numpy-basics.ipynb index 3281deb5b..b798d2136 100644 --- a/_sources/core/numpy/numpy-basics.ipynb +++ b/_sources/core/numpy/numpy-basics.ipynb @@ -700,7 +700,7 @@ "source": [ "### Slices\n", "\n", - "Slicing syntax is written as `array[start:stop[:step]]`, where **all numbers are optional**.\n", + "Slicing syntax is written as `array[start:stop:step]`. Note that **all numbers are optional**. Importantly, the **step** parameter is optional and can be omitted, in which case the slice uses a default step of 1.\n", "- defaults: \n", " - start = 0\n", " - stop = len(dim)\n", diff --git a/appendix/how-to-contribute.html b/appendix/how-to-contribute.html index e21d5e0fd..dacd8be73 100644 --- a/appendix/how-to-contribute.html +++ b/appendix/how-to-contribute.html @@ -81,7 +81,7 @@ - + @@ -832,7 +832,7 @@
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
Each section in your notebook can also contain \(\LaTeX\) equations, enabled through MathJax. In the following example, we illustrate some sample MathJax equations. (Rendering instructions, as well as detailed information about MathJax, can be found in this documentation.)
-
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
<cartopy.mpl.feature_artist.FeatureArtist at 0x7f5f6cbc0500>
+<cartopy.mpl.feature_artist.FeatureArtist at 0x7f003cb648c0>
<cartopy.mpl.feature_artist.FeatureArtist at 0x7f5f6cb68fb0>
+<cartopy.mpl.feature_artist.FeatureArtist at 0x7f004cd08ad0>
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
/tmp/ipykernel_2523/2342439358.py:1: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
+/tmp/ipykernel_2539/2342439358.py:1: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
start = datetime.utcnow().replace(hour=22, minute=0, second=0, microsecond=0)
@@ -610,7 +610,7 @@ Creating the file and dimensions
-/tmp/ipykernel_2523/2008125275.py:5: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
+/tmp/ipykernel_2539/2008125275.py:5: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
nc.history = str(datetime.utcnow()) + ' Python'
@@ -651,7 +651,7 @@ Creating the file and dimensions
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -1693,7 +1693,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
1715806495.8833458
+1716229655.9439774
time
The benchmark took 1.0002374649047852 seconds
+The benchmark took 1.0002319812774658 seconds
6167
+6172
-I am time zone naive 2024-05-15 20:54:56.921356.
-I am time zone aware 2024-05-15 20:54:56.921392+00:00.
+I am time zone naive 2024-05-20 18:27:36.981418.
+I am time zone aware 2024-05-20 18:27:36.981452+00:00.
@@ -839,8 +839,8 @@ Full time zone support with the <
I am time zone naive: 2024-05-15 20:54:56.925612.
-I am time zone aware: 2024-05-15 14:54:56.936190-06:00.
+I am time zone naive: 2024-05-20 18:27:36.985646.
+I am time zone aware: 2024-05-20 12:27:36.996878-06:00.
The UTC time is May 15, 2024, 8:54PM.
-The 'US/Mountain' time is May 15, 2024, 2:54PM.
+The UTC time is May 20, 2024, 6:27PM.
+The 'US/Mountain' time is May 20, 2024, 12:27PM.
-/tmp/ipykernel_2546/3080495102.py:1: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
+/tmp/ipykernel_2563/3080495102.py:1: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
utc = dt.datetime.utcnow().replace(tzinfo=pytz.utc)
@@ -1243,7 +1243,7 @@ Resources and References
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -1372,7 +1372,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
We can change which colormap to use by setting the keyword argument cmap = 'colormap_name'
in the plotting function call. This sets the colormap not only for the plot, but for the colorbar as well. In this case, we use the magma
colormap:
<matplotlib.colorbar.Colorbar at 0x7f4e652e9af0>
+<matplotlib.colorbar.Colorbar at 0x7f07e48a40e0>
-
+
You may be wondering why the call to fig.colorbar
uses the argument hist1[3]
. The explanation is as follows: hist1
is a tuple returned by hist2d
, and hist1[3]
contains a matplotlib.collections.QuadMesh
that points to the colormap for the first histogram. To make sure that both histograms are using the same colormap with the same range of values, vmax
is set to 0.18 for both plots. This ensures that both histograms are using colormaps that represent values from 0 (the default for histograms) to 0.18. Because the same data values are used for both plots, it doesn’t matter whether we pass in hist1[3]
or hist2[3]
to fig.colorbar
.
@@ -848,7 +848,7 @@
You’ll notice there is not a colorbar plotted by default. When constructing the colorbar, we need to specify the following:
@@ -930,7 +930,7 @@
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
Slicing syntax is written as array[start:stop[:step]]
, where all numbers are optional.
Slicing syntax is written as array[start:stop:step]
. Note that all numbers are optional. Importantly, the step parameter is optional and can be omitted, in which case the slice uses a default step of 1.
defaults:
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
array([[ 8.3, 11.6, 33.1],
- [11.6, 33.1, 18.3],
- [33.1, 18.3, 22.5],
- [18.3, 22.5, 24.5],
- [22.5, 24.5, 20.1],
- [24.5, 20.1, 20.1],
- [20.1, 20.1, 18. ],
- [20.1, 18. , 25. ]])
+array([[19.3, 18.8, 28.7],
+ [18.8, 28.7, 27.1],
+ [28.7, 27.1, 17.1],
+ [27.1, 17.1, 16.2],
+ [17.1, 16.2, 15. ],
+ [16.2, 15. , 15.1],
+ [15. , 15.1, 14. ],
+ [15.1, 14. , 19.2]])
array([[ 8.3, 11.6, 2000. ],
- [ 11.6, 2000. , 18.3],
- [2000. , 18.3, 22.5],
- [ 18.3, 22.5, 24.5],
- [ 22.5, 24.5, 20.1],
- [ 24.5, 20.1, 20.1],
- [ 20.1, 20.1, 18. ],
- [ 20.1, 18. , 25. ]])
+array([[ 19.3, 18.8, 2000. ],
+ [ 18.8, 2000. , 27.1],
+ [2000. , 27.1, 17.1],
+ [ 27.1, 17.1, 16.2],
+ [ 17.1, 16.2, 15. ],
+ [ 16.2, 15. , 15.1],
+ [ 15. , 15.1, 14. ],
+ [ 15.1, 14. , 19.2]])
array([[6, 6, 7, ..., 8, 7, 6],
- [6, 6, 6, ..., 7, 7, 7],
- [7, 7, 7, ..., 6, 7, 7],
+array([[7, 7, 7, ..., 7, 8, 7],
+ [6, 7, 6, ..., 7, 7, 6],
+ [7, 6, 7, ..., 7, 6, 6],
...,
- [7, 7, 7, ..., 7, 7, 6],
- [7, 6, 6, ..., 6, 7, 7],
- [7, 6, 7, ..., 7, 8, 7]])
+ [6, 7, 6, ..., 6, 6, 7],
+ [7, 7, 7, ..., 6, 6, 7],
+ [6, 7, 7, ..., 8, 8, 7]])
array([[775. , 775. , 737.5, ..., 700. , 737.5, 775. ],
- [775. , 775. , 775. , ..., 737.5, 737.5, 737.5],
- [737.5, 737.5, 737.5, ..., 775. , 737.5, 737.5],
+array([[737.5, 737.5, 737.5, ..., 737.5, 700. , 737.5],
+ [775. , 737.5, 775. , ..., 737.5, 737.5, 775. ],
+ [737.5, 775. , 737.5, ..., 737.5, 775. , 775. ],
...,
- [737.5, 737.5, 737.5, ..., 737.5, 737.5, 775. ],
- [737.5, 775. , 775. , ..., 775. , 737.5, 737.5],
- [737.5, 775. , 737.5, ..., 737.5, 700. , 737.5]])
+ [775. , 737.5, 775. , ..., 775. , 775. , 737.5],
+ [737.5, 737.5, 737.5, ..., 775. , 775. , 737.5],
+ [775. , 737.5, 737.5, ..., 700. , 700. , 737.5]])
array([[ -9.55417349, -9.78584972, -9.92661689, ..., -12.67789616,
- -10.49077377, -6.56515605],
- [-10.00010532, -10.70819797, -7.20985445, ..., -11.10789153,
- -11.73163442, -8.29531203],
- [-11.88696252, -12.29088724, -11.70346147, ..., -7.30859657,
- -8.97849533, -13.84614818],
+array([[-13.35480377, -11.37389473, -6.11490009, ..., -9.69409241,
+ -14.14853765, -11.04724036],
+ [ -6.50332158, -11.09958323, -5.95998607, ..., -13.2604716 ,
+ -13.19971009, -8.49574616],
+ [-12.28051357, -10.19815861, -7.42945122, ..., -11.5798199 ,
+ -8.91153322, -8.6079996 ],
...,
- [-11.90215938, -7.91187899, -13.08679868, ..., -10.41120932,
- -11.35468344, -11.06459146],
- [-11.50292233, -6.26889319, -7.38221861, ..., -10.24036433,
- -10.12594611, -5.63518882],
- [-10.32651953, -6.06759924, -9.54152312, ..., -10.45702773,
- -12.20574751, -8.01746694]])
+ [ -8.10255586, -12.16615351, -11.27253366, ..., -10.44432682,
+ -7.39154896, -10.99574973],
+ [-16.5968518 , -12.57487222, -8.39736923, ..., -4.15595587,
+ -8.86979291, -11.28873531],
+ [ -8.59386363, -9.38047716, -10.46838159, ..., -11.30765026,
+ -10.89295232, -9.24056526]])
array([[ -9.55417349, -9.78584972, -9.92661689, ..., -12.67789616,
- -10.49077377, -6.56515605],
- [-10.00010532, -10.70819797, -7.20985445, ..., -11.10789153,
- -11.73163442, -8.29531203],
- [-11.88696252, -12.29088724, -11.70346147, ..., -7.30859657,
- -8.97849533, -13.84614818],
+array([[-13.35480377, -11.37389473, -6.11490009, ..., -9.69409241,
+ -14.14853765, -11.04724036],
+ [ -6.50332158, -11.09958323, -5.95998607, ..., -13.2604716 ,
+ -13.19971009, -8.49574616],
+ [-12.28051357, -10.19815861, -7.42945122, ..., -11.5798199 ,
+ -8.91153322, -8.6079996 ],
...,
- [-11.90215938, -7.91187899, -13.08679868, ..., -10.41120932,
- -11.35468344, -11.06459146],
- [-11.50292233, -6.26889319, -7.38221861, ..., -10.24036433,
- -10.12594611, -5.63518882],
- [-10.32651953, -6.06759924, -9.54152312, ..., -10.45702773,
- -12.20574751, -8.01746694]])
+ [ -8.10255586, -12.16615351, -11.27253366, ..., -10.44432682,
+ -7.39154896, -10.99574973],
+ [-16.5968518 , -12.57487222, -8.39736923, ..., -4.15595587,
+ -8.86979291, -11.28873531],
+ [ -8.59386363, -9.38047716, -10.46838159, ..., -11.30765026,
+ -10.89295232, -9.24056526]])
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
Seri
-/tmp/ipykernel_2735/737336773.py:1: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`
+/tmp/ipykernel_2746/737336773.py:1: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`
nino34_series[3]
@@ -1449,7 +1449,7 @@ Extending to the
-/tmp/ipykernel_2735/541596450.py:1: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`
+/tmp/ipykernel_2746/541596450.py:1: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`
df["Nino34"][3]
@@ -3645,7 +3645,7 @@ Resampling
-/tmp/ipykernel_2735/233158901.py:1: FutureWarning: 'Y' is deprecated and will be removed in a future version, please use 'YE' instead.
+/tmp/ipykernel_2746/233158901.py:1: FutureWarning: 'Y' is deprecated and will be removed in a future version, please use 'YE' instead.
df.Nino34.resample('1Y').mean().plot();
@@ -4434,7 +4434,7 @@ Resources and References
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -4563,7 +4563,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/core/xarray.html b/core/xarray.html
index e4624108b..6bc787165 100644
--- a/core/xarray.html
+++ b/core/xarray.html
@@ -79,7 +79,7 @@
-
+
@@ -760,7 +760,7 @@ Xarray
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -889,7 +889,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/core/xarray/computation-masking.html b/core/xarray/computation-masking.html
index b15ad248c..12f19902b 100644
--- a/core/xarray/computation-masking.html
+++ b/core/xarray/computation-masking.html
@@ -79,7 +79,7 @@
-
+
@@ -943,7 +943,7 @@ Data Setup
@@ -1576,7 +1576,7 @@ Arithmetic Operations
+ dtype='float64', name='lon', length=360))
In addition, there are many other arithmetic operations that can be performed on DataArrays
. In this example, we demonstrate squaring the original Celsius values of our air temperature data:
dim
keyword argument, the aggregation method computes an aggregation along the given dimension. In this next example, we use aggregation to calculate the temporal mean across all spatial data; this is performed by providing the dimension name 'time'
to the dim
keyword argument:
where
with one conditionwhere
+ dtype='float64', name='lon', length=360))
As shown in the previous example, methods like .isel()
and .sel()
return data of a different shape than the original data provided to them. However, .where()
preserves the shape of the original data by masking the values with a Boolean condition. Data values for which the condition is True
are returned identical to the values passed in. On the other hand, data values for which the condition is False
are returned as a preset example value. (This example value defaults to nan
, but can be set to other values as well.)
Before testing .where()
, it is helpful to look at the official documentation. As stated above, the .where()
method takes a Boolean condition. (Boolean conditions use operators such as less-than, greater-than, and equal-to, and return a value of True
or False
.) Most uses of .where()
check whether or not specific data values are less than or greater than a constant value. As stated in the documentation, the data values specified in the Boolean condition of .where()
can be any of the following:
where- cell_measures :
- area: areacello
- cell_methods :
- area: mean where sea time: mean
- comment :
- Model data on the 1x1 grid includes values in all cells for which ocean cells on the native grid cover more than 52.5 percent of the 1x1 grid cell. This 52.5 percent cutoff was chosen to produce ocean surface area on the 1x1 grid as close as possible to ocean surface area on the native grid, while not introducing fractional cell coverage.
- description :
- This may differ from "surface temperature" in regions of sea ice or floating ice shelves. For models using conservative temperature as the prognostic field, they should report the top ocean layer as surface potential temperature, which is the same as surface in situ temperature.
- frequency :
- mon
- id :
- tos
- long_name :
- Sea Surface Temperature
- mipTable :
- Omon
- out_name :
- tos
- prov :
- Omon ((isd.003))
- realm :
- ocean
- standard_name :
- sea_surface_temperature
- time :
- time
- time_label :
- time-mean
- time_title :
- Temporal mean
- title :
- Sea Surface Temperature
- type :
- real
- units :
- degC
- variable_id :
- tos
In this example, we use Matplotlib to plot the original, unmasked data, as well as the masked data created in the previous example.
@@ -9321,7 +9321,7 @@ Resources and References
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -9450,7 +9450,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/core/xarray/dask-arrays-xarray.html b/core/xarray/dask-arrays-xarray.html
index 0af9daaf3..65793b335 100644
--- a/core/xarray/dask-arrays-xarray.html
+++ b/core/xarray/dask-arrays-xarray.html
@@ -79,7 +79,7 @@
-
+
@@ -568,91 +568,91 @@ Create a dask.a
-array([[[0.08870167, 0.5536724 , 0.86869933, ..., 0.59745109,
- 0.66241166, 0.14712849],
- [0.79424186, 0.53985475, 0.83117213, ..., 0.64752434,
- 0.2068288 , 0.43561572],
- [0.93755297, 0.12641562, 0.55493093, ..., 0.44682309,
- 0.9108161 , 0.28494995],
+array([[[3.73479162e-01, 5.69354087e-01, 8.44121771e-01, ...,
+ 6.95300592e-01, 7.05791578e-01, 3.22757785e-01],
+ [7.34673387e-01, 3.22502093e-02, 2.98660716e-02, ...,
+ 4.48326876e-01, 1.28181189e-01, 6.17129937e-01],
+ [4.61524077e-01, 5.72981031e-01, 6.22455684e-02, ...,
+ 4.66387696e-01, 2.24365962e-02, 9.05528466e-01],
...,
- [0.36681494, 0.55104908, 0.67358062, ..., 0.93120538,
- 0.51164396, 0.2149192 ],
- [0.33220658, 0.18853655, 0.84133513, ..., 0.09990092,
- 0.45265087, 0.48841145],
- [0.54632195, 0.99301667, 0.40513953, ..., 0.5341915 ,
- 0.3220391 , 0.07544213]],
-
- [[0.8398981 , 0.14999579, 0.81431679, ..., 0.45814483,
- 0.81962377, 0.01308931],
- [0.52904343, 0.17038365, 0.49820524, ..., 0.71294698,
- 0.49906669, 0.32305634],
- [0.83597797, 0.12242548, 0.63334391, ..., 0.77669187,
- 0.44530452, 0.02031067],
+ [4.32840675e-01, 6.11791423e-01, 7.77157080e-01, ...,
+ 5.21898060e-01, 5.08370890e-01, 5.88153598e-01],
+ [8.04673850e-01, 7.80296541e-03, 5.00244166e-01, ...,
+ 9.45710973e-01, 5.08700949e-01, 8.89905823e-01],
+ [4.87536782e-01, 4.64576884e-01, 4.97751472e-01, ...,
+ 9.63294478e-01, 8.00438624e-01, 9.39160580e-01]],
+
+ [[9.59798128e-01, 9.67977225e-01, 5.67081374e-01, ...,
+ 1.15551677e-01, 5.93188567e-01, 8.21494821e-01],
+ [7.09798171e-01, 6.86764079e-01, 9.75639983e-01, ...,
+ 6.65980228e-01, 3.63136928e-01, 3.91634965e-01],
+ [2.45312843e-01, 7.92456108e-01, 7.52068086e-01, ...,
+ 8.31396290e-01, 7.34853345e-01, 1.59997513e-02],
...,
- [0.23487395, 0.54185136, 0.84738714, ..., 0.43194404,
- 0.96464114, 0.34661126],
- [0.06216953, 0.87402041, 0.89512514, ..., 0.38706893,
- 0.09187095, 0.88666451],
- [0.46384865, 0.02462827, 0.71575049, ..., 0.47421697,
- 0.30570578, 0.58421292]],
-
- [[0.05704318, 0.36232811, 0.03448708, ..., 0.86748361,
- 0.49546271, 0.39195962],
- [0.62907898, 0.52593284, 0.87418635, ..., 0.97638485,
- 0.63695351, 0.75326941],
- [0.11640535, 0.15534404, 0.80460691, ..., 0.26935451,
- 0.00686985, 0.42474694],
+ [6.29006234e-01, 5.66655665e-01, 9.59798385e-01, ...,
+ 4.64611557e-02, 8.47630616e-01, 9.96868460e-01],
+ [8.65409572e-01, 6.62829465e-01, 5.85935120e-01, ...,
+ 2.76645046e-01, 4.05531947e-01, 1.86970157e-01],
+ [5.88186192e-02, 4.80258125e-01, 7.50053106e-01, ...,
+ 5.82584007e-01, 7.16238302e-01, 3.09095729e-01]],
+
+ [[1.95867406e-01, 8.02997164e-01, 5.92335907e-02, ...,
+ 6.00495084e-02, 3.58568845e-02, 6.14435689e-01],
+ [5.40191024e-01, 7.45240262e-01, 5.83926237e-01, ...,
+ 5.42683512e-01, 7.15062271e-05, 8.15838308e-01],
+ [3.56121359e-01, 6.64103118e-01, 3.19197578e-01, ...,
+ 4.30885292e-01, 5.63274760e-01, 5.58304993e-01],
...,
- [0.53156325, 0.69190957, 0.69352384, ..., 0.77170882,
- 0.44011939, 0.39866217],
- [0.29442052, 0.74080675, 0.46131608, ..., 0.32366183,
- 0.73788577, 0.04341616],
- [0.94117032, 0.92630431, 0.79008536, ..., 0.02443356,
- 0.52042712, 0.83466538]],
+ [3.70429144e-01, 2.28949319e-01, 2.12465225e-01, ...,
+ 8.75347366e-01, 6.88876481e-01, 8.52985255e-01],
+ [8.43544201e-01, 3.50323808e-01, 9.94755069e-01, ...,
+ 2.31937385e-01, 6.46129523e-01, 7.56519847e-01],
+ [9.23292344e-01, 9.06543740e-01, 2.16039623e-01, ...,
+ 6.17841121e-01, 5.83778599e-02, 7.07627581e-01]],
...,
- [[0.1396787 , 0.60143505, 0.57058462, ..., 0.18893598,
- 0.82985107, 0.54242887],
- [0.68157985, 0.63122788, 0.1780818 , ..., 0.55248006,
- 0.63127177, 0.4663941 ],
- [0.55463676, 0.49022722, 0.28183346, ..., 0.64073606,
- 0.37788708, 0.05233016],
+ [[5.50076397e-01, 6.23247920e-01, 6.69863249e-01, ...,
+ 6.66141598e-01, 4.98073488e-01, 9.70545887e-01],
+ [7.38559992e-01, 3.21393458e-01, 4.05421647e-01, ...,
+ 2.52285356e-01, 8.08345653e-01, 7.28764634e-01],
+ [2.68191728e-01, 6.03169049e-02, 6.89258446e-01, ...,
+ 6.21042327e-01, 9.60250603e-01, 9.75257028e-01],
...,
- [0.39020736, 0.85735173, 0.00786958, ..., 0.66161596,
- 0.18152074, 0.17731408],
- [0.93613911, 0.96578828, 0.38973709, ..., 0.06864502,
- 0.5063675 , 0.73631955],
- [0.1671134 , 0.45039599, 0.38253178, ..., 0.74316064,
- 0.20253998, 0.93656703]],
-
- [[0.28018602, 0.84864745, 0.65231976, ..., 0.57238332,
- 0.37536731, 0.04826117],
- [0.47663448, 0.86778224, 0.95451621, ..., 0.76880871,
- 0.89875752, 0.06756555],
- [0.49609048, 0.21693506, 0.23207324, ..., 0.06636032,
- 0.95937476, 0.4827714 ],
+ [6.11978830e-01, 6.32479701e-01, 1.75826196e-01, ...,
+ 2.09161988e-01, 6.71446177e-01, 4.78915946e-01],
+ [6.45044934e-01, 1.15167985e-01, 9.05467373e-01, ...,
+ 7.79598426e-01, 8.76027493e-01, 5.70161686e-01],
+ [8.44173395e-01, 7.14987726e-01, 5.27098062e-01, ...,
+ 6.24560049e-01, 3.32587128e-02, 1.48219268e-01]],
+
+ [[9.16337354e-01, 1.38628117e-01, 2.76572964e-01, ...,
+ 5.68919305e-02, 3.07040211e-01, 6.70607173e-02],
+ [6.78200880e-01, 1.19012654e-01, 8.76844508e-01, ...,
+ 5.78903343e-01, 5.08716762e-01, 3.27430604e-01],
+ [5.19310927e-01, 1.62933592e-01, 6.94104791e-01, ...,
+ 8.28521396e-01, 5.63944660e-01, 9.23353464e-01],
...,
- [0.83197412, 0.22629066, 0.1589711 , ..., 0.55726833,
- 0.40921459, 0.94548168],
- [0.20373662, 0.76138868, 0.56265755, ..., 0.71025427,
- 0.19641998, 0.49627513],
- [0.20384921, 0.34173511, 0.44829 , ..., 0.3999668 ,
- 0.75240336, 0.21357396]],
-
- [[0.05024137, 0.77607526, 0.32452642, ..., 0.26169962,
- 0.2092348 , 0.79937281],
- [0.8834038 , 0.56909665, 0.84006875, ..., 0.09540328,
- 0.66257683, 0.78342945],
- [0.29906903, 0.08192958, 0.51913898, ..., 0.32946737,
- 0.91310302, 0.99198924],
+ [8.75833692e-01, 8.80034882e-01, 3.94957057e-01, ...,
+ 3.88766073e-01, 5.62146961e-01, 4.07401505e-01],
+ [8.83232515e-02, 7.93868945e-02, 7.09396623e-01, ...,
+ 4.00821090e-01, 9.67897242e-01, 3.30712526e-02],
+ [6.21839195e-01, 3.66731583e-01, 9.97239185e-01, ...,
+ 4.06892246e-01, 8.84142338e-01, 1.29206897e-01]],
+
+ [[3.13410458e-01, 7.92759677e-01, 8.24979480e-02, ...,
+ 5.38935776e-02, 4.52819725e-01, 1.48534750e-01],
+ [2.06595218e-01, 8.46746782e-01, 9.06689993e-01, ...,
+ 8.52571008e-01, 4.28351337e-01, 8.06352220e-01],
+ [3.77563013e-01, 9.99637726e-01, 3.37356897e-01, ...,
+ 8.18911136e-01, 8.32562303e-01, 8.45143802e-02],
...,
- [0.89344391, 0.04685752, 0.16870497, ..., 0.70133294,
- 0.2028986 , 0.16916596],
- [0.62721463, 0.12582174, 0.59300888, ..., 0.93023778,
- 0.50053284, 0.63544531],
- [0.89994404, 0.84669077, 0.65421957, ..., 0.19573779,
- 0.56024887, 0.73584493]]])
+ [5.51431397e-01, 8.77465751e-01, 9.63517992e-01, ...,
+ 3.34710544e-02, 9.70363045e-01, 5.42823121e-01],
+ [3.89247115e-01, 3.36500509e-01, 4.31638413e-02, ...,
+ 8.82214294e-02, 2.41024552e-01, 4.19862342e-01],
+ [5.65544128e-01, 6.09859197e-01, 2.77376901e-01, ...,
+ 5.51955058e-01, 6.67783854e-02, 4.08359511e-01]]])
@@ -856,7 +856,7 @@ Why the difference?
-
+
+ dtype='float64', name='lon', length=360))
CPU times: user 406 ms, sys: 28 ms, total: 434 ms
-Wall time: 232 ms
+CPU times: user 399 ms, sys: 28.5 ms, total: 428 ms
+Wall time: 228 ms
-12002441.41340752
+12000189.444496717
@@ -894,7 +894,7 @@ Exercise with d
As is obvious from the above exercise, Dask quickly and easily determines a strategy for performing the operations, in this case a sum. This illustrates the appeal of Dask: automatic algorithm generation that scales from simple arithmetic problems to highly complex scientific equations with large datasets and multiple operations.
@@ -974,7 +974,7 @@d
-
+
@@ -1106,7 +1106,7 @@ Testing a bigger calculation
-
+
@@ -1117,34 +1117,34 @@ Testing a bigger calculation
-[ ] | 0% Completed | 169.21 us
+[ ] | 0% Completed | 255.13 us
-[ ] | 0% Completed | 105.92 ms
+[ ] | 0% Completed | 106.98 ms
-[ ] | 0% Completed | 206.66 ms
+[ ] | 0% Completed | 207.72 ms
-[ ] | 0% Completed | 307.49 ms
+[ ] | 0% Completed | 308.36 ms
-[ ] | 0% Completed | 408.13 ms
+[ ] | 0% Completed | 409.00 ms
-[ ] | 0% Completed | 508.89 ms
+[ ] | 0% Completed | 509.67 ms
-[ ] | 1% Completed | 609.51 ms
+[ ] | 0% Completed | 610.39 ms
-[# ] | 4% Completed | 710.49 ms
+[# ] | 3% Completed | 711.30 ms
-[### ] | 7% Completed | 811.54 ms
+[## ] | 6% Completed | 812.41 ms
-[#### ] | 10% Completed | 912.41 ms
+[#### ] | 10% Completed | 913.29 ms
[#### ] | 10% Completed | 1.01 s
@@ -1153,7 +1153,7 @@ Testing a bigger calculation[#### ] | 10% Completed | 1.11 s
-[#### ] | 10% Completed | 1.21 s
+[#### ] | 10% Completed | 1.22 s
[#### ] | 10% Completed | 1.32 s
@@ -1162,10 +1162,10 @@ Testing a bigger calculation[#### ] | 10% Completed | 1.42 s
-[##### ] | 13% Completed | 1.52 s
+[##### ] | 12% Completed | 1.52 s
-[###### ] | 16% Completed | 1.62 s
+[###### ] | 15% Completed | 1.62 s
[####### ] | 19% Completed | 1.72 s
@@ -1186,13 +1186,13 @@ Testing a bigger calculation[######## ] | 21% Completed | 2.22 s
-[######## ] | 22% Completed | 2.32 s
+[######## ] | 21% Completed | 2.32 s
-[########## ] | 25% Completed | 2.43 s
+[######### ] | 24% Completed | 2.43 s
-[########### ] | 27% Completed | 2.53 s
+[########### ] | 28% Completed | 2.53 s
[############ ] | 31% Completed | 2.63 s
@@ -1216,16 +1216,16 @@ Testing a bigger calculation[############## ] | 35% Completed | 3.23 s
-[############### ] | 38% Completed | 3.33 s
+[############## ] | 37% Completed | 3.33 s
-[################ ] | 40% Completed | 3.43 s
+[############### ] | 39% Completed | 3.43 s
-[################# ] | 44% Completed | 3.53 s
+[################# ] | 43% Completed | 3.53 s
-[################### ] | 48% Completed | 3.63 s
+[################## ] | 46% Completed | 3.64 s
[################### ] | 48% Completed | 3.74 s
@@ -1246,10 +1246,10 @@ Testing a bigger calculation[#################### ] | 50% Completed | 4.24 s
-[##################### ] | 53% Completed | 4.34 s
+[#################### ] | 52% Completed | 4.34 s
-[###################### ] | 57% Completed | 4.44 s
+[###################### ] | 55% Completed | 4.44 s
[####################### ] | 59% Completed | 4.54 s
@@ -1276,7 +1276,7 @@ Testing a bigger calculation[######################### ] | 64% Completed | 5.25 s
-[########################### ] | 67% Completed | 5.35 s
+[########################### ] | 68% Completed | 5.35 s
[############################ ] | 72% Completed | 5.45 s
@@ -1300,13 +1300,13 @@ Testing a bigger calculation[############################## ] | 75% Completed | 6.06 s
-[############################### ] | 77% Completed | 6.16 s
+[############################### ] | 78% Completed | 6.16 s
-[################################ ] | 80% Completed | 6.26 s
+[################################ ] | 82% Completed | 6.26 s
-[################################# ] | 83% Completed | 6.36 s
+[################################# ] | 84% Completed | 6.36 s
[################################## ] | 85% Completed | 6.46 s
@@ -1324,16 +1324,16 @@ Testing a bigger calculation[################################## ] | 85% Completed | 6.86 s
-[################################## ] | 86% Completed | 6.96 s
+[################################### ] | 89% Completed | 6.96 s
-[################################### ] | 89% Completed | 7.06 s
+[#################################### ] | 92% Completed | 7.07 s
-[##################################### ] | 92% Completed | 7.16 s
+[###################################### ] | 96% Completed | 7.17 s
-[###################################### ] | 96% Completed | 7.27 s
+[####################################### ] | 99% Completed | 7.27 s
[########################################] | 100% Completed | 7.37 s
@@ -1854,7 +1854,7 @@ Reading data with
- latPandasIndex
PandasIndex(Index([-89.5, -88.5, -87.5, -86.5, -85.5, -84.5, -83.5, -82.5, -81.5, -80.5,
+ 80.5, 81.5, 82.5, 83.5, 84.5, 85.5, 86.5, 87.5, 88.5, 89.5])
- lon(lon)float640.5 1.5 2.5 ... 357.5 358.5 359.5
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- latPandasIndex
PandasIndex(Index([-89.5, -88.5, -87.5, -86.5, -85.5, -84.5, -83.5, -82.5, -81.5, -80.5,
...
80.5, 81.5, 82.5, 83.5, 84.5, 85.5, 86.5, 87.5, 88.5, 89.5],
- dtype='float64', name='lat', length=180))
- lonPandasIndex
PandasIndex(Index([ 0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5,
+ dtype='float64', name='lat', length=180))
- lonPandasIndex
PandasIndex(Index([ 0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5,
...
350.5, 351.5, 352.5, 353.5, 354.5, 355.5, 356.5, 357.5, 358.5, 359.5],
- dtype='float64', name='lon', length=360))
+ dtype='float64', name='lon', length=360))
As shown in the above example, the result of the applied operations is an Xarray DataArray
that contains a Dask Array, an identical object type to the object that the operations were performed on. This is true for any operations that can be applied to Xarray DataArrays
, including subsetting operations; this next example illustrates this:
@@ -3739,7 +3739,7 @@ Parallel and lazy computation using
@@ -3794,10 +3794,10 @@ Parallel and lazy computation using dask.visualize()
function, as shown in this example:
@@ -3819,10 +3819,10 @@ Parallel and lazy computation using
-[ ] | 0% Completed | 122.44 us
+[ ] | 0% Completed | 137.30 us
-[########################################] | 100% Completed | 101.18 ms
+[########################################] | 100% Completed | 101.19 ms
@@ -4236,7 +4236,7 @@ Resources and references
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -4365,7 +4365,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/core/xarray/enso-xarray.html b/core/xarray/enso-xarray.html
index 316661573..6e86d4355 100644
--- a/core/xarray/enso-xarray.html
+++ b/core/xarray/enso-xarray.html
@@ -79,7 +79,7 @@
-
+
@@ -958,7 +958,7 @@ The Niño 3.4 Index
@@ -1590,7 +1590,7 @@ Select the Niño 3.4 regionwhere() method:
+array(1.8436452, dtype=float32)
The final step of the Niño 3.4 index calculation involves normalizing the data. In this example, we perform this normalization by dividing the smoothed anomaly data by the standard deviation calculated above:
@@ -3396,7 +3396,7 @@ Resources and References
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -3525,7 +3525,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/core/xarray/xarray-intro.html b/core/xarray/xarray-intro.html
index e17e6628d..308dd9baa 100644
--- a/core/xarray/xarray-intro.html
+++ b/core/xarray/xarray-intro.html
@@ -79,7 +79,7 @@
-
+
@@ -583,25 +583,25 @@ Generate a random numpy array
-array([[[274.00119189, 291.26874805, 287.10212211, 281.93321028],
- [276.72439019, 281.86759901, 277.88521001, 291.15900492],
- [283.47892997, 281.69598295, 281.87670232, 280.04253353]],
+array([[[283.19514872, 279.93414516, 288.85955729, 280.30299831],
+ [282.03318795, 283.36237877, 288.28464039, 284.82856563],
+ [282.15998672, 276.06859236, 285.78192464, 280.47703387]],
- [[292.49183408, 286.75694127, 291.1430049 , 279.6708509 ],
- [283.19466798, 285.34236937, 289.30840199, 286.22515585],
- [289.80677567, 281.73710917, 294.57091617, 291.28505114]],
+ [[282.44435897, 282.262194 , 286.34635361, 285.32213341],
+ [283.03737484, 288.57815157, 290.02698113, 278.23328324],
+ [277.06837841, 286.4771544 , 284.58714744, 288.42673576]],
- [[278.59826878, 287.14196565, 284.68298455, 286.59720048],
- [287.51252429, 288.52590266, 273.69692215, 285.39338362],
- [292.66871999, 278.60078099, 280.78168263, 291.92156783]],
+ [[280.62831671, 275.374152 , 283.08613936, 292.56788174],
+ [286.26020096, 282.03531027, 280.16394984, 288.9366629 ],
+ [282.90971416, 278.40998651, 284.98850877, 283.14584888]],
- [[281.24772197, 286.52210588, 282.61809684, 288.82826349],
- [282.48419301, 286.34184212, 277.57835692, 279.66054122],
- [288.97073742, 287.33849395, 289.90083339, 285.95347237]],
+ [[284.34422355, 283.20830934, 278.27414095, 285.21976361],
+ [279.17521323, 292.21743424, 276.974416 , 284.06699408],
+ [274.74247997, 279.63780379, 275.87914515, 277.71758929]],
- [[282.699394 , 286.72856786, 281.89265707, 286.16350665],
- [278.02139036, 284.54696447, 283.16191651, 278.99615563],
- [284.94443941, 287.35039327, 289.38110818, 280.10681174]]])
+ [[282.71726594, 281.99808895, 279.66639367, 276.71709325],
+ [278.30599074, 277.08406243, 273.68999203, 279.75441922],
+ [271.39869986, 286.48138908, 285.22713979, 291.77285885]]])
@@ -982,44 +982,44 @@ Wrap the array: first attempt
@@ -1402,44 +1402,44 @@ Assign dimension names<xarray.DataArray (time: 5, lat: 3, lon: 4)> Size: 480B
-array([[[274.00119189, 291.26874805, 287.10212211, 281.93321028],
- [276.72439019, 281.86759901, 277.88521001, 291.15900492],
- [283.47892997, 281.69598295, 281.87670232, 280.04253353]],
-
- [[292.49183408, 286.75694127, 291.1430049 , 279.6708509 ],
- [283.19466798, 285.34236937, 289.30840199, 286.22515585],
- [289.80677567, 281.73710917, 294.57091617, 291.28505114]],
-
- [[278.59826878, 287.14196565, 284.68298455, 286.59720048],
- [287.51252429, 288.52590266, 273.69692215, 285.39338362],
- [292.66871999, 278.60078099, 280.78168263, 291.92156783]],
-
- [[281.24772197, 286.52210588, 282.61809684, 288.82826349],
- [282.48419301, 286.34184212, 277.57835692, 279.66054122],
- [288.97073742, 287.33849395, 289.90083339, 285.95347237]],
-
- [[282.699394 , 286.72856786, 281.89265707, 286.16350665],
- [278.02139036, 284.54696447, 283.16191651, 278.99615563],
- [284.94443941, 287.35039327, 289.38110818, 280.10681174]]])
-Dimensions without coordinates: time, lat, lon
+array([[[283.19514872, 279.93414516, 288.85955729, 280.30299831],
+ [282.03318795, 283.36237877, 288.28464039, 284.82856563],
+ [282.15998672, 276.06859236, 285.78192464, 280.47703387]],
+
+ [[282.44435897, 282.262194 , 286.34635361, 285.32213341],
+ [283.03737484, 288.57815157, 290.02698113, 278.23328324],
+ [277.06837841, 286.4771544 , 284.58714744, 288.42673576]],
+
+ [[280.62831671, 275.374152 , 283.08613936, 292.56788174],
+ [286.26020096, 282.03531027, 280.16394984, 288.9366629 ],
+ [282.90971416, 278.40998651, 284.98850877, 283.14584888]],
+
+ [[284.34422355, 283.20830934, 278.27414095, 285.21976361],
+ [279.17521323, 292.21743424, 276.974416 , 284.06699408],
+ [274.74247997, 279.63780379, 275.87914515, 277.71758929]],
+
+ [[282.71726594, 281.99808895, 279.66639367, 276.71709325],
+ [278.30599074, 277.08406243, 273.68999203, 279.75441922],
+ [271.39869986, 286.48138908, 285.22713979, 291.77285885]]])
+Dimensions without coordinates: time, lat, lon
This DataArray
is already an improvement over a NumPy array; the DataArray
contains names for each of the dimensions (or axes in NumPy parlance). An additional improvement is the association of coordinate-value arrays with data upon creation of a DataArray
. In the next example, we illustrate the creation of NumPy arrays representing the coordinate values for each dimension of the DataArray
, and how to associate these coordinate arrays with the data in our DataArray
.
@@ -1849,51 +1849,51 @@ Initialize the
fill: currentColor;
}
<xarray.DataArray (time: 5, lat: 3, lon: 4)> Size: 480B
-array([[[274.00119189, 291.26874805, 287.10212211, 281.93321028],
- [276.72439019, 281.86759901, 277.88521001, 291.15900492],
- [283.47892997, 281.69598295, 281.87670232, 280.04253353]],
+array([[[283.19514872, 279.93414516, 288.85955729, 280.30299831],
+ [282.03318795, 283.36237877, 288.28464039, 284.82856563],
+ [282.15998672, 276.06859236, 285.78192464, 280.47703387]],
- [[292.49183408, 286.75694127, 291.1430049 , 279.6708509 ],
- [283.19466798, 285.34236937, 289.30840199, 286.22515585],
- [289.80677567, 281.73710917, 294.57091617, 291.28505114]],
+ [[282.44435897, 282.262194 , 286.34635361, 285.32213341],
+ [283.03737484, 288.57815157, 290.02698113, 278.23328324],
+ [277.06837841, 286.4771544 , 284.58714744, 288.42673576]],
- [[278.59826878, 287.14196565, 284.68298455, 286.59720048],
- [287.51252429, 288.52590266, 273.69692215, 285.39338362],
- [292.66871999, 278.60078099, 280.78168263, 291.92156783]],
+ [[280.62831671, 275.374152 , 283.08613936, 292.56788174],
+ [286.26020096, 282.03531027, 280.16394984, 288.9366629 ],
+ [282.90971416, 278.40998651, 284.98850877, 283.14584888]],
- [[281.24772197, 286.52210588, 282.61809684, 288.82826349],
- [282.48419301, 286.34184212, 277.57835692, 279.66054122],
- [288.97073742, 287.33849395, 289.90083339, 285.95347237]],
+ [[284.34422355, 283.20830934, 278.27414095, 285.21976361],
+ [279.17521323, 292.21743424, 276.974416 , 284.06699408],
+ [274.74247997, 279.63780379, 275.87914515, 277.71758929]],
- [[282.699394 , 286.72856786, 281.89265707, 286.16350665],
- [278.02139036, 284.54696447, 283.16191651, 278.99615563],
- [284.94443941, 287.35039327, 289.38110818, 280.10681174]]])
+ [[282.71726594, 281.99808895, 279.66639367, 276.71709325],
+ [278.30599074, 277.08406243, 273.68999203, 279.75441922],
+ [271.39869986, 286.48138908, 285.22713979, 291.77285885]]])
Coordinates:
* time (time) datetime64[ns] 40B 2018-01-01 2018-01-02 ... 2018-01-05
* lat (lat) float64 24B 25.0 40.0 55.0
- * lon (lon) float64 32B -120.0 -100.0 -80.0 -60.0
+ dtype='datetime64[ns]', name='time', freq='D'))
latPandasIndexPandasIndex(Index([25.0, 40.0, 55.0], dtype='float64', name='lat'))
lonPandasIndexPandasIndex(Index([-120.0, -100.0, -80.0, -60.0], dtype='float64', name='lon'))
@@ -2273,54 +2273,54 @@ Set useful attributes<xarray.DataArray (time: 5, lat: 3, lon: 4)> Size: 480B
-array([[[274.00119189, 291.26874805, 287.10212211, 281.93321028],
- [276.72439019, 281.86759901, 277.88521001, 291.15900492],
- [283.47892997, 281.69598295, 281.87670232, 280.04253353]],
+array([[[283.19514872, 279.93414516, 288.85955729, 280.30299831],
+ [282.03318795, 283.36237877, 288.28464039, 284.82856563],
+ [282.15998672, 276.06859236, 285.78192464, 280.47703387]],
- [[292.49183408, 286.75694127, 291.1430049 , 279.6708509 ],
- [283.19466798, 285.34236937, 289.30840199, 286.22515585],
- [289.80677567, 281.73710917, 294.57091617, 291.28505114]],
+ [[282.44435897, 282.262194 , 286.34635361, 285.32213341],
+ [283.03737484, 288.57815157, 290.02698113, 278.23328324],
+ [277.06837841, 286.4771544 , 284.58714744, 288.42673576]],
- [[278.59826878, 287.14196565, 284.68298455, 286.59720048],
- [287.51252429, 288.52590266, 273.69692215, 285.39338362],
- [292.66871999, 278.60078099, 280.78168263, 291.92156783]],
+ [[280.62831671, 275.374152 , 283.08613936, 292.56788174],
+ [286.26020096, 282.03531027, 280.16394984, 288.9366629 ],
+ [282.90971416, 278.40998651, 284.98850877, 283.14584888]],
- [[281.24772197, 286.52210588, 282.61809684, 288.82826349],
- [282.48419301, 286.34184212, 277.57835692, 279.66054122],
- [288.97073742, 287.33849395, 289.90083339, 285.95347237]],
+ [[284.34422355, 283.20830934, 278.27414095, 285.21976361],
+ [279.17521323, 292.21743424, 276.974416 , 284.06699408],
+ [274.74247997, 279.63780379, 275.87914515, 277.71758929]],
- [[282.699394 , 286.72856786, 281.89265707, 286.16350665],
- [278.02139036, 284.54696447, 283.16191651, 278.99615563],
- [284.94443941, 287.35039327, 289.38110818, 280.10681174]]])
+ [[282.71726594, 281.99808895, 279.66639367, 276.71709325],
+ [278.30599074, 277.08406243, 273.68999203, 279.75441922],
+ [271.39869986, 286.48138908, 285.22713979, 291.77285885]]])
Coordinates:
* time (time) datetime64[ns] 40B 2018-01-01 2018-01-02 ... 2018-01-05
* lat (lat) float64 24B 25.0 40.0 55.0
* lon (lon) float64 32B -120.0 -100.0 -80.0 -60.0
Attributes:
units: kelvin
- standard_name: air_temperature
+ dtype='datetime64[ns]', name='time', freq='D'))
latPandasIndexPandasIndex(Index([25.0, 40.0, 55.0], dtype='float64', name='lat'))
lonPandasIndexPandasIndex(Index([-120.0, -100.0, -80.0, -60.0], dtype='float64', name='lon'))
- units :
- kelvin
- standard_name :
- air_temperature
@@ -2699,51 +2699,51 @@ Issues with preservation of attributesdocumentation page.
@@ -3134,54 +3134,54 @@ Create a pressure
+ dtype='datetime64[ns]', name='time', freq='D'))latPandasIndexPandasIndex(Index([25.0, 40.0, 55.0], dtype='float64', name='lat'))
lonPandasIndexPandasIndex(Index([-120.0, -100.0, -80.0, -60.0], dtype='float64', name='lon'))
As listed in the rich display above, the new Dataset
object is aware that both DataArrays
share the same coordinate axes. (Please note that if this page is not run as a Jupyter Notebook, the rich display may be unavailable.)
@@ -3986,54 +3986,54 @@ Access Data variables and Coordinates in a DataArrays
through a dictionary syntax, as shown in this example:
@@ -4407,54 +4407,54 @@ Access Data variables and Coordinates in a Dataset
objects are mainly used for loading data from files, which will be covered later in this tutorial.
@@ -4838,18 +4838,18 @@ NumPy-like selection<xarray.DataArray (lat: 3, lon: 4)> Size: 96B
-array([[292.49183408, 286.75694127, 291.1430049 , 279.6708509 ],
- [283.19466798, 285.34236937, 289.30840199, 286.22515585],
- [289.80677567, 281.73710917, 294.57091617, 291.28505114]])
+array([[282.44435897, 282.262194 , 286.34635361, 285.32213341],
+ [283.03737484, 288.57815157, 290.02698113, 278.23328324],
+ [277.06837841, 286.4771544 , 284.58714744, 288.42673576]])
Coordinates:
time datetime64[ns] 8B 2018-01-02
* lat (lat) float64 24B 25.0 40.0 55.0
* lon (lon) float64 32B -120.0 -100.0 -80.0 -60.0
Attributes:
units: kelvin
- standard_name: air_temperature
+ standard_name: air_temperature
This example reveals one of the major shortcomings of index selection. In order to retrieve the correct data using index selection, anyone using a DataArray
must have precise knowledge of the axes in the DataArray
, including the order of the axes and the meaning of their indices.
By using named coordinates, as shown in the next set of examples, we can avoid this cumbersome burden.
@@ -5229,18 +5229,18 @@ Selecting with
fill: currentColor;
}
<xarray.DataArray (lat: 3, lon: 4)> Size: 96B
-array([[292.49183408, 286.75694127, 291.1430049 , 279.6708509 ],
- [283.19466798, 285.34236937, 289.30840199, 286.22515585],
- [289.80677567, 281.73710917, 294.57091617, 291.28505114]])
+array([[282.44435897, 282.262194 , 286.34635361, 285.32213341],
+ [283.03737484, 288.57815157, 290.02698113, 278.23328324],
+ [277.06837841, 286.4771544 , 284.58714744, 288.42673576]])
Coordinates:
time datetime64[ns] 8B 2018-01-02
* lat (lat) float64 24B 25.0 40.0 55.0
* lon (lon) float64 32B -120.0 -100.0 -80.0 -60.0
Attributes:
units: kelvin
- standard_name: air_temperature
+ standard_name: air_temperature
This method yields the same result as the index selection, however:
@@ -5627,18 +5627,18 @@ Nearest-neighbor sampling.sel indeed returned the data at the temporal value corresponding to the date 2018-01-05
.
@@ -6017,20 +6017,20 @@ Interpolation
Info
@@ -6414,29 +6414,29 @@ Slicing along coordinates
Info
@@ -6818,18 +6818,18 @@ One more selection method: <xarray.DataArray (lat: 3, lon: 4)> Size: 96B
-array([[292.49183408, 286.75694127, 291.1430049 , 279.6708509 ],
- [283.19466798, 285.34236937, 289.30840199, 286.22515585],
- [289.80677567, 281.73710917, 294.57091617, 291.28505114]])
+array([[282.44435897, 282.262194 , 286.34635361, 285.32213341],
+ [283.03737484, 288.57815157, 290.02698113, 278.23328324],
+ [277.06837841, 286.4771544 , 284.58714744, 288.42673576]])
Coordinates:
time datetime64[ns] 8B 2018-01-02
* lat (lat) float64 24B 25.0 40.0 55.0
* lon (lon) float64 32B -120.0 -100.0 -80.0 -60.0
Attributes:
units: kelvin
- standard_name: air_temperature
+ standard_name: air_temperature
This selection technique is similar to NumPy’s index-based selection, as shown below:
temp[1,:,:]
@@ -7208,29 +7208,29 @@ One more selection method: <xarray.DataArray (time: 3, lat: 2, lon: 2)> Size: 96B
-array([[[291.26874805, 287.10212211],
- [281.86759901, 277.88521001]],
+array([[[279.93414516, 288.85955729],
+ [283.36237877, 288.28464039]],
- [[286.75694127, 291.1430049 ],
- [285.34236937, 289.30840199]],
+ [[282.262194 , 286.34635361],
+ [288.57815157, 290.02698113]],
- [[287.14196565, 284.68298455],
- [288.52590266, 273.69692215]]])
+ [[275.374152 , 283.08613936],
+ [282.03531027, 280.16394984]]])
Coordinates:
* time (time) datetime64[ns] 24B 2018-01-01 2018-01-02 2018-01-03
* lat (lat) float64 16B 25.0 40.0
* lon (lon) float64 16B -100.0 -80.0
Attributes:
units: kelvin
- standard_name: air_temperature
+ [[275.374152 , 283.08613936],
+ [282.03531027, 280.16394984]]])
- time(time)datetime64[ns]2018-01-01 2018-01-02 2018-01-03
array(['2018-01-01T00:00:00.000000000', '2018-01-02T00:00:00.000000000',
+ '2018-01-03T00:00:00.000000000'], dtype='datetime64[ns]')
- lat(lat)float6425.0 40.0
array([25., 40.])
- lon(lon)float64-100.0 -80.0
array([-100., -80.])
- timePandasIndex
PandasIndex(DatetimeIndex(['2018-01-01', '2018-01-02', '2018-01-03'], dtype='datetime64[ns]', name='time', freq='D'))
- latPandasIndex
PandasIndex(Index([25.0, 40.0], dtype='float64', name='lat'))
- lonPandasIndex
PandasIndex(Index([-100.0, -80.0], dtype='float64', name='lon'))
- units :
- kelvin
- standard_name :
- air_temperature
In contrast with the previous example, this example shows a useful advantage of using the .loc
attribute. When using the .loc
attribute, you can specify data slices using a syntax similar to NumPy in addition to, or instead of, using the slice function. Both of these slicing techniques are illustrated below:
@@ -7604,29 +7604,29 @@ One more selection method: <xarray.DataArray (time: 3, lat: 2, lon: 2)> Size: 96B
-array([[[291.26874805, 287.10212211],
- [281.86759901, 277.88521001]],
+array([[[279.93414516, 288.85955729],
+ [283.36237877, 288.28464039]],
- [[286.75694127, 291.1430049 ],
- [285.34236937, 289.30840199]],
+ [[282.262194 , 286.34635361],
+ [288.57815157, 290.02698113]],
- [[287.14196565, 284.68298455],
- [288.52590266, 273.69692215]]])
+ [[275.374152 , 283.08613936],
+ [282.03531027, 280.16394984]]])
Coordinates:
* time (time) datetime64[ns] 24B 2018-01-01 2018-01-02 2018-01-03
* lat (lat) float64 16B 25.0 40.0
* lon (lon) float64 16B -100.0 -80.0
Attributes:
units: kelvin
- standard_name: air_temperature
+ [[275.374152 , 283.08613936],
+ [282.03531027, 280.16394984]]])
- time(time)datetime64[ns]2018-01-01 2018-01-02 2018-01-03
array(['2018-01-01T00:00:00.000000000', '2018-01-02T00:00:00.000000000',
+ '2018-01-03T00:00:00.000000000'], dtype='datetime64[ns]')
- lat(lat)float6425.0 40.0
array([25., 40.])
- lon(lon)float64-100.0 -80.0
array([-100., -80.])
- timePandasIndex
PandasIndex(DatetimeIndex(['2018-01-01', '2018-01-02', '2018-01-03'], dtype='datetime64[ns]', name='time', freq='D'))
- latPandasIndex
PandasIndex(Index([25.0, 40.0], dtype='float64', name='lat'))
- lonPandasIndex
PandasIndex(Index([-100.0, -80.0], dtype='float64', name='lon'))
- units :
- kelvin
- standard_name :
- air_temperature
As described above, the arguments to .loc
must be in the order of the DataArray
’s dimensions. Attempting to slice data without ordering arguments properly can cause errors, as shown below:
@@ -8059,10 +8059,10 @@ Access netCDF data with
@@ -8504,17 +8504,17 @@ Subsetting the
positive: down
Grib_level_type: 100
_CoordinateAxisType: Pressure
- _CoordinateZisPositive: down- units :
- hPa
- long_name :
- Isobaric surface
- positive :
- down
- Grib_level_type :
- 100
- _CoordinateAxisType :
- Pressure
- _CoordinateZisPositive :
- down
(As described earlier in this tutorial, we can also use dictionary syntax to select specific DataArrays
; in this case, we would write ds['isobaric1']
.)
Many of the subsetting operations usable on DataArrays
can also be used on Datasets
. However, when used on Datasets
, these operations are performed on every DataArray
in the Dataset
, as shown below:
@@ -8916,7 +8916,7 @@ Subsetting the
geospatial_lat_min: 10.753308882144761
geospatial_lat_max: 46.8308828962289
geospatial_lon_min: -153.88242040519995
- geospatial_lon_max: -42.666108129242815As shown above, the subsetting operation performed on the Dataset
returned a new Dataset
. If only a single DataArray
is needed from this new Dataset
, it can be retrieved using the familiar dot notation:
@@ -9356,7 +9356,7 @@ Subsetting the
Grib1_TableVersion: 131
Grib1_Parameter: 11
Grib1_Level_Type: 100
- Grib1_Level_Desc: Isobaric surface- long_name :
- Temperature @ Isobaric surface
- units :
- K
- description :
- Temperature
- grid_mapping :
- LambertConformal_Projection
- Grib_Variable_Id :
- VAR_7-15-131-11_L100
- Grib1_Center :
- 7
- Grib1_Subcenter :
- 15
- Grib1_TableVersion :
- 131
- Grib1_Parameter :
- 11
- Grib1_Level_Type :
- 100
- Grib1_Level_Desc :
- Isobaric surface
@@ -9790,19 +9790,19 @@ Aggregation operations
+ dtype='float32', name='isobaric1'))
@@ -10226,7 +10226,7 @@ Simple visualization with
-[<matplotlib.lines.Line2D at 0x7f2e0f58d130>]
+[<matplotlib.lines.Line2D at 0x7f505db3d9d0>]
@@ -10250,7 +10250,7 @@ Customizing the plot
-[<matplotlib.lines.Line2D at 0x7f2e0f58eff0>]
+[<matplotlib.lines.Line2D at 0x7f5055a98d40>]
@@ -10268,7 +10268,7 @@ Plotting 2-D data
-<matplotlib.collections.QuadMesh at 0x7f2df9c43b60>
+<matplotlib.collections.QuadMesh at 0x7f5055ad1be0>
@@ -10667,7 +10667,7 @@ Resources and references
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -10796,7 +10796,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/foundations/conda.html b/foundations/conda.html
index c07684127..6f809cfd0 100644
--- a/foundations/conda.html
+++ b/foundations/conda.html
@@ -79,7 +79,7 @@
-
+
@@ -913,7 +913,7 @@ Resources and References
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -1042,7 +1042,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/foundations/getting-started-github.html b/foundations/getting-started-github.html
index 4a2af1d14..ec22e00df 100644
--- a/foundations/getting-started-github.html
+++ b/foundations/getting-started-github.html
@@ -81,7 +81,7 @@
-
+
@@ -768,7 +768,7 @@ Getting Started with GitHub
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -897,7 +897,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/foundations/getting-started-jupyter.html b/foundations/getting-started-jupyter.html
index b1d2107c0..b95652e74 100644
--- a/foundations/getting-started-jupyter.html
+++ b/foundations/getting-started-jupyter.html
@@ -79,7 +79,7 @@
-
+
@@ -905,7 +905,7 @@ Resources and references
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -1034,7 +1034,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/foundations/getting-started-python.html b/foundations/getting-started-python.html
index 286ad4516..19ac49850 100644
--- a/foundations/getting-started-python.html
+++ b/foundations/getting-started-python.html
@@ -81,7 +81,7 @@
-
+
@@ -779,7 +779,7 @@ Topics
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -908,7 +908,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/foundations/github/basic-git.html b/foundations/github/basic-git.html
index 441aa5056..32e0b6b24 100644
--- a/foundations/github/basic-git.html
+++ b/foundations/github/basic-git.html
@@ -79,7 +79,7 @@
-
+
@@ -1222,7 +1222,7 @@ References
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -1351,7 +1351,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/foundations/github/contribute-to-pythia.html b/foundations/github/contribute-to-pythia.html
index d1e1bad12..11ebc0cc2 100644
--- a/foundations/github/contribute-to-pythia.html
+++ b/foundations/github/contribute-to-pythia.html
@@ -79,7 +79,7 @@
-
+
@@ -885,7 +885,7 @@ Summary
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -1014,7 +1014,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/foundations/github/git-branches.html b/foundations/github/git-branches.html
index 6dac4b319..4e316269f 100644
--- a/foundations/github/git-branches.html
+++ b/foundations/github/git-branches.html
@@ -79,7 +79,7 @@
-
+
@@ -1036,7 +1036,7 @@ Resources and references
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -1165,7 +1165,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/foundations/github/github-advanced.html b/foundations/github/github-advanced.html
index 9e93b611f..def634b01 100644
--- a/foundations/github/github-advanced.html
+++ b/foundations/github/github-advanced.html
@@ -77,7 +77,7 @@
-
+
@@ -810,7 +810,7 @@ References
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -939,7 +939,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/foundations/github/github-cloning-forking.html b/foundations/github/github-cloning-forking.html
index c03c6f72a..18b821529 100644
--- a/foundations/github/github-cloning-forking.html
+++ b/foundations/github/github-cloning-forking.html
@@ -79,7 +79,7 @@
-
+
@@ -988,7 +988,7 @@ References
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -1117,7 +1117,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/foundations/github/github-issues.html b/foundations/github/github-issues.html
index fe56bf8f1..cf5e4670a 100644
--- a/foundations/github/github-issues.html
+++ b/foundations/github/github-issues.html
@@ -79,7 +79,7 @@
-
+
@@ -875,7 +875,7 @@ References
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -1004,7 +1004,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/foundations/github/github-pull-request.html b/foundations/github/github-pull-request.html
index 566d2d767..a2f449208 100644
--- a/foundations/github/github-pull-request.html
+++ b/foundations/github/github-pull-request.html
@@ -79,7 +79,7 @@
-
+
@@ -946,7 +946,7 @@ References
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -1075,7 +1075,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/foundations/github/github-repos.html b/foundations/github/github-repos.html
index 7d26de757..389418ea0 100644
--- a/foundations/github/github-repos.html
+++ b/foundations/github/github-repos.html
@@ -79,7 +79,7 @@
-
+
@@ -885,7 +885,7 @@ References
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -1014,7 +1014,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/foundations/github/github-setup-advanced.html b/foundations/github/github-setup-advanced.html
index f2123372f..71344fd0b 100644
--- a/foundations/github/github-setup-advanced.html
+++ b/foundations/github/github-setup-advanced.html
@@ -79,7 +79,7 @@
-
+
@@ -924,7 +924,7 @@ References
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -1053,7 +1053,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/foundations/github/github-workflows.html b/foundations/github/github-workflows.html
index a5c6b6dfc..17e8fd580 100644
--- a/foundations/github/github-workflows.html
+++ b/foundations/github/github-workflows.html
@@ -79,7 +79,7 @@
-
+
@@ -1253,7 +1253,7 @@ References
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -1382,7 +1382,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/foundations/github/review-pr.html b/foundations/github/review-pr.html
index f5b0820fb..fe5674aa9 100644
--- a/foundations/github/review-pr.html
+++ b/foundations/github/review-pr.html
@@ -79,7 +79,7 @@
-
+
@@ -918,7 +918,7 @@ Resources and References
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -1047,7 +1047,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/foundations/github/what-is-github.html b/foundations/github/what-is-github.html
index 27ef2dcd4..d0e70d102 100644
--- a/foundations/github/what-is-github.html
+++ b/foundations/github/what-is-github.html
@@ -81,7 +81,7 @@
-
+
@@ -916,7 +916,7 @@ References
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -1045,7 +1045,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/foundations/how-to-run-python.html b/foundations/how-to-run-python.html
index 8b1aab94d..d7e56e4bc 100644
--- a/foundations/how-to-run-python.html
+++ b/foundations/how-to-run-python.html
@@ -79,7 +79,7 @@
-
+
@@ -871,7 +871,7 @@ Resources and References
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -1000,7 +1000,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/foundations/jupyter.html b/foundations/jupyter.html
index 0d2537ca8..901251796 100644
--- a/foundations/jupyter.html
+++ b/foundations/jupyter.html
@@ -79,7 +79,7 @@
-
+
@@ -885,7 +885,7 @@ Resources and References
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -1014,7 +1014,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/foundations/jupyterlab.html b/foundations/jupyterlab.html
index 1565427e6..94676c432 100644
--- a/foundations/jupyterlab.html
+++ b/foundations/jupyterlab.html
@@ -79,7 +79,7 @@
-
+
@@ -1161,7 +1161,7 @@ Resources and references
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -1290,7 +1290,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/foundations/markdown.html b/foundations/markdown.html
index 80c1a4850..364430a39 100644
--- a/foundations/markdown.html
+++ b/foundations/markdown.html
@@ -79,7 +79,7 @@
-
+
@@ -754,7 +754,7 @@ Formatted Text in the Notebook with Markdown
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -883,7 +883,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/foundations/overview.html b/foundations/overview.html
index c8dc2806e..344643277 100644
--- a/foundations/overview.html
+++ b/foundations/overview.html
@@ -79,7 +79,7 @@
-
+
@@ -778,7 +778,7 @@ Topics
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -907,7 +907,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/foundations/quickstart.html b/foundations/quickstart.html
index c1a4cabac..8e51f8ba9 100644
--- a/foundations/quickstart.html
+++ b/foundations/quickstart.html
@@ -81,7 +81,7 @@
-
+
@@ -1267,7 +1267,7 @@ Resources and references
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -1396,7 +1396,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/foundations/terminal.html b/foundations/terminal.html
index 634495814..c4cb654ea 100644
--- a/foundations/terminal.html
+++ b/foundations/terminal.html
@@ -79,7 +79,7 @@
-
+
@@ -881,7 +881,7 @@ Resources and References
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -1010,7 +1010,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/foundations/why-python.html b/foundations/why-python.html
index abbbd234f..b955e39c2 100644
--- a/foundations/why-python.html
+++ b/foundations/why-python.html
@@ -79,7 +79,7 @@
-
+
@@ -791,7 +791,7 @@ Open source
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -920,7 +920,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/genindex.html b/genindex.html
index 81c713d97..f6f7addda 100644
--- a/genindex.html
+++ b/genindex.html
@@ -76,7 +76,7 @@
-
+
@@ -648,7 +648,7 @@ Index
@@ -777,7 +777,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/landing-page.html b/landing-page.html
index ff147bc66..276e728be 100644
--- a/landing-page.html
+++ b/landing-page.html
@@ -80,7 +80,7 @@
-
+
@@ -776,7 +776,7 @@ A community learning resource for Python-based computing in the geosciences<
Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/preamble/how-to-cite.html b/preamble/how-to-cite.html
index 6055d6478..8dfbb5b1d 100644
--- a/preamble/how-to-cite.html
+++ b/preamble/how-to-cite.html
@@ -79,7 +79,7 @@
-
+
@@ -755,7 +755,7 @@ How to Cite This Book
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -884,7 +884,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/preamble/how-to-use.html b/preamble/how-to-use.html
index 626d2a29a..a79c9377d 100644
--- a/preamble/how-to-use.html
+++ b/preamble/how-to-use.html
@@ -79,7 +79,7 @@
-
+
@@ -895,7 +895,7 @@ Interacting with Jupyter Books locally
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
@@ -1024,7 +1024,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/search.html b/search.html
index 57210f52a..705201479 100644
--- a/search.html
+++ b/search.html
@@ -78,7 +78,7 @@
-
+
@@ -673,7 +673,7 @@ Search
@@ -802,7 +802,7 @@ Contribute
By the Project Pythia Community.
- Last updated on 15 May 2024.
+ Last updated on 20 May 2024.
diff --git a/searchindex.js b/searchindex.js
index 18d9c718b..f531c0445 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles": {"2nd Derivative": [[15, "nd-derivative"]], "A community learning resource for Python-based computing in the geosciences": [[48, "a-community-learning-resource-for-python-based-computing-in-the-geosciences"]], "A content subsection": [[1, "a-content-subsection"]], "A figure with two different regional maps": [[3, "a-figure-with-two-different-regional-maps"]], "A little history and nomenclature": [[28, "a-little-history-and-nomenclature"]], "A simple query of just the year:": [[7, "a-simple-query-of-just-the-year"]], "A very first Python program": [[45, "a-very-first-python-program"]], "About version control and git": [[28, "about-version-control-and-git"]], "Access Data variables and Coordinates in a Dataset": [[23, "access-data-variables-and-coordinates-in-a-dataset"]], "Access netCDF data with xr.open_dataset": [[23, "access-netcdf-data-with-xr-open-dataset"]], "Add a Box Around the Text": [[9, "add-a-box-around-the-text"]], "Add a fancy background image to the map.": [[3, "add-a-fancy-background-image-to-the-map"]], "Add cartographic features to the map": [[3, "add-cartographic-features-to-the-map"]], "Add in the cartographic shapefiles": [[3, "add-in-the-cartographic-shapefiles"]], "Add some predefined features": [[3, "add-some-predefined-features"]], "Adding Annotations": [[9, "adding-annotations"]], "Adding labels and a grid": [[11, "adding-labels-and-a-grid"]], "Adding labels to an Axes object": [[11, "adding-labels-to-an-axes-object"]], "Adding titles to each subplot": [[11, "adding-titles-to-each-subplot"]], "Additional Resources": [[10, "additional-resources"]], "Advanced GitHub Topics": [[31, "advanced-github-topics"]], "Aggregation Methods": [[20, "aggregation-methods"]], "Aggregation operations": [[23, "aggregation-operations"]], "An example of plotting data": [[3, "an-example-of-plotting-data"]], "Animations": [[10, "animations"]], "Annotations, Colorbars, and Advanced Layouts": [[9, "annotations-colorbars-and-advanced-layouts"]], "Another content subsection": [[1, "another-content-subsection"]], "Apply & Combine": [[20, "apply-combine"]], "Applying operations to a DataFrame": [[18, "applying-operations-to-a-dataframe"]], "Approximate selection and interpolation": [[23, "approximate-selection-and-interpolation"]], "Arithmetic": [[14, "arithmetic"]], "Arithmetic Operations": [[20, "arithmetic-operations"]], "Array comparisons": [[13, "array-comparisons"]], "Array math functions": [[14, "array-math-functions"]], "Arrays of numbers with NumPy": [[45, "arrays-of-numbers-with-numpy"]], "Assign dimension names": [[23, "assign-dimension-names"]], "Auxiliary Coordinates": [[5, "auxiliary-coordinates"]], "Basic Colorbars": [[9, "basic-colorbars"]], "Basic Line Plots": [[11, "basic-line-plots"]], "Basic Python data types": [[45, "basic-python-data-types"]], "Basic Statistics": [[18, "basic-statistics"]], "Basic Version Control with git": [[28, "basic-version-control-with-git"]], "Basic concepts: map projections and GeoAxes": [[3, "basic-concepts-map-projections-and-geoaxes"]], "Basic flow control": [[45, "basic-flow-control"]], "Blocked algorithms": [[21, "blocked-algorithms"]], "Blocking": [[15, "blocking"]], "Building the book locally": [[0, "building-the-book-locally"]], "Building the site": [[0, "building-the-site"]], "Calculating ENSO with Xarray": [[22, "calculating-enso-with-xarray"]], "Calculating coastal tides with the timedelta class": [[7, "calculating-coastal-tides-with-the-timedelta-class"]], "Cartopy": [[2, "cartopy"]], "Cartopy\u2019s set_extent method": [[3, "cartopys-set-extent-method"]], "Cell Bounds": [[5, "cell-bounds"]], "Character strings (str)": [[45, "character-strings-str"]], "Checking out a previous commit": [[28, "checking-out-a-previous-commit"]], "Choosing a Python Platform": [[40, "choosing-a-python-platform"]], "Classes of colormaps": [[9, "classes-of-colormaps"]], "Clone, branch, change, commit, push": [[37, "clone-branch-change-commit-push"]], "Cloning a repository": [[32, "cloning-a-repository"]], "Cloning and Forking a Repository": [[32, "cloning-and-forking-a-repository"]], "Cloning and forking": [[32, "cloning-and-forking"]], "Cloning the remote repository": [[37, "cloning-the-remote-repository"]], "Code Cells": [[42, "code-cells"]], "Colormap Overview": [[9, "colormap-overview"]], "Command Mode Shortcuts": [[42, "command-mode-shortcuts"]], "Commands we used in this tutorial": [[28, "commands-we-used-in-this-tutorial"]], "Committing": [[28, "committing"]], "Compare across branches": [[28, "compare-across-branches"]], "Compare across commits": [[28, "compare-across-commits"]], "Comparing versions": [[28, "comparing-versions"]], "Complete Workflow": [[30, "complete-workflow"]], "Computations and Masks with Xarray": [[20, "computations-and-masks-with-xarray"]], "Compute anomaly": [[20, "compute-anomaly"]], "Compute climatology": [[20, "compute-climatology"]], "Compute the anomalies": [[22, "compute-the-anomalies"]], "Compute the result": [[21, "compute-the-result"]], "Configuring Your GitHub Account": [[36, "configuring-your-github-account"]], "Consoles": [[42, "consoles"]], "Constants": [[14, "constants"]], "Content section": [[31, "content-section"]], "Contour and Filled Contour Plots": [[11, "contour-and-filled-contour-plots"]], "Contribute to Project Pythia via GitHub": [[29, "contribute-to-project-pythia-via-github"]], "Contributing a new Jupyter Notebook": [[0, "contributing-a-new-jupyter-notebook"]], "Controlling the output format with strftime()": [[7, "controlling-the-output-format-with-strftime"]], "Coordinate System Information": [[5, "coordinate-system-information"]], "Coordinate variables": [[5, "coordinate-variables"]], "Core libraries": [[16, "core-libraries"]], "Create Some Sample Data": [[9, "create-some-sample-data"]], "Create a DataArray with named Coordinates": [[23, "create-a-dataarray-with-named-coordinates"]], "Create a Dataset object": [[23, "create-a-dataset-object"]], "Create a Pull Request": [[29, "create-a-pull-request"]], "Create a conda environment": [[0, "create-a-conda-environment"]], "Create a dask.array object": [[21, "create-a-dask-array-object"]], "Create a map with a specified projection": [[3, "create-a-map-with-a-specified-projection"]], "Create a new branch": [[37, "create-a-new-branch"]], "Create a new feature branch": [[28, "create-a-new-feature-branch"]], "Create a pressure DataArray using the same coordinates": [[23, "create-a-pressure-dataarray-using-the-same-coordinates"]], "Create a regional map centered over New York State": [[3, "create-a-regional-map-centered-over-new-york-state"]], "Create an array of \u2018data\u2019": [[14, "create-an-array-of-data"]], "Create regional maps": [[3, "create-regional-maps"]], "Creating a Conda Environment": [[24, "creating-a-conda-environment"]], "Creating a New Branch": [[30, "creating-a-new-branch"]], "Creating and filling a variable": [[5, "creating-and-filling-a-variable"]], "Creating the file and dimensions": [[5, "creating-the-file-and-dimensions"]], "Creation and basic setup": [[5, "creation-and-basic-setup"]], "Creation of a DataArray object": [[23, "creation-of-a-dataarray-object"]], "Custom Colorbars": [[9, "custom-colorbars"]], "Customize your Plot": [[18, "customize-your-plot"]], "Customizing colors": [[11, "customizing-colors"]], "Customizing the plot": [[23, "customizing-the-plot"]], "Danger": [[1, null], [5, null], [18, null], [42, null]], "Dask Arrays with Xarray": [[21, "dask-arrays-with-xarray"], [21, "id1"]], "Dask Shortcomings": [[21, "dask-shortcomings"]], "Data Formats": [[4, "data-formats"]], "Data Setup": [[20, "data-setup"]], "Datetime": [[6, "datetime"]], "Dealing with Time Zones": [[7, "dealing-with-time-zones"]], "Deleting Branches": [[30, "deleting-branches"]], "Dictionaries (dict)": [[45, "dictionaries-dict"]], "Did you know?": [[38, null], [39, null], [39, null]], "Discussions": [[33, "discussions"]], "Displaying Images": [[11, "displaying-images"]], "Domain-specific libraries": [[16, "domain-specific-libraries"]], "Email notifications": [[36, "email-notifications"]], "Example usage of the datetime object": [[7, "example-usage-of-the-datetime-object"]], "Executing Jupyter": [[26, "executing-jupyter"]], "Exercise with dask.arrays": [[21, "exercise-with-dask-arrays"]], "Exploratory Data Analysis": [[18, "exploratory-data-analysis"]], "Explore some of Cartopy\u2019s map projections": [[3, "explore-some-of-cartopys-map-projections"]], "Extend Matplotlib\u2019s axes into georeferenced GeoAxes": [[3, "extend-matplotlibs-axes-into-georeferenced-geoaxes"]], "Extending to higher dimensions": [[15, "extending-to-higher-dimensions"]], "Extending to the DataFrame": [[18, "extending-to-the-dataframe"]], "FOSS + VCS + Web = GitHub": [[39, "foss-vcs-web-github"]], "FOSS and VCS on the Internet": [[39, "foss-and-vcs-on-the-internet"]], "Figure and Axes": [[11, "figure-and-axes"]], "Finding the difference between min and max": [[15, "finding-the-difference-between-min-and-max"]], "Floating point numbers (float)": [[45, "floating-point-numbers-float"]], "Forking Workflow": [[37, "forking-workflow"]], "Forking a repository": [[32, "forking-a-repository"]], "Forking the upstream repository": [[37, "forking-the-upstream-repository"]], "Formatted Text in the Notebook with Markdown": [[43, "formatted-text-in-the-notebook-with-markdown"]], "Free \\neq open source!": [[39, null]], "Free and open-source software (FOSS)": [[39, "free-and-open-source-software-foss"]], "Full time zone support with the pytz module": [[7, "full-time-zone-support-with-the-pytz-module"]], "Generate a random numpy array": [[23, "generate-a-random-numpy-array"]], "Generate a secure personal access token for https": [[36, "generate-a-secure-personal-access-token-for-https"]], "Generate an SSH public/private keypair": [[36, "generate-an-ssh-public-private-keypair"]], "Generate test data using NumPy": [[11, "generate-test-data-using-numpy"]], "Generation": [[14, "generation"]], "Get a Quick Look at the Beginning/End of your DataFrame": [[18, "get-a-quick-look-at-the-beginning-end-of-your-dataframe"]], "Getting Started with GitHub": [[25, "getting-started-with-github"]], "Getting Started with Jupyter": [[26, "getting-started-with-jupyter"]], "Getting Started with Python": [[27, "getting-started-with-python"]], "Git Branches": [[30, "git-branches"]], "Git Feature Branch Workflow": [[37, "git-feature-branch-workflow"]], "Git commands mini-reference": [[28, "git-commands-mini-reference"]], "Git is a distributed VCS": [[28, "git-is-a-distributed-vcs"]], "Git is not GitHub": [[28, "git-is-not-github"]], "GitHub Repositories": [[35, "github-repositories"]], "GitHub Workflows": [[34, "github-workflows"], [37, "github-workflows"]], "GitHub notifications": [[36, "github-notifications"]], "GitHub secure key generation": [[36, "github-secure-key-generation"]], "GitHub workflows": [[37, "id1"]], "GitHub\u2019s distributed repositories": [[35, "githubs-distributed-repositories"]], "Giving NumPy room for broadcasting": [[15, "giving-numpy-room-for-broadcasting"]], "Going back in time": [[28, "going-back-in-time"]], "Gridded Data": [[5, "gridded-data"]], "GroupBy: Split, Apply, Combine": [[20, "groupby-split-apply-combine"]], "HTTPS vs SSH: Either is fine!": [[36, null]], "Have you forked the repository?": [[30, null]], "High level languages": [[47, "high-level-languages"]], "High-level libraries": [[16, "high-level-libraries"]], "Histograms": [[10, "histograms"]], "Histograms, Pie Charts, and Animations": [[10, "histograms-pie-charts-and-animations"]], "How to Cite This Book": [[49, "how-to-cite-this-book"]], "How to Use This Book": [[50, "how-to-use-this-book"]], "How to Use This Page": [[1, "how-to-use-this-page"]], "Imports": [[1, "imports"], [3, "imports"], [5, "imports"], [7, "imports"], [9, "imports"], [10, "imports"], [11, "imports"], [13, "imports"], [14, "imports"], [15, "imports"], [18, "imports"], [20, "imports"], [21, "imports"], [22, "imports"], [23, "imports"]], "In this section": [[8, "in-this-section"]], "Indexing": [[14, "indexing"]], "Indexing a Series": [[18, "indexing-a-series"]], "Indexing and subsetting arrays": [[14, "indexing-and-subsetting-arrays"]], "Indexing arrays with boolean values": [[13, "indexing-arrays-with-boolean-values"]], "Indexing using arrays of indices": [[13, "indexing-using-arrays-of-indices"]], "Info": [[1, null], [3, null], [3, null], [3, null], [3, null], [5, null], [5, null], [7, null], [11, null], [11, null], [11, null], [11, null], [13, null], [13, null], [14, null], [18, null], [18, null], [18, null], [18, null], [18, null], [20, null], [20, null], [23, null], [23, null], [23, null], [23, null], [42, null]], "Initialize the DataArray with complete coordinate info": [[23, "initialize-the-dataarray-with-complete-coordinate-info"]], "Inspect a git repository with git status": [[28, "inspect-a-git-repository-with-git-status"]], "Install pre-commit hooks": [[0, "install-pre-commit-hooks"]], "Installing Conda": [[24, "installing-conda"]], "Installing Python in Jupyter": [[41, "installing-python-in-jupyter"]], "Installing Python in the Terminal": [[46, "installing-python-in-the-terminal"]], "Installing and Managing Python with Conda": [[24, "installing-and-managing-python-with-conda"]], "Installing and Running Python": [[40, "installing-and-running-python"]], "Installing and managing Python with Conda": [[40, "installing-and-managing-python-with-conda"]], "Integers (int)": [[45, "integers-int"]], "Interacting with Jupyter Books locally": [[50, "interacting-with-jupyter-books-locally"]], "Interacting with Jupyter Notebooks in the cloud via Binder": [[50, "interacting-with-jupyter-notebooks-in-the-cloud-via-binder"]], "Intermediate NumPy": [[13, "intermediate-numpy"]], "Interpolation": [[23, "interpolation"]], "Interpreted languages": [[47, "interpreted-languages"]], "Introducing the DataArray and Dataset": [[23, "introducing-the-dataarray-and-dataset"]], "Introduction to Cartopy": [[3, "introduction-to-cartopy"]], "Introduction to Pandas": [[18, "introduction-to-pandas"]], "Introduction to Xarray": [[23, "introduction-to-xarray"]], "Investigating Extreme Values": [[18, "investigating-extreme-values"]], "Issues": [[33, "issues"]], "Issues and Discussions": [[33, "issues-and-discussions"]], "Issues with preservation of attributes": [[23, "issues-with-preservation-of-attributes"]], "Jupyter Hub": [[26, "jupyter-hub"]], "Jupyter Kernels": [[26, "jupyter-kernels"]], "Jupyter Lab": [[26, "jupyter-lab"]], "Jupyter Notebooks": [[26, "jupyter-notebooks"], [40, "jupyter-notebooks"]], "JupyterLab": [[42, "jupyterlab"]], "Keeping your dev environment up to date": [[0, "keeping-your-dev-environment-up-to-date"]], "Labels and Grid Lines": [[11, "labels-and-grid-lines"]], "Lambert Azimuthal Equal Area Projection": [[3, "lambert-azimuthal-equal-area-projection"]], "Last Section": [[1, "last-section"]], "Learn More": [[21, "learn-more"]], "Learning Objectives": [[21, "learning-objectives"]], "Left Sidebar": [[42, "left-sidebar"]], "Lists": [[45, "lists"]], "Local Execution Model": [[26, "local-execution-model"]], "Look ahead/behind": [[15, "look-ahead-behind"]], "Loops in Python": [[45, "loops-in-python"]], "Magics": [[42, "magics"]], "Make changes and commit": [[37, "make-changes-and-commit"]], "Make some changes": [[28, "make-some-changes"]], "Make the edits": [[29, "make-the-edits"]], "Make time and space coordinates": [[23, "make-time-and-space-coordinates"]], "Making a Pull Request": [[37, "making-a-pull-request"], [37, "id2"]], "Manipulate a dask.array object as you would a numpy array": [[21, "manipulate-a-dask-array-object-as-you-would-a-numpy-array"]], "Markdown Cells": [[42, "markdown-cells"]], "Masking Data": [[20, "masking-data"]], "Matplotlib": [[8, "matplotlib"]], "Matplotlib Basics": [[11, "matplotlib-basics"]], "Merging Branches": [[30, "merging-branches"]], "Mollweide Projection (often used with global satellite mosaics)": [[3, "mollweide-projection-often-used-with-global-satellite-mosaics"]], "Mosaic Subplots": [[9, "mosaic-subplots"]], "Multidimensional slicing": [[14, "multidimensional-slicing"]], "Navigate to Your Fork": [[34, "navigate-to-your-fork"]], "Nearest-neighbor sampling": [[23, "nearest-neighbor-sampling"]], "NetCDF and CF: The Basics": [[5, "netcdf-and-cf-the-basics"]], "No experience necessary!": [[39, "no-experience-necessary"]], "Note:": [[3, null]], "NumPy": [[12, "numpy"]], "NumPy Basics": [[14, "numpy-basics"]], "NumPy Broadcasting": [[15, "numpy-broadcasting"]], "NumPy-like selection": [[23, "numpy-like-selection"]], "Object Oriented languages": [[47, "object-oriented-languages"]], "Observational Data": [[5, "observational-data"]], "One more selection method: .loc": [[23, "one-more-selection-method-loc"]], "Open a Draft Pull Request": [[34, "open-a-draft-pull-request"]], "Open source": [[47, "open-source"]], "Opening a Pull Request": [[34, "opening-a-pull-request"]], "Opening a Pull Request on GitHub": [[34, "opening-a-pull-request-on-github"]], "Opening netCDF data": [[23, "opening-netcdf-data"]], "Organization of Pythia Foundations": [[50, "organization-of-pythia-foundations"]], "Other IDEs": [[40, "other-ides"]], "Other considerations": [[9, "other-considerations"]], "Other high level computation functionality": [[20, "other-high-level-computation-functionality"]], "Overview": [[1, "overview"], [3, "overview"], [5, "overview"], [7, "overview"], [9, "overview"], [10, "overview"], [11, "overview"], [13, "overview"], [14, "overview"], [15, "overview"], [16, "overview"], [18, "overview"], [20, "overview"], [22, "overview"], [23, "overview"], [24, "overview"], [26, "overview"], [40, "overview"], [41, "overview"], [42, "overview"], [44, "overview"], [46, "overview"]], "Overview:": [[28, "overview"], [29, "overview"], [30, "overview"], [31, "overview"], [32, "overview"], [33, "overview"], [34, "overview"], [35, "overview"], [36, "overview"], [37, "overview"], [38, "overview"], [39, "overview"]], "Pandas": [[17, "pandas"]], "Parallel and lazy computation using dask.array with Xarray": [[21, "parallel-and-lazy-computation-using-dask-array-with-xarray"]], "Parsing lightning data timestamps with the datetime.strptime method": [[7, "parsing-lightning-data-timestamps-with-the-datetime-strptime-method"]], "Perform calculations with NumPy": [[14, "perform-calculations-with-numpy"]], "Pie Charts": [[10, "pie-charts"]], "Plotting 2-D data": [[23, "plotting-2-d-data"]], "Plotting with Xarray": [[23, "plotting-with-xarray"]], "Preamble": [[50, "preamble"]], "Prerequisites": [[1, "prerequisites"], [3, "prerequisites"], [5, "prerequisites"], [7, "prerequisites"], [9, "prerequisites"], [10, "prerequisites"], [11, "prerequisites"], [13, "prerequisites"], [14, "prerequisites"], [15, "prerequisites"], [18, "prerequisites"], [20, "prerequisites"], [21, "prerequisites"], [22, "prerequisites"], [23, "prerequisites"], [24, "prerequisites"], [26, "prerequisites"], [28, "prerequisites"], [29, "prerequisites"], [30, "prerequisites"], [31, "prerequisites"], [32, "prerequisites"], [33, "prerequisites"], [34, "prerequisites"], [35, "prerequisites"], [36, "prerequisites"], [37, "prerequisites"], [38, "prerequisites"], [39, "prerequisites"], [40, "prerequisites"], [41, "prerequisites"], [42, "prerequisites"], [46, "prerequisites"]], "Print Time with a Different Time Zone": [[7, "print-time-with-a-different-time-zone"]], "Project Pythia Notebook Template": [[1, "project-pythia-notebook-template"], [1, "id1"]], "Providing a Pull Request Review": [[38, "providing-a-pull-request-review"]], "Pull Request Features": [[34, "pull-request-features"]], "Pull Requests": [[30, null]], "Push the feature branch to the remote repository": [[37, "push-the-feature-branch-to-the-remote-repository"]], "Putting this all together": [[11, "putting-this-all-together"]], "Pythia Foundations": [[48, "pythia-foundations"]], "Pythia Foundations Contributor\u2019s Guide": [[0, "pythia-foundations-contributors-guide"]], "Python in Jupyter": [[41, "python-in-jupyter"]], "Python in the Terminal": [[46, "python-in-the-terminal"]], "Quick Plots of Your Data": [[18, "quick-plots-of-your-data"]], "Quickstart: Zero to Python": [[45, "quickstart-zero-to-python"]], "Raw Cells": [[42, "raw-cells"]], "Reading and writing dates and times": [[7, "reading-and-writing-dates-and-times"]], "Reading data with Dask and Xarray": [[21, "reading-data-with-dask-and-xarray"]], "References": [[28, "references"], [31, "references"], [32, "references"], [33, "references"], [34, "references"], [35, "references"], [36, "references"], [37, "references"], [39, "references"]], "Register for a free GitHub account": [[39, "register-for-a-free-github-account"]], "Remote Execution Model": [[26, "remote-execution-model"]], "Rendering Equations": [[9, "rendering-equations"]], "Replacing values": [[13, "replacing-values"]], "Requesting Pull Request Reviews": [[38, "requesting-pull-request-reviews"]], "Resampling": [[18, "resampling"]], "Resources and References": [[3, "resources-and-references"], [5, "resources-and-references"], [7, "resources-and-references"], [11, "resources-and-references"], [18, "resources-and-references"], [20, "resources-and-references"], [22, "resources-and-references"], [24, "resources-and-references"], [38, "resources-and-references"], [40, "resources-and-references"], [41, "resources-and-references"], [46, "resources-and-references"]], "Resources and references": [[1, "resources-and-references"], [9, "resources-and-references"], [13, "resources-and-references"], [14, "resources-and-references"], [15, "resources-and-references"], [21, "resources-and-references"], [23, "resources-and-references"], [26, "resources-and-references"], [30, "resources-and-references"], [42, "resources-and-references"], [45, "resources-and-references"]], "Reviewing Pull Requests": [[38, "reviewing-pull-requests"]], "Run this code from your browser!": [[45, "run-this-code-from-your-browser"]], "Running JupyterLab Notebooks": [[42, "running-jupyterlab-notebooks"]], "Running Pythia Foundations examples": [[50, "running-pythia-foundations-examples"]], "Running Python in Jupyter": [[41, "running-python-in-jupyter"]], "Running Python in the Terminal": [[46, "running-python-in-the-terminal"]], "Safety tip on synchronization": [[37, "safety-tip-on-synchronization"], [37, "id3"]], "Saving an Animation": [[10, "saving-an-animation"]], "Saving your notebook and exiting": [[41, "saving-your-notebook-and-exiting"]], "Scatterplot": [[11, "scatterplot"]], "See how many days have elapsed since the strike:": [[7, "see-how-many-days-have-elapsed-since-the-strike"]], "Select the Ni\u00f1o 3.4 region": [[22, "select-the-nino-3-4-region"]], "Selecting with .sel()": [[23, "selecting-with-sel"]], "Set Up": [[42, "set-up"]], "Set useful attributes": [[23, "set-useful-attributes"]], "Setting Up a New Notebook": [[1, "setting-up-a-new-notebook"]], "Setting up a Remote Branch": [[30, "setting-up-a-remote-branch"]], "Shared Colorbars": [[9, "shared-colorbars"]], "Shell Commands": [[42, "shell-commands"]], "Shutting Down": [[42, "shutting-down"]], "Simple visualization with .plot()": [[23, "simple-visualization-with-plot"]], "Slices": [[14, "slices"]], "Slicing along coordinates": [[23, "slicing-along-coordinates"]], "Slicing and Dicing the DataFrame and Series": [[18, "slicing-and-dicing-the-dataframe-and-series"]], "Some basic graphics with Matplotlib": [[45, "some-basic-graphics-with-matplotlib"]], "Some core terminology": [[7, "some-core-terminology"]], "Some other git commands you\u2019ll want to know": [[28, "some-other-git-commands-youll-want-to-know"]], "Special Variables": [[42, "special-variables"]], "Specifying Chunks": [[21, null]], "Split": [[20, "split"]], "Stage and commit our changes": [[28, "stage-and-commit-our-changes"]], "Staging": [[28, "staging"]], "Start with the main branch": [[37, "start-with-the-main-branch"]], "Station IDs": [[5, "station-ids"]], "Stay tuned!": [[39, null]], "Step 1: Initial State": [[10, "step-1-initial-state"]], "Step 2: Animation Progression Function": [[10, "step-2-animation-progression-function"]], "Step 3: Using FuncAnimation": [[10, "step-3-using-funcanimation"]], "Stop spamming me, GitHub!": [[36, "stop-spamming-me-github"]], "Stopping & Restarting the Kernel": [[42, "stopping-restarting-the-kernel"]], "Subplots": [[11, "subplots"]], "Subsetting Using the Datetime Column": [[18, "subsetting-using-the-datetime-column"]], "Subsetting and selection by coordinate values": [[23, "subsetting-and-selection-by-coordinate-values"]], "Subsetting the Dataset": [[23, "subsetting-the-dataset"]], "Success": [[1, null]], "Suggest a change": [[29, "suggest-a-change"]], "Summary": [[1, "summary"], [3, "summary"], [5, "summary"], [7, "summary"], [9, "summary"], [10, "summary"], [11, "summary"], [13, "summary"], [14, "summary"], [15, "summary"], [18, "summary"], [20, "summary"], [21, "summary"], [22, "summary"], [23, "summary"], [24, "summary"], [26, "summary"], [28, "summary"], [29, "summary"], [30, "summary"], [31, "summary"], [32, "summary"], [33, "summary"], [34, "summary"], [35, "summary"], [36, "summary"], [37, "summary"], [38, "summary"], [39, "summary"], [40, "summary"], [41, "summary"], [42, "summary"], [46, "summary"]], "Switch Branches": [[34, "switch-branches"]], "Switching Branches": [[30, "switching-branches"]], "Terminal": [[40, "terminal"]], "Terminals": [[42, "terminals"]], "Testing a bigger calculation": [[21, "testing-a-bigger-calculation"]], "Text Editor": [[42, "text-editor"]], "The Dataset: a container for DataArrays with shared coordinates": [[23, "the-dataset-a-container-for-dataarrays-with-shared-coordinates"]], "The JupyterLab Interface": [[42, "the-jupyterlab-interface"]], "The Main Branch": [[30, null]], "The Ni\u00f1o 3.4 Index": [[22, "the-nino-3-4-index"]], "The Normalize Class": [[9, "the-normalize-class"]], "The pandas DataFrame\u2026": [[18, "the-pandas-dataframe"]], "The pandas Series\u2026": [[18, "the-pandas-series"]], "Things to try": [[32, "things-to-try"]], "Things to try:": [[35, "things-to-try"]], "This example is": [[1, "this-example-is"]], "Time Versus Datetime modules": [[7, "time-versus-datetime-modules"]], "Time Zone Naive Versus Time Zone Aware datetime Objects": [[7, "time-zone-naive-versus-time-zone-aware-datetime-objects"]], "Time to make some changes": [[28, "time-to-make-some-changes"]], "Times and Dates in Python": [[7, "times-and-dates-in-python"]], "Tip": [[35, null], [35, null]], "Tip:": [[36, null], [36, null], [36, null]], "Topics": [[27, "topics"], [44, "topics"]], "Tutorials": [[16, "tutorials"]], "Updating Your Branches": [[30, "updating-your-branches"]], "Use lower-resolution shapefiles from Natural Earth": [[3, "use-lower-resolution-shapefiles-from-natural-earth"]], "Useful Conda commands": [[24, "useful-conda-commands"]], "Using .iloc and .loc to index": [[18, "using-iloc-and-loc-to-index"]], "Using add_subplot to create two different subplots within the figure": [[11, "using-add-subplot-to-create-two-different-subplots-within-the-figure"]], "Using ax.set_xlim and ax.set_ylim to control the plot boundaries": [[11, "using-ax-set-xlim-and-ax-set-ylim-to-control-the-plot-boundaries"]], "Using axes to slice arrays": [[13, "using-axes-to-slice-arrays"]], "Using broadcasting to implicitly loop over data": [[15, "using-broadcasting-to-implicitly-loop-over-data"]], "Using sharex and sharey to share plot limits": [[11, "using-sharex-and-sharey-to-share-plot-limits"]], "Using where with a custom fill value": [[20, "using-where-with-a-custom-fill-value"]], "Using where with multiple conditions": [[20, "using-where-with-multiple-conditions"]], "Using where with one condition": [[20, "using-where-with-one-condition"]], "Vectorize calculations to avoid explicit loops": [[15, "vectorize-calculations-to-avoid-explicit-loops"]], "Version control systems (VCS)": [[39, "version-control-systems-vcs"]], "Viewing the commit history with git log": [[28, "viewing-the-commit-history-with-git-log"]], "Visualize the computed Ni\u00f1o 3.4 index": [[22, "visualize-the-computed-nino-3-4-index"]], "Warning": [[1, null], [3, null], [13, null], [14, null], [14, null], [18, null], [42, null]], "Ways to View a Pull Request": [[38, "ways-to-view-a-pull-request"]], "What are Git branches?": [[30, "what-are-git-branches"]], "What are Issues and Discussions?": [[33, "what-are-issues-and-discussions"]], "What are Packages?": [[24, "what-are-packages"]], "What are some examples of repositories?": [[35, "what-are-some-examples-of-repositories"]], "What is GitHub?": [[39, "what-is-github"], [39, "id1"]], "What is UTC?": [[7, "what-is-utc"]], "What is Unix Time?": [[7, "what-is-unix-time"]], "What is a GitHub repository?": [[35, "what-is-a-github-repository"]], "What is a Pull Request Review?": [[38, "what-is-a-pull-request-review"]], "What is a Pull Request?": [[34, "what-is-a-pull-request"]], "What is broadcasting?": [[15, "what-is-broadcasting"]], "What is git?": [[28, "what-is-git"]], "What is version control (and why should we care)?": [[28, "what-is-version-control-and-why-should-we-care"]], "What now?": [[45, "what-now"]], "What to Look for When Reviewing": [[38, "what-to-look-for-when-reviewing"]], "What\u2019s Next": [[10, "whats-next"], [13, "whats-next"]], "What\u2019s Next?": [[3, "whats-next"], [5, "whats-next"], [7, "whats-next"], [11, "whats-next"], [18, "whats-next"], [24, "whats-next"], [28, "whats-next"], [30, "whats-next"], [31, "whats-next"], [32, "whats-next"], [33, "whats-next"], [34, "whats-next"], [35, "whats-next"], [36, "whats-next"], [37, "whats-next"], [38, "whats-next"], [39, "whats-next"], [40, "whats-next"], [41, "whats-next"], [46, "whats-next"]], "What\u2019s next": [[15, "whats-next"]], "What\u2019s next?": [[1, "whats-next"], [14, "whats-next"], [20, "whats-next"], [23, "whats-next"], [26, "whats-next"], [42, "whats-next"]], "What\u2019s the difference?": [[21, "whats-the-difference"]], "Why Matplotlib?": [[8, "why-matplotlib"]], "Why Python?": [[47, "why-python"]], "Why the difference?": [[21, "why-the-difference"]], "Windows users": [[32, null]], "Working with the Git Feature Branch Workflow": [[37, "working-with-the-git-feature-branch-workflow"]], "Wrap the array: first attempt": [[23, "wrap-the-array-first-attempt"]], "Writing the field": [[5, "writing-the-field"]], "Xarray": [[19, "xarray"]], "Xarray data structures are first-class dask collections": [[21, "xarray-data-structures-are-first-class-dask-collections"]], "Your first content section": [[1, "your-first-content-section"]], "Your second content section": [[1, "your-second-content-section"]], "a quick demonstration": [[1, "a-quick-demonstration"]], "arange": [[14, "arange"]], "dask.array contains these algorithms": [[21, "dask-array-contains-these-algorithms"]], "datetime module": [[7, "datetime-module"]], "header levels": [[1, "header-levels"]], "linspace": [[14, "linspace"]], "of further and further": [[1, "of-further-and-further"]], "time module": [[7, "time-module"]]}, "docnames": ["appendix/how-to-contribute", "appendix/template", "core/cartopy", "core/cartopy/cartopy", "core/data-formats", "core/data-formats/netcdf-cf", "core/datetime", "core/datetime/datetime", "core/matplotlib", "core/matplotlib/annotations-colorbars-layouts", "core/matplotlib/histograms-piecharts-animation", "core/matplotlib/matplotlib-basics", "core/numpy", "core/numpy/intermediate-numpy", "core/numpy/numpy-basics", "core/numpy/numpy-broadcasting", "core/overview", "core/pandas", "core/pandas/pandas", "core/xarray", "core/xarray/computation-masking", "core/xarray/dask-arrays-xarray", "core/xarray/enso-xarray", "core/xarray/xarray-intro", "foundations/conda", "foundations/getting-started-github", "foundations/getting-started-jupyter", "foundations/getting-started-python", "foundations/github/basic-git", "foundations/github/contribute-to-pythia", "foundations/github/git-branches", "foundations/github/github-advanced", "foundations/github/github-cloning-forking", "foundations/github/github-issues", "foundations/github/github-pull-request", "foundations/github/github-repos", "foundations/github/github-setup-advanced", "foundations/github/github-workflows", "foundations/github/review-pr", "foundations/github/what-is-github", "foundations/how-to-run-python", "foundations/jupyter", "foundations/jupyterlab", "foundations/markdown", "foundations/overview", "foundations/quickstart", "foundations/terminal", "foundations/why-python", "landing-page", "preamble/how-to-cite", "preamble/how-to-use"], "envversion": {"sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinxcontrib.bibtex": 9}, "filenames": ["appendix/how-to-contribute.md", "appendix/template.ipynb", "core/cartopy.md", "core/cartopy/cartopy.ipynb", "core/data-formats.md", "core/data-formats/netcdf-cf.ipynb", "core/datetime.md", "core/datetime/datetime.ipynb", "core/matplotlib.md", "core/matplotlib/annotations-colorbars-layouts.ipynb", "core/matplotlib/histograms-piecharts-animation.ipynb", "core/matplotlib/matplotlib-basics.ipynb", "core/numpy.md", "core/numpy/intermediate-numpy.ipynb", "core/numpy/numpy-basics.ipynb", "core/numpy/numpy-broadcasting.ipynb", "core/overview.md", "core/pandas.md", "core/pandas/pandas.ipynb", "core/xarray.md", "core/xarray/computation-masking.ipynb", "core/xarray/dask-arrays-xarray.ipynb", "core/xarray/enso-xarray.ipynb", "core/xarray/xarray-intro.ipynb", "foundations/conda.md", "foundations/getting-started-github.md", "foundations/getting-started-jupyter.ipynb", "foundations/getting-started-python.md", "foundations/github/basic-git.md", "foundations/github/contribute-to-pythia.md", "foundations/github/git-branches.md", "foundations/github/github-advanced.md", "foundations/github/github-cloning-forking.md", "foundations/github/github-issues.md", "foundations/github/github-pull-request.md", "foundations/github/github-repos.md", "foundations/github/github-setup-advanced.md", "foundations/github/github-workflows.md", "foundations/github/review-pr.md", "foundations/github/what-is-github.md", "foundations/how-to-run-python.md", "foundations/jupyter.md", "foundations/jupyterlab.ipynb", "foundations/markdown.md", "foundations/overview.md", "foundations/quickstart.ipynb", "foundations/terminal.md", "foundations/why-python.md", "landing-page.md", "preamble/how-to-cite.md", "preamble/how-to-use.md"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [8, 9, 12, 16, 19, 22, 25, 29, 44, 45, 47, 50], "0": [3, 5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 21, 22, 23, 24, 32, 42, 45, 49], "00": [5, 7, 14, 18, 20, 21, 22, 23], "000": 21, "000000": 18, "000000000": 23, "00000000e": 14, "000003814697266earth_radiu": 23, "000003814697266longitude_of_central_meridian": 23, "00000762939453standard_parallel": 23, "0001": [20, 22], "00010532": 15, "0002374649047852": 7, "000744e": 23, "0007539": 20, "0007784": 20, "000791": 20, "0008452": 20, "000896": 20, "000933": 20, "001": 21, "00119189": 23, "002e": 23, "003": [20, 21, 22], "004e": 23, "005718": 5, "005e": 23, "006453e": 23, "00686985": 21, "0078": 23, "0078125": 23, "00786958": 21, "00841842": 23, "008482": 22, "00900492": 23, "009292": 13, "00axi": 20, "00parent_variant_label": [20, 22], "00xarrai": 20, "01": [5, 7, 9, 14, 18, 20, 21, 22, 23, 49], "01012011": 15, "01191651": 23, "011contact": [20, 22], "01276068": 13, "012806e": 23, "01307774": 20, "01308931": 21, "01314461": 20, "01320827": 20, "01326215": 20, "01326arrai": 20, "01331": 20, "0133127": 20, "01336": 20, "0133611": 20, "01341": 20, "01345": 20, "01350665": 23, "01401365": 20, "01401687": 20, "01402068": 20, "01402271": 20, "01403356": 20, "01404917": 20, "01406252": 20, "014107": 22, "01412642": 20, "0142287": 20, "01432824": 20, "01442552": 20, "0145216": 20, "01476014": 20, "01491845": 20, "015000": 18, "01506364": 20, "01520228": 20, "0153321": 20, "01544082": 20, "01544118": 20, "01544321": 20, "01544476": 20, "0154475": 20, "01545036": 20, "01545238": 20, "01635301": 20, "01636147": 20, "01637137": 20, "01638114": 20, "01639009": 20, "01639998": 20, "01680517": 20, "01687253": 20, "01693714": 20, "0169601": 20, "01698041": 20, "01699162": 20, "0170424": 20, "01709175": 20, "0171173": 20, "01713431": 20, "01719594": 20, "0172386": 20, "01727939": 20, "0172919": 20, "0173173": 20, "0173297": 20, "0173445": 20, "0173862": 20, "01742125": 20, "01746694": 15, "01748013": 20, "01755834": 20, "01757395": 20, "01766813": 20, "0176847": 20, "01865": 22, "019159e": 23, "01t00": 23, "02": [5, 18, 20, 21, 22, 23], "02031067": 21, "02139036": 23, "02443356": 21, "02462827": 21, "025": [9, 11], "029993": 22, "02arrai": 23, "02t00": 23, "02t04": [20, 22], "03": [7, 16, 18, 20, 21, 22, 23], "030000": 18, "031322": 22, "03333333": 15, "03448276": 14, "03448708": 21, "034894": 18, "03576453": 13, "03811793": 13, "038165": 20, "0383828": 20, "0386322": 20, "03865961": 23, "0388296": 20, "038916e": 23, "0389647": 20, "038e": 20, "0390673": 20, "039428": 18, "039894": 23, "03arrai": 23, "03standard_nam": 23, "03t00": 23, "03unit": 23, "03xarrai": 23, "04": [7, 16, 18, 20, 21, 22, 23], "04202558": 23, "04253353": 23, "042742": 22, "0429": 23, "042e": 20, "04341616": 21, "043zgeospatial_lat_min": 23, "04466798": 23, "045269e": 23, "04685752": 21, "04826117": 21, "0494263": 20, "0494475": 20, "0494578": 20, "0495107": 20, "0495603": 20, "049596": 20, "04e": 20, "04t00": 23, "04t23": 23, "05": [5, 7, 9, 14, 18, 20, 21, 22, 23, 49], "0500": 28, "05024137": 21, "051622e": 23, "051643": 22, "05185194": 23, "05233016": 21, "05282372": 13, "052e": 23, "053625": 22, "05704318": 21, "057854": 22, "059557": 22, "059725": 18, "05984232": 13, "05arrai": [20, 23], "05t00": 23, "06": [5, 7, 18, 20, 21, 22], "060708": 23, "061314": 22, "06216953": 21, "063004": 18, "063814": 18, "0642793": 20, "0644639": 20, "06459146": 15, "0646174": 20, "064733": 20, "0648024": 20, "0648358": 20, "065e": 20, "06636032": 21, "066883": 22, "067299": 22, "06756555": 21, "06759924": 15, "06864502": 21, "06896552": 14, "06954335": 13, "07": [5, 7, 16, 18, 20, 21, 22, 23], "070000": 18, "07106781e": 14, "071379e": 23, "07199963": 13, "07515585": 23, "07544213": 21, "07572989": 13, "07629059": 13, "07677966101695": 18, "076780": 18, "077732e": 23, "077e": 20, "078": 23, "08": [18, 20, 21, 22], "081787109375": 23, "08192958": 21, "0832636": 20, "0834875": 20, "0837412": 20, "0839543": 20, "08398": 23, "084085e": 23, "0841148": 20, "0842566": 20, "084e": 23, "085205078125": 23, "0859375": 23, "086039": 22, "08679868": 15, "08870167": 21, "088e": 20, "09": [7, 18, 20, 21, 22, 28], "090641e": 23, "09187095": 21, "091969": 23, "09292424": 23, "09308323": 15, "09326566": 23, "094604": 22, "09533591": 13, "09540328": 21, "09541127": 23, "09552107": 13, "09599544": 13, "09772197": 23, "09990092": 21, "0_coordinatetransformtyp": 23, "0arrai": 23, "0branch_time_in_par": [20, 22], "0case_id": [20, 22], "0long_nam": 22, "0x7f2df9c43b60": 23, "0x7f2e0f58d130": 23, "0x7f2e0f58eff0": 23, "0x7f4e652e9af0": 9, "0x7f5f6cb68fb0": 3, "0x7f5f6cbc0500": 3, "0xarrai": 23, "1": [3, 5, 7, 9, 11, 13, 14, 15, 18, 20, 21, 22, 23, 31, 34, 37, 42, 45, 47], "10": [1, 3, 5, 7, 9, 11, 13, 14, 15, 18, 20, 21, 22, 23, 26, 42, 45, 49], "100": [5, 10, 13, 14, 15, 21, 22, 23, 32, 45], "1000": [5, 9, 11, 15, 21, 23, 42], "100000": 18, "1001": 23, "1002": 23, "100246": 22, "1003": 23, "1004": 23, "100644": [28, 37], "1007": 23, "1009": 23, "100_coordinateaxistyp": 23, "100grib1_level_desc": 23, "100x50": 13, "101": [5, 13, 21], "1010": 23, "102": [11, 13, 23], "10212211": 23, "10271": 22, "10344828": 14, "103842e": 23, "104733": 22, "105": [5, 11, 21, 23], "10549575": 13, "105arrai": 23, "10635524": 14, "10681174": 23, "107": 23, "10789153": 15, "108": 11, "109": 23, "10933": 23, "10cell_method": 22, "10lon": 22, "10m": 3, "11": [3, 13, 14, 15, 18, 20, 21, 22, 23, 28, 45], "110": [11, 23], "110195e": 23, "110m": 3, "111": 11, "11344716": 13, "114": 11, "115000": 18, "11640535": 21, "116548e": 23, "11664000": [20, 22], "116751e": 23, "116b": 23, "117": [11, 21], "117e": 23, "11806462": 23, "11874805": 23, "118896": 22, "119": 23, "119303": 22, "11976794": 13, "119x": 23, "11_l100": 23, "11_l100grib1_cent": 23, "11grib1_level_typ": 23, "11realm": [20, 22], "12": [5, 7, 13, 14, 15, 18, 20, 21, 22, 23], "120": [11, 22, 23], "12002441": 21, "120b": 20, "120w": 22, "122": 21, "12242548": 21, "123": 11, "12323400e": 14, "125": [14, 23], "12582174": 21, "12594611": 15, "126": 11, "12641562": 21, "128kb": 23, "129": 11, "12arrai": 20, "12lat": 20, "12xarrai": 20, "13": [5, 7, 13, 14, 15, 18, 20, 21, 22, 23, 28], "130": 11, "13037": 23, "131": 23, "131generating_process_or_model": 23, "131grib1_paramet": 23, "132": 11, "1341411": 13, "135": [11, 14], "13505114": 23, "136305e": 23, "136517": 22, "137": 15, "137907": 22, "13793103": 14, "138": 11, "1396787": 21, "13standard_nam": 23, "13t00": 23, "14": [7, 13, 15, 18, 20, 21, 22, 23, 28, 32, 45], "140": 3, "140000": 18, "140859e": 23, "141": 11, "14100": [20, 22], "1415926": 7, "14159265": 14, "141592653589793": 14, "14196565": 23, "142658e": 23, "142861e": 23, "1430049": 23, "1435589": 13, "14395479": 23, "144": [11, 33], "145": 33, "1450": 23, "1450km": 23, "147": 11, "14712849": 21, "1476": 14, "14818369": 15, "14999579": 21, "15": [3, 5, 7, 9, 10, 13, 14, 15, 18, 20, 21, 22, 23, 28, 32, 35, 39], "150": [5, 11, 23], "150000": 18, "150390625": 23, "1504": 23, "15175649": 13, "152500": 18, "153": [5, 11, 23], "15534404": 21, "15576171875": 23, "156": [11, 33], "157152": 22, "157590": 18, "15772": 22, "15840199": 23, "158524": 22, "1589711": 21, "158993": 22, "159": 11, "15900492": 23, "1591796875": 23, "1599731445312": 23, "15grib1_tablevers": 23, "15lat": 20, "15mb": 23, "16": [5, 7, 9, 11, 13, 14, 15, 18, 20, 21, 22, 23, 45], "160000": 18, "16062611": 15, "160896": 22, "160b": 22, "16191651": 23, "162": 11, "16350665": 23, "16652571": 13, "166970e": 23, "167": 18, "1671134": 21, "16870497": 21, "168768e": 23, "168971e": 23, "169": 21, "16916596": 21, "16b": 23, "16h": 7, "17": [5, 7, 13, 14, 15, 18, 20, 21, 22, 23, 24, 28], "17038365": 21, "170w": 22, "17158": 22, "1715806495": 7, "17241379": 14, "175": [15, 23], "175121e": 23, "176163": 22, "17731408": 21, "17773618": 13, "1780818": 21, "17856": 22, "18": [5, 7, 9, 13, 15, 18, 20, 21, 22, 23], "180": [3, 14, 20, 21, 22], "1806": 20, "18060156": 23, "180d2": [20, 22], "180dask": 21, "180lat": [20, 21], "180lon": [20, 21, 22], "180x360": [20, 22], "181": 3, "18152074": 21, "182": 23, "18216": 23, "182km": 23, "183": 21, "184": 7, "1850": [20, 22], "1876712": 20, "1879027": 20, "1881146": 20, "1883302": 20, "18849395": 23, "1885312": 20, "18853655": 21, "188714": 20, "18893598": 21, "18m": 7, "19": [5, 13, 15, 18, 20, 21, 22, 23], "190": [20, 21, 22], "190000": 18, "191": 22, "19184212": 23, "192": [20, 22], "19236937": 23, "193": 22, "193079e": 23, "194": 22, "19466798": 23, "195": 22, "1950": 22, "195081e": 23, "19572063": 13, "19573779": 21, "195834": 23, "196": [18, 22], "19641998": 21, "19683": 14, "197": 22, "1970": 7, "1979": 22, "19793004": 13, "198": 22, "1982": 18, "1983": 18, "1984": 18, "1985": 18, "1986": 18, "1987": 18, "1988": 18, "1989": 18, "199": 22, "1990": 18, "1991": 18, "1992": 18, "1993": [18, 23], "1994": 18, "1995": 18, "1996": 18, "1997": 18, "1998": 18, "1999": 18, "19990503": 13, "1arrai": 23, "1d": 10, "1d7b": [20, 22], "1descript": 23, "1e": [20, 21, 22, 23], "1f": 10, "1frequenc": [20, 22], "1institut": [20, 22], "1isobaric1": 23, "1kb": [20, 21, 22, 23], "1mb": [22, 23], "1product": [20, 22], "1standard_nam": 23, "1unit": 23, "1x1": [11, 20, 21, 22], "1y": [18, 23], "2": [3, 5, 7, 9, 11, 13, 14, 15, 18, 20, 21, 22, 30, 31, 32, 34, 37, 42, 45, 49], "20": [5, 7, 10, 13, 14, 15, 16, 18, 20, 21, 22, 24, 40, 41, 46], "200": [9, 10, 21, 22, 23], "2000": [15, 18, 20, 21, 22, 28], "2001": [18, 20, 21, 22], "2002": [18, 20, 21, 22], "2003": [18, 20, 21, 22], "20039327": 23, "2004": [18, 20, 21, 22], "2005": [16, 18, 20, 21, 22], "2006": [18, 20, 21, 22], "2007": [7, 18, 20, 21, 22], "2008": [18, 20, 21, 22], "2008125275": 5, "2009": [18, 20, 21, 22], "201": [20, 22], "2010": [18, 20, 21, 22], "2011": [18, 20, 21, 22], "2012": [18, 20, 21, 22], "201231e": 23, "2013": [18, 20, 21, 22], "2014": [18, 20, 21, 22], "2015": [16, 18, 22], "2016": [7, 18], "2017": [18, 20, 22], "2018": [18, 23], "2019": [5, 18, 20, 22], "202": 22, "2020": 18, "2021": [7, 18], "2022": 28, "2023": 49, "2024": [5, 7], "20253998": 21, "2028986": 21, "203": 22, "2032912": 20, "203617": 20, "20373662": 21, "20384921": 21, "203904": 20, "204": 22, "2041442": 20, "2043478": 20, "2045207": 20, "205": 22, "205000": 18, "20574751": 15, "205938": 22, "206": [21, 22], "2068288": 21, "20689655": 14, "207": 22, "207584e": 23, "208": 22, "209": 22, "2092348": 21, "209619": 18, "20985445": 15, "20th": [20, 22], "21": [5, 7, 13, 15, 18, 20, 21, 22, 23], "210": 22, "211": 22, "212": [15, 22], "212313": 22, "212325": 23, "213": 22, "21357396": 21, "214": 22, "214586": 22, "2147483647": 5, "2149192": 21, "215": [22, 23], "216": [22, 23], "21693506": 21, "217": [22, 23], "217098": 22, "218": 22, "219": [22, 23], "219000": [20, 22], "219189e": 23, "22": [5, 13, 15, 18, 20, 21, 22], "220": 22, "2200": 5, "220537": 20, "2209656": 20, "221": 22, "221191e": 23, "2213385": 20, "2216525": 20, "221913": 20, "222": 22, "2221622": 20, "223": 22, "224": [22, 23], "2246": 23, "224609375": 23, "22464680e": 14, "22467": 23, "225": [14, 22, 23], "22515585": 23, "226": 22, "22629066": 21, "227": 22, "22752": 22, "228": [22, 23], "229": 22, "2291": 23, "229736328125": 23, "23": [5, 13, 15, 18, 20, 21, 22, 23], "230": 22, "231": 22, "23110818": 23, "23141694": 23, "232": [21, 22], "23207324": 21, "23271986e": 22, "233": 22, "233154296875": 23, "233158901": 18, "23351938": 13, "233694e": 23, "2339477539062": 23, "233e": 22, "234": [22, 23], "23422552e": 22, "2342439358": 5, "23487395": 21, "235": 22, "2352104": 23, "236": 22, "236293e": 23, "237": 22, "238": [22, 23], "239": 22, "24": [3, 5, 7, 9, 13, 14, 15, 18, 20, 21, 22], "240": [20, 22], "240047e": 23, "24036433": 15, "240423": 22, "24073197": 13, "24137931": 14, "242": 23, "242203": 22, "243": 23, "24338362": 23, "24452577": 23, "245299e": 23, "2457683": 23, "246": 23, "247301e": 23, "24772197": 23, "249": 23, "24b": 23, "25": [5, 7, 10, 11, 13, 14, 15, 18, 20, 21, 22, 23, 45], "250": [5, 10, 15, 23], "2500": 10, "250171": 20, "25186164": 13, "25255": 22, "253": [21, 23], "253191": 22, "253344": 22, "254429": 23, "255kb": 23, "256025": 22, "256308e": 23, "25668992": 13, "257": [11, 23], "257241": 23, "25731647": 23, "259": 23, "259kb": [20, 21], "25arrai": 20, "26": [5, 7, 13, 14, 18, 20, 21, 22], "260": [11, 23], "26021004": 23, "26169962": 21, "262": 23, "264": 23, "26468701": 13, "265177": 22, "266": 23, "266157e": 23, "26636": 23, "268": 23, "26874805": 23, "26889319": 15, "268coordin": 23, "269": 23, "26905573": 23, "26935451": 21, "26979416": 23, "27": [5, 7, 13, 14, 16, 18, 20, 21, 22], "270": 14, "270000": 18, "271": [20, 23], "271409e": 23, "272": 23, "272510e": 23, "27255807": 23, "273": [18, 20, 23], "273411e": 23, "27350814": 13, "27369636": 13, "274": 23, "27494489": 15, "275": [14, 23], "27586207": 14, "276": 23, "27662304": 13, "277": 23, "278": 23, "279": 23, "2797517": 13, "28": [5, 13, 18, 20, 21, 22], "280": 23, "28018602": 21, "281": 23, "28183346": 21, "282": 23, "2824": 23, "283": 23, "2831326": 23, "28318531": 14, "284": 23, "28494995": 21, "285": [11, 23], "28505114": 23, "28532628": 23, "2856": 23, "286": [20, 21, 22, 23], "287": [11, 15, 23], "28760668": 23, "288": [11, 20, 22, 23], "2889": 23, "289": [11, 23], "29": [5, 13, 18, 20, 21, 22, 23, 28], "290": 11, "29088724": 15, "29091474": 23, "29098069": 23, "291": [11, 23], "29100": 23, "292": [11, 23], "2921": 23, "29215": 23, "292e": 23, "293": 11, "29328477": 15, "29361272": 13, "294": 23, "29442052": 21, "295": 11, "29531203": 15, "2954": 23, "296": 11, "297": 18, "297519e": 23, "2975ffd3": [20, 22], "298": [18, 23], "2986": 23, "298620e": 23, "298828125": 23, "299": [11, 18], "29906903": 21, "299521e": 23, "29experi": [20, 22], "29y": 23, "2activity_id": [20, 22], "2lat": [20, 22], "2lon": 23, "2mb": 22, "2nd": [14, 32], "3": [3, 5, 7, 9, 11, 13, 14, 15, 16, 18, 20, 21, 23, 32, 40, 41, 42, 45], "30": [3, 5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 21, 22, 29, 30, 31, 32, 38], "300": [5, 11, 15, 18, 21, 22, 23], "300000": 18, "30088555": 23, "301": [11, 18], "3019": 23, "302": [11, 18], "303": 11, "3032": 23, "3037109375": 23, "304": 11, "304973e": 23, "305": 11, "3051": 23, "30568786": 23, "30570578": 21, "306": 11, "3064": 23, "307": [11, 21], "30712890625": 23, "3079223632812": 23, "308": 11, "3080495102": 7, "3084": 23, "30840199": 23, "30859657": 15, "309": 11, "3097": 23, "31": [5, 13, 14, 15, 18, 20, 21, 22, 28], "310": [11, 20], "31034483": 14, "311": 11, "3116": 23, "31180935": 13, "311e": 23, "312": 11, "3129": 23, "313": 11, "315": [11, 14], "316": 11, "31602671": 13, "3162": 23, "31638347": 23, "316456": 22, "31892": 23, "3194": 23, "32": [5, 13, 15, 18, 20, 21, 22], "320": 11, "320x384": [20, 22], "32156756": 23, "32197396": 15, "3220391": 21, "322500": 18, "3227": 23, "32305634": 21, "32366183": 21, "32452642": 21, "324e": 23, "325": 15, "3259": 23, "32651953": 15, "32892997": 23, "3292": 23, "32946737": 21, "32b": 23, "33": [5, 13, 15, 18, 20, 21, 22], "330000": 18, "331083e": 23, "33220658": 21, "3324": 23, "33419301": 23, "337436e": 23, "337622": 22, "33849395": 23, "33916721": 13, "33_l100grib1_cent": 23, "33f212ea4eb2": [20, 22], "33f212ea4eb2variable_id": [20, 22], "33grib1_level_typ": 23, "34": [5, 13, 14, 15, 18, 20, 21, 22], "34173511": 21, "34183408": 23, "34184212": 23, "34236937": 23, "343e": 23, "344204": 22, "34482759": 14, "34603239": 13, "34620461": 13, "346348": 22, "34661126": 21, "349621": 18, "34971928": 13, "34_l100grib1_cent": 23, "34grib1_level_typ": 23, "35": [5, 13, 14, 15, 18, 20, 21, 22, 36], "350": [20, 21, 22, 23], "35039327": 23, "351": [20, 21, 22], "352": [20, 21, 22], "353": [20, 21, 22], "354": [20, 21, 22], "35468344": 15, "35495": 20, "355": [20, 21, 22], "3551": 20, "3552": 20, "3553": 20, "3554": 20, "356": [20, 21, 22], "35619449": 14, "357": [20, 21, 22], "358": [20, 21, 22], "359": [20, 21, 22], "35986": 20, "35992": 20, "35fcbd9": 28, "35fcbd991f911e170df550db58f74a082ba18b50": 28, "36": [5, 13, 18, 20, 21, 22, 45], "360": [14, 20, 21, 22, 45], "36005": 20, "36014": 20, "36021141": 13, "36023": 20, "360coordin": [20, 22], "360dask": 21, "360kb": 22, "360lat": 21, "360nan": 20, "362": 15, "36232811": 21, "36252429": 23, "363546e": 23, "3643": 20, "36435": 20, "3644": 20, "36447": 20, "36453": 20, "3646": 20, "36563657": 15, "36666667": 15, "36681494": 21, "36700682": 23, "367132": 22, "369899e": 23, "37": [13, 14, 15, 18, 20, 21, 22, 23], "37057232": 23, "370kb": 22, "37210588": 23, "372146": 23, "37255859375": 23, "37354": 23, "375": 14, "37536731": 21, "37573713": 13, "37590266": 23, "37742984": 23, "37759899": 13, "37788708": 21, "37931034": 14, "38": [7, 13, 15, 18, 20, 21, 22], "380000": 18, "3804": 18, "3805": 18, "3806": 18, "3807": 18, "3808": 18, "3809": 18, "3810": 18, "3811": 18, "381103515625": 23, "38110818": 23, "3812": 18, "3813": 18, "3814": 18, "3815": 18, "3816": 18, "3817": 18, "3819580078125": 23, "38221861": 15, "38253178": 21, "384x320": [20, 22], "38706893": 21, "38955": 22, "38973709": 21, "39": [13, 15, 18, 20, 21, 22], "39020736": 21, "39195962": 21, "39338362": 23, "3938": 20, "39383": 20, "39386": 20, "39392": 20, "394": 20, "39407": 20, "396009e": 23, "39696447": 23, "39853293": 13, "39866217": 21, "39932": 20, "39935": 20, "39938": 20, "39944": 20, "39948": 20, "3999668": 21, "3arrai": 23, "3dim_2": 23, "3kb": [20, 21, 22], "3km": 5, "3lat": 23, "3lon": 23, "3mb": 20, "3rd": [10, 14, 32], "3x4": 14, "4": [2, 3, 5, 7, 9, 11, 13, 14, 15, 18, 20, 21, 23, 28, 37, 42, 45, 49], "40": [3, 5, 9, 10, 13, 15, 18, 20, 21, 22, 23, 28], "400": [15, 21, 23], "4000": 21, "400b": 22, "40197695": 23, "402362e": 23, "403": 37, "4037": 20, "40372": 20, "40375": 20, "40513953": 21, "406": 21, "4067": 20, "40674": 20, "40677": 20, "40683": 20, "4069": 20, "40695": 20, "408": 21, "40921459": 21, "40b": 23, "41": [13, 14, 15, 18, 20, 21, 22, 23, 32], "4100": 18, "4101": 18, "4102": 18, "4103": 18, "4104": 18, "41093": 22, "41120932": 15, "41293": 20, "41296": 20, "413": 20, "41306": 20, "41340752": 21, "4137931": 14, "41442759": 23, "415271e": 23, "41766": 20, "4177": 20, "41772": 20, "42": [5, 13, 15, 18, 20, 21, 22, 23], "42091617": 23, "421": 23, "422": 14, "42277612": 13, "423113": 22, "423643": 22, "424": 23, "42474694": 21, "424km": 23, "425608": 22, "4274": 23, "42796381": 13, "4282": 23, "42835692": 23, "428472e": 23, "4292": 23, "43": [13, 15, 18, 20, 21, 22], "430000": 18, "431522": 18, "43194404": 21, "43329229": 13, "434": 21, "434825e": 23, "43561572": 21, "437": 15, "44": [13, 14, 15, 18, 20, 21, 22], "44011939": 21, "441381e": 23, "44379078": 15, "44460669": 23, "44530452": 21, "44677734375": 23, "44682309": 21, "447067": 22, "44720048": 23, "44807": 23, "44826878": 23, "44827586": 14, "44829": 21, "44927684": 13, "44929360e": 14, "45": [3, 13, 14, 15, 18, 20, 21, 22, 23, 28], "450": 23, "45039599": 21, "450716": 22, "45078099": 23, "4516497": 23, "45265087": 21, "45316175": 13, "454": 23, "45448766": 23, "45702773": 15, "45709": 22, "45775806": 13, "45814483": 21, "46": [13, 18, 20, 21, 22, 23], "46048995": 13, "460935e": 23, "461096": 22, "46131608": 21, "46384865": 21, "46576463": 13, "4663941": 21, "467": 18, "467288e": 23, "467491e": 23, "468": [18, 21], "46809684": 23, "469": 18, "47": [13, 18, 20, 21, 22, 23, 32], "470": 18, "4707": 23, "470703125": 23, "471": 18, "471653": 22, "472": 18, "472462": 23, "47421697": 21, "475": [14, 15], "47663448": 21, "476b": 23, "47892997": 23, "47998158": 13, "47e3": [20, 22], "47mb": [20, 21, 22], "48": [13, 14, 18, 20, 21, 22], "480b": 23, "482593e": 23, "48275862": 14, "4827714": 21, "48419301": 23, "485212": 22, "48543667": 23, "486": 23, "48608715": 13, "48841145": 21, "49": [13, 18, 20, 21, 22, 28, 45], "49022722": 21, "49077377": 15, "491600e": 23, "49183408": 23, "493398e": 23, "493601e": 23, "49497791": 13, "49546271": 21, "49576423": 15, "49609048": 21, "49627513": 21, "49778714": 14, "49820524": 21, "49905207": 13, "49906669": 21, "499751e": 23, "4arrai": 20, "4b": [20, 22, 23], "4bc074c": 28, "4c": 22, "4coordin": 23, "4e7": 45, "4kb": 22, "4mb": [20, 23], "5": [1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 21, 22, 23, 33, 37, 42, 45], "50": [3, 5, 7, 13, 15, 16, 18, 20, 21, 22, 23, 42], "500": [5, 15, 16, 21, 22, 23], "500000000000001": 45, "50053284": 21, "502608e": 23, "50292233": 15, "5050": 23, "5063675": 21, "5065": [20, 22], "508": 21, "5083": 23, "50coordin": 22, "50m": 3, "51": [13, 14, 18, 20, 21, 22], "51054122": 23, "5107226": 23, "511": 23, "5115": 23, "51164396": 21, "512": 15, "512500": 18, "51252429": 23, "51474577": 13, "5148": 23, "515000": 18, "51641586": 13, "51724138": 14, "517709e": 23, "51784389": 13, "5180": 23, "518036": 22, "518108": 22, "51829518": 13, "51871999": 23, "518kb": [20, 22], "519": 23, "51913898": 21, "519711e": 23, "5198": 23, "52": [5, 13, 15, 18, 20, 21, 22], "52042712": 21, "5208509": 23, "5213": 23, "52210588": 23, "522951": 22, "52313905": 13, "5245": 23, "525861e": 23, "52590266": 23, "52593284": 21, "5278": 23, "5280": 23, "5281": 49, "52904343": 21, "53": [13, 15, 18, 20, 21, 22], "53070256": 13, "5310": 23, "5311": 14, "53156325": 21, "532214e": 23, "53298455": 23, "5341915": 21, "5343": 23, "537773": 22, "53985475": 21, "54": [5, 7, 13, 15, 18, 20, 21, 22], "54034678": 13, "54152312": 15, "541596450": 18, "54185136": 21, "54242887": 21, "542961": 22, "543820e": 23, "544677734375": 23, "5447": 23, "545821e": 23, "54598295": 23, "54632195": 21, "54692215": 23, "54696447": 23, "54718": 23, "54749823": 15, "548095703125": 23, "549394": 23, "54pm": 7, "55": [13, 14, 15, 18, 20, 21, 22, 23], "550": [15, 23], "551": 23, "55104908": 21, "55111512e": 14, "55172414": 14, "55248006": 21, "5536724": 21, "55417349": 15, "55463676": 21, "55493093": 21, "55587672": 23, "556413": 23, "55726833": 21, "558324e": 23, "55847209": 23, "56": [7, 13, 15, 18, 20, 21, 22, 23], "56024887": 21, "560463": 22, "56128856": 15, "56212": 22, "56265755": 21, "564677e": 23, "565000": 18, "56515605": 15, "56666667": 15, "56909665": 21, "56967086": 13, "569714": 22, "569930e": 23, "57": [13, 15, 18, 20, 21, 22, 23], "570000": 18, "57045787": 23, "57058462": 21, "570702": 22, "57079633": 14, "57091617": 23, "571931e": 23, "57238332": 21, "572500": 18, "574": 23, "57430164": 23, "57439019": 23, "57569453": 13, "57644944": 15, "57835692": 23, "57856786": 23, "579597": 22, "58": [13, 14, 18, 20, 21, 22, 28], "58179681": 23, "582062": 22, "583513": 22, "583574": 22, "584": 23, "58421292": 21, "5862069": 14, "587": 15, "58710917": 23, "589234": 20, "58zdata_specs_vers": [20, 22], "59": [13, 15, 18, 20, 21, 22], "590082": 20, "59037269": 13, "590507": 20, "590787e": 23, "591869": 20, "591908": 20, "591917": 20, "592048": 20, "592894": 20, "59300888": 21, "593736": 20, "593815": 20, "594002": 20, "594081": 20, "594477": 20, "594949": 20, "595119": 20, "595245": 20, "595638": 20, "595716": 20, "595841": 20, "595944": 20, "596039e": 23, "596162": 20, "596858": 20, "596950": 20, "597140e": 23, "597189": 20, "59720048": 23, "59745109": 21, "597519": 20, "597807": 20, "597825": 20, "598041e": 23, "598177": 20, "59826878": 23, "598365": 20, "598850": 20, "598867": 20, "598896": 20, "598927": 20, "59897109": 23, "598995": 20, "599011": 20, "599373": 20, "599465": 20, "599490": 20, "599838": 20, "599917": 20, "599944": 20, "5arrai": [21, 23], "5axi": [20, 21, 22], "5dim_1": 23, "5lat": 23, "5n": 22, "5unit": 23, "5xarrai": [20, 21, 23], "6": [5, 7, 11, 13, 14, 15, 18, 20, 21, 22, 23, 28, 37, 45], "60": [13, 15, 18, 20, 21, 22, 23, 34, 37], "600": [21, 23], "600000": 18, "600134": 20, "600215": 20, "600334": 20, "600490": 20, "600670": 20, "60078099": 23, "600784": 20, "600801": 20, "600808": 20, "600898": 20, "600970": 20, "601205": 20, "601256": 20, "601372": 20, "60143505": 21, "601706": 20, "601735": 20, "601754": 20, "602013": 20, "602034": 20, "602108": 20, "602155": 20, "602329": 20, "602349": 20, "602514": 20, "602786": 20, "602821": 20, "602942": 20, "603077": 20, "603142": 20, "603380": 20, "603471": 20, "603527": 20, "603724": 20, "603727": 20, "603767": 20, "603790": 20, "603876": 20, "603930": 20, "603976": 20, "604046": 20, "604124": 22, "604144": 20, "604249": 20, "604386": 20, "604685": 20, "604733": 20, "604798": 20, "604814": 20, "604928": 20, "605144": 20, "605349": 20, "605376": 20, "605399": 20, "605488": 20, "605606": 20, "605644": 20, "605734": 20, "605750": 20, "605954": 20, "605970": 20, "606126": 20, "606152": 20, "606259": 20, "606303": 20, "606310": 20, "606512": 20, "606868": 20, "60694127": 23, "607196": 20, "607285": 20, "607379": 20, "607701": 20, "607702": 20, "607848": 20, "607942": 20, "608094": 20, "608588": 20, "608730": 20, "608737": 20, "608777": 20, "608906": 20, "609": 21, "609151": 20, "609220": 20, "609225": 20, "609250": 20, "609438": 20, "609509": 20, "609562": 20, "609645": 20, "609680": 20, "609764": 20, "609765": 20, "609922": 20, "61": [13, 18, 20, 21, 22], "610048": 20, "610105": 20, "610112": 20, "610190": 20, "610257": 20, "610375": 20, "610844": 20, "611091": 20, "611327": 20, "611434": 20, "611463": 20, "611722": 20, "611735": 20, "611808": 20, "611878": 20, "611881": 20, "611886": 20, "611901": 20, "612033": 20, "612056": 20, "612424": 20, "612615": 20, "612655": 20, "612935": 20, "613050": 20, "613369": 20, "613692": 20, "614213": 20, "614420": 20, "614610": 20, "614671": 20, "615665": 20, "615765": 20, "615895": 20, "616": 23, "616295": 20, "616360": 20, "616563": 20, "6167": 7, "616853": 20, "617450": 20, "61809684": 23, "61865234375": 23, "618686": 20, "619367": 20, "619794": 20, "619830": 20, "619949": 20, "62": [13, 14, 18, 20, 21, 22], "620000": 18, "62068966": 14, "62109205": 23, "6220703125": 23, "622149e": 23, "6229248046875": 23, "623085": 20, "623250e": 23, "623508": 20, "623783": 20, "624151e": 23, "625": [14, 15], "625064": 18, "626036": 20, "62616": 22, "626368": 22, "627005": 22, "62721463": 21, "62724774": 23, "62907898": 21, "629603e": 23, "63": [13, 18, 20, 21, 22], "630000": 18, "63122788": 21, "63127177": 21, "63168263": 23, "63209825": 23, "63333333": 15, "63334391": 21, "63518882": 15, "63544531": 21, "6367470": 23, "63695351": 21, "6371000": 5, "63cell_measur": 22, "64": [13, 18, 20, 21, 22, 45], "64073606": 21, "64461": 22, "645485": 22, "64752434": 21, "64800": [20, 22], "649": 23, "65": [3, 13, 14, 18, 20, 21, 22], "650": 23, "65056203": 23, "65231976": 21, "653673": 5, "65421957": 21, "65517241": 14, "655407": 22, "655713e": 23, "65677567": 23, "65772852": 23, "66": [13, 18, 20, 21, 22], "66054122": 23, "66118": 23, "66161596": 21, "662": 15, "662066e": 23, "66241166": 21, "66257683": 21, "66309": 23, "666108129242815": 23, "666108129242815xarrai": 23, "66666667": [14, 15], "66815": 23, "66823935": 23, "66871999": 23, "669386": 22, "67": [5, 13, 18, 20, 21, 22], "670000": 18, "6708509": 23, "672": 20, "6723493": 20, "6724195": 20, "6724887": 20, "672563": 20, "6726688": 20, "6727766": 20, "672arrai": 20, "67358062": 21, "673963": 23, "674": 23, "67402": 23, "674885": [20, 22], "67658285": 13, "67674959": 23, "6771463": 20, "6773272": 20, "677492": 20, "6776317": 20, "6777302": 20, "6778082": 20, "67789616": 15, "67826349": 23, "678553": 22, "679721": 23, "68": [13, 14, 18, 20, 21, 22], "681": 23, "68157985": 21, "68298455": 23, "685179": 22, "6859775": 23, "686": 23, "6865997": 23, "68722": 22, "6874666": 20, "6875": 23, "6876906": 20, "6879102": 20, "6880217": 20, "688121": 20, "6881752": 20, "688176e": 23, "6883243": 20, "6883289": 20, "6884427": 20, "6885366": 20, "6885542": 20, "6886654": 20, "6889572": 20, "6890831": 20, "6892204": 20, "6893266": 20, "6893964": 20, "6894479": 20, "6895409": 20, "68965517": 14, "6899008": 20, "69": [13, 18, 20, 21, 22], "6902231": 20, "6905178": 20, "6907759": 20, "6910189": 20, "69162bc": 37, "69190957": 21, "692626953125": 23, "69352384": 21, "694529e": 23, "69580869": 23, "69583703": 13, "69598295": 23, "6962890625": 23, "69692215": 23, "6969604492188": 23, "699394": 23, "6histori": 23, "6kb": [20, 22], "6x6": 14, "7": [5, 10, 11, 13, 14, 15, 18, 20, 21, 22, 23, 32, 45], "70": [3, 13, 18, 20, 21, 22, 23], "700": [5, 15, 23], "701273": 22, "70133294": 21, "702488": 22, "70346147": 15, "707": 14, "70710678e": 14, "707312": 22, "7081": 18, "70819797": 15, "70826448": 13, "7088237": 23, "7089": 18, "70934683": 23, "709401": 18, "71": [3, 13, 18, 20, 21, 22], "710": 21, "71025427": 21, "71238898": 14, "712500": 18, "71294698": 21, "714": 23, "71575049": 21, "71759901": 23, "718": 23, "718281828459045": 14, "71828204": 13, "72": [13, 14, 18, 20, 21, 22], "720": [20, 22], "720639e": 23, "720b": 20, "72166924": 13, "722328": 23, "723951": 22, "72413793": 14, "72439019": 23, "7247376": 23, "725": 23, "72670232": 23, "72695544": 15, "726992e": 23, "727234": 22, "728104": 22, "72814762": 13, "72856786": 23, "728893e": 23, "7293599": 15, "73": [5, 13, 18, 20, 21, 22], "73163442": 15, "732275": 20, "732279": 20, "732295": 20, "732309": 20, "73507883": 15, "73521001": 23, "73584493": 21, "73631955": 21, "736985": 20, "737": 15, "73702": 20, "737043": 20, "737051": 20, "73710917": 23, "737165": 22, "737336773": 18, "73788577": 21, "7381277": 20, "7381679": 20, "7382039": 20, "7382454": 20, "7382846": 20, "73828667": 13, "7383199": 20, "739": 7, "739901e": 23, "74": [13, 18, 20, 21, 22], "74080675": 21, "7424251": 20, "7424612": 20, "7424874": 20, "7425116": 20, "7425283": 20, "742536": 20, "74265707": 23, "74316064": 21, "745": 23, "745023": 23, "7453367": 13, "746": 20, "7462606": 20, "746261": 20, "7462667": 20, "746267": 20, "7462697": 20, "74627": 20, "7462848": 20, "746285": 20, "746299": 20, "746309": 20, "7463093": 20, "746756": 22, "746arrai": 20, "746cell_measur": 20, "7471": 23, "7474008": 20, "7474264": 20, "7474308": 20, "7474365": 20, "7474419": 20, "7474445": 20, "747778": 22, "748089": 22, "748907e": 23, "7490736": 20, "749148": 20, "7492163": 20, "7492864": 20, "7493519": 20, "7494118": 20, "75": [3, 5, 13, 14, 18, 20, 21, 22], "750": 23, "750508": 20, "7505083": 20, "750561": 20, "7506049": 20, "750605": 20, "7506379": 20, "750638": 20, "7506577": 20, "750658": 20, "750667": 20, "7506672": 20, "75083339": 23, "75240336": 21, "753102e": 23, "75326941": 21, "753308882144761": 23, "753308882144761geospatial_lat_max": 23, "7535168": 20, "753602": 20, "7536805": 20, "7537591": 20, "753833": 20, "753901": 20, "754": 20, "7542422": 20, "7543424": 20, "7544289": 20, "7545002": 20, "754559": 20, "754608": 20, "754arrai": 20, "755422": 18, "755922": 20, "7559224": 20, "755986": 20, "7559862": 20, "756058": 20, "7560585": 20, "756119": 20, "7561191": 20, "7561648": 20, "756165": 20, "756205": 20, "7562052": 20, "75694127": 23, "75862069": 14, "7588665": 20, "7589546": 20, "7590305": 20, "759095": 20, "7591486": 20, "7591925": 20, "7593384": 20, "7594113": 20, "759455e": 23, "759478": 20, "759547": 20, "7596117": 20, "7596704": 20, "76": [13, 18, 20, 21, 22], "760000": 18, "7602725": 20, "760397": 20, "7605033": 20, "7605885": 20, "7606541": 20, "760718": 20, "76138868": 21, "76171875": 23, "7646879": 20, "7647004": 20, "7647841": 20, "7648032": 20, "7648666": 20, "7648907": 20, "7649331": 20, "7649589": 20, "7649865": 20, "7650102": 20, "7650299": 20, "7650614": 20, "766011e": 23, "7666015625": 23, "76666667": 15, "76695309": 13, "76880871": 21, "7690051": 20, "7690798": 20, "7691481": 20, "7692182": 20, "7692844": 20, "7693441": 20, "76935": 23, "769499": 22, "76arrai": 20, "77": [13, 18, 20, 21, 22], "770263671875": 23, "7709350585938": 23, "7709653": 20, "7710832": 20, "7711828": 20, "7712607": 20, "7713183": 20, "7713748": 20, "77156783": 23, "77170882": 21, "77179678": 13, "7743237": 20, "7744204": 20, "7745041": 20, "7745715": 20, "774626": 20, "77467": 20, "775": [15, 23], "77607526": 21, "77648": 22, "77669187": 21, "77777778": 14, "77789358": 13, "77980233": 13, "78": [13, 18, 20, 21, 22], "780058": 22, "7805718": 20, "780688": 20, "780786": 20, "7808627": 20, "7809197": 20, "7809757": 20, "78105997": 23, "78168263": 23, "7821493": 23, "783": 23, "78321028": 23, "78342945": 21, "78503": 23, "78539816": 14, "78547": 20, "785529": 20, "785565e": 23, "78559": 20, "785646": 20, "78584972": 15, "787766": 22, "78821": 22, "7884571": 49, "7884572": 49, "789865": 20, "789945": 20, "79": [13, 14, 18, 20, 21, 22, 23], "790012": 20, "790069": 20, "79008536": 21, "790609": 20, "79065": 20, "790694": 20, "790736": 20, "791918e": 23, "792121e": 23, "792500": 18, "793085": 22, "79310345": 14, "79424186": 21, "79443941": 23, "794727": 20, "794789": 20, "794837": 20, "794875": 20, "7983514": 20, "7983989": 20, "7984415": 20, "7984871": 20, "7985296": 20, "7985678": 20, "798arrai": 20, "799": 20, "79937281": 21, "7_l100grib1_cent": 23, "7arrai": 23, "7dca0292467e4bbd73643556f83fd1c52b5c113c": 28, "7grib1_level_typ": 23, "7grib1_subcent": 23, "8": [3, 5, 7, 9, 11, 13, 14, 15, 18, 20, 21, 22, 23, 37, 42, 45], "80": [3, 13, 18, 20, 21, 22, 23], "800": 23, "800b": 22, "8024155": 20, "8024837": 20, "8025414": 20, "8025846": 20, "8026177": 20, "8026428": 20, "80305": [20, 22], "80347237": 23, "80349963": 23, "80460691": 21, "80544403": 23, "80576": 23, "80677567": 23, "8082187": 20, "8083031": 20, "8083605": 20, "8083915": 20, "8083944": 20, "8083988": 20, "80b": 22, "80f": 13, "81": [13, 18, 20, 21, 22, 45], "81008194": 23, "811": 21, "812": 15, "81431679": 21, "816229e": 23, "818028e": 23, "818231e": 23, "81962377": 21, "819756": 22, "82": [13, 14, 18, 20, 21, 22], "82073742": 23, "82138": 23, "82321": 22, "824381e": 23, "825": [14, 23], "82663": 23, "82758621": 14, "82806911": 23, "82826349": 23, "82891774": 23, "82985107": 21, "83": [13, 18, 20, 21, 22], "8308828962289": 23, "8308828962289geospatial_lon_min": 23, "83117213": 21, "83197412": 21, "83466538": 21, "83487": 23, "83544921875": 23, "83571708": 13, "83593609": 13, "83597797": 21, "83697020e": 14, "83838392": 23, "8398981": 21, "84": [13, 18, 20, 21, 22], "84006875": 21, "840393": 22, "84133513": 21, "842339e": 23, "84272747": 13, "8436452": 22, "84423828125": 23, "844341e": 23, "8449401855469": 23, "844arrai": 22, "84580454": 13, "846": 23, "84614818": 15, "84615563": 23, "846294": 23, "84669077": 21, "84738714": 21, "84827794": 13, "84864745": 21, "849726": 22, "84995": 23, "85": [13, 18, 20, 21, 22], "850": [5, 15, 23], "850000": 18, "850491e": 23, "85119189": 23, "8512": 23, "85269149": 13, "853286": 23, "85481585": 14, "856844e": 23, "85726925": 23, "85735173": 21, "86": [13, 14, 18, 20, 21, 22], "860712": 22, "86206897": 14, "86666667": 14, "86748361": 21, "86759901": 23, "86778224": 21, "868449e": 23, "86869933": 21, "87": [13, 18, 20, 21, 22], "870000": 18, "870451e": 23, "87139036": 23, "87151534": 13, "87290674": 23, "873777": 22, "87402041": 21, "87418635": 21, "875": [14, 23], "87557425": 13, "87670232": 23, "88": [7, 13, 18, 20, 21, 22], "88028088": 23, "88242040519995": 23, "88242040519995geospatial_lon_max": 23, "88258643": 13, "882954e": 23, "8833458": 7, "883371": 23, "8834038": 21, "885000": 18, "88521001": 23, "88666451": 21, "88696252": 15, "887": 15, "88701": 23, "889307e": 23, "89": [13, 14, 18, 20, 21, 22], "89253353": 23, "89265707": 23, "89344391": 21, "894559e": 23, "89512514": 21, "89636361": 15, "89655172": 14, "896561e": 23, "898": 7, "898000": 7, "89825854": 13, "89825854468695": 13, "89875752": 21, "89994404": 21, "8b": [20, 21, 23], "8kb": 22, "8x3": 15, "9": [5, 7, 10, 11, 13, 14, 15, 18, 20, 21, 22, 23, 45], "90": [3, 13, 14, 18, 21], "900": 23, "90000": 22, "90028363": 13, "90083339": 23, "90215938": 15, "90886909": 15, "90966796875": 23, "91": [3, 13, 18], "9108161": 21, "91122156": 15, "91187899": 15, "912": 21, "91310302": 21, "91360137": 15, "91468564": 13, "91513049": 13, "915417e": 23, "91557094": 23, "918253": 22, "9189453125": 23, "92": [13, 18, 21], "920669e": 23, "921356": 7, "921392": 7, "92156783": 23, "921770e": 23, "92218768": 14, "922671e": 23, "924868": 23, "925": [5, 14, 15, 23], "925612": 7, "92630431": 21, "92661689": 15, "92699082": 14, "93": [11, 13, 14, 18, 21], "93023778": 21, "93083913": 15, "93103448": 14, "93120538": 21, "93264322": 23, "93321028": 23, "93380275": 13, "93613911": 21, "936190": 7, "93656703": 21, "936568": 18, "936979": 23, "93755297": 21, "93888": 23, "93939394": 14, "94": [13, 18, 20, 21], "940416": 22, "94115754": 13, "94117032": 21, "94443941": 23, "94548168": 21, "946779e": 23, "947252": 22, "947880e": 23, "947936": 18, "94807689": 15, "948781e": 23, "95": [11, 13, 18, 21, 23], "950": 23, "950000": 18, "95065202": 13, "95212211": 23, "95347237": 23, "954233e": 23, "95451621": 21, "95681174": 23, "95696914": 13, "95730031": 23, "957arrai": 23, "95814392": 13, "95937476": 21, "95971516": 13, "96": [11, 13, 14, 18, 21], "961a": [20, 22], "962": 15, "962500": 18, "96464114": 21, "96464227": 23, "96531466": 15, "965464": 18, "96551724": 14, "9657": 22, "96578828": 21, "969209968386869e": 5, "96b": [20, 23], "97": [5, 13, 18, 33], "97073742": 23, "972": [20, 22], "972139": 23, "972262": 23, "972arrai": 23, "972cesm_casenam": [20, 22], "975": 23, "97505745": 13, "97638485": 21, "97675": 23, "97849533": 15, "97955": 23, "98": [9, 13, 18, 33], "980000": 18, "980343e": 23, "98255242": 15, "9833984375": 23, "98364": 23, "986696e": 23, "989": 23, "99": [11, 13, 18], "990": 23, "990km": 23, "991": 23, "99196565": 23, "99198924": 21, "992": 23, "993": 23, "9930049": 23, "99301667": 21, "994": 23, "99403256": 13, "995": 23, "99586742": 13, "996": 23, "99615563": 23, "99683836": 13, "997": 23, "998": 23, "999": 23, "99902": 23, "9999": 5, "9999999999999996": 14, "9arrai": 23, "9h_61hxcdui": 21, "9x1": [20, 22], "A": [5, 9, 11, 14, 15, 18, 20, 21, 22, 24, 26, 30, 33, 34, 35, 37, 38, 39, 42, 44, 49, 50], "AND": 30, "AS": 20, "And": [1, 14, 28, 30, 34, 42, 45, 46, 47], "As": [0, 1, 3, 5, 7, 9, 11, 15, 16, 18, 20, 21, 22, 23, 28, 29, 33, 35, 38, 39], "At": [5, 18, 30, 37, 50], "BY": 49, "Be": [3, 32, 42], "But": [28, 37, 45, 50], "By": [5, 9, 11, 13, 15, 18, 21, 22, 23, 28, 29, 32, 33, 38], "For": [1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 27, 28, 29, 30, 33, 35, 36, 37, 38, 39, 40, 42, 47, 50], "INTO": 30, "If": [0, 1, 5, 7, 8, 9, 10, 11, 13, 15, 16, 18, 20, 21, 23, 24, 28, 29, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 46, 49, 50], "In": [0, 1, 2, 3, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 22, 23, 26, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 46, 50], "It": [0, 1, 5, 7, 9, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 24, 28, 30, 33, 35, 36, 37, 38, 40, 42, 46, 47], "Its": 23, "NOT": [24, 28, 30, 34, 37], "No": [20, 22], "Not": [16, 37, 47], "OR": 42, "Of": [15, 28, 45], "On": [0, 3, 5, 20, 21, 26, 28, 30, 37, 38, 42, 46], "One": [3, 5, 9, 13, 15, 16, 18, 24, 28, 29, 30, 34, 42], "Or": [1, 13, 28, 41], "Such": [1, 42], "That": [14, 16, 28, 30, 37, 45, 50], "The": [0, 1, 3, 6, 7, 8, 10, 11, 13, 14, 15, 16, 19, 20, 21, 24, 26, 28, 29, 32, 34, 36, 37, 38, 39, 40, 45, 47, 49, 50], "Then": [15, 29, 30, 38, 41, 42, 46, 50], "There": [1, 4, 5, 7, 9, 10, 11, 13, 15, 16, 18, 20, 22, 23, 24, 28, 29, 34, 35, 38, 40, 42, 45, 50], "These": [0, 1, 3, 5, 6, 9, 11, 14, 16, 18, 20, 21, 22, 23, 28, 30, 34, 38, 42, 50], "To": [0, 1, 3, 5, 7, 9, 10, 11, 13, 15, 16, 18, 20, 21, 23, 24, 26, 28, 30, 33, 34, 37, 38, 39, 40, 41, 42, 45, 50], "With": [5, 13, 15, 18, 38, 39, 41, 42], "_": 42, "_2": 42, "__getitem__": 18, "__resample_dim__": 20, "_build": 0, "_check_indexing_error": 18, "_coordinateaxistyp": 23, "_coordinatezisposit": 23, "_engin": 18, "_fillvalu": 5, "_getitem_multilevel": 18, "_lib": 18, "_netcdf4": 5, "a_221_19930313_0000_000": 23, "aa": 15, "ab": [9, 13, 15], "abbrevi": [7, 18, 23, 39], "abc": 18, "abernathei": 3, "abil": [2, 15, 16, 17, 21, 23, 34, 47], "abl": [5, 7, 11, 13, 16, 34, 36, 37, 50], "about": [0, 1, 5, 9, 13, 15, 16, 18, 20, 21, 22, 23, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 46, 47, 50], "abov": [0, 1, 3, 5, 7, 9, 11, 13, 15, 18, 20, 21, 22, 23, 28, 30, 32, 34, 37, 38, 39, 41, 42, 45, 50], "absolut": [15, 38], "abstract": [7, 23, 47], "accept": [11, 18, 30, 38], "access": [1, 3, 5, 9, 13, 14, 18, 21, 22, 32, 34, 37, 39, 41, 42, 45], "accident": [15, 28], "accomplish": [15, 37, 38], "accord": [13, 14], "account": [0, 9, 25, 28, 30, 32, 35], "accur": [3, 7, 11, 22], "achiev": [16, 18, 21, 37], "acknowledg": [20, 22], "acquir": 38, "across": [9, 11, 13, 14, 15, 16, 20, 22, 23, 26], "action": [28, 29, 32, 33, 35, 37, 38], "activ": [0, 24, 30, 34, 35, 36, 37, 38, 41, 46, 50], "activity_id": [20, 22], "actual": [0, 5, 7, 9, 10, 14, 15, 16, 21, 22, 28, 33], "acut": 28, "ad": [1, 3, 5, 14, 15, 16, 21, 23, 28, 29, 30, 32, 33, 37, 38], "adapt": [7, 21, 23, 35, 47, 49], "add": [1, 5, 7, 10, 11, 15, 23, 28, 29, 30, 32, 34, 35, 37, 41, 42], "add_featur": 3, "add_offset": 5, "addit": [1, 2, 3, 5, 7, 9, 15, 16, 18, 20, 21, 22, 23, 24, 28, 33, 35, 36, 37, 38, 39, 41, 50], "addition": 36, "address": [33, 36, 37, 38, 39], "adjust": 1, "admin_1_states_provinces_lak": 3, "administ": 32, "admonit": 1, "adopt": 25, "advanc": [10, 13, 14, 15, 16, 19, 23, 45], "advantag": [7, 23, 24, 39, 42, 47], "advect": 13, "advent": 39, "advertis": 33, "advic": 28, "aerosol": [20, 22], "affect": [20, 24, 28, 30, 32], "after": [1, 5, 7, 10, 11, 13, 18, 20, 21, 23, 28, 29, 30, 32, 34, 37, 38, 42, 50], "afterward": 30, "ag": 45, "again": [1, 3, 7, 14, 18, 20, 21, 28, 30, 32, 36, 37, 42, 50], "against": [22, 28], "aggreg": 21, "agnost": [19, 23, 24, 40], "agre": 28, "ahead": [30, 34], "aid": 5, "aim": 30, "air": [5, 20, 23], "air_pressur": [5, 23], "air_pressurearrai": 23, "air_pressurexarrai": 23, "air_temperatur": [5, 23], "air_temperaturearrai": 23, "air_temperaturexarrai": 23, "aka": [32, 34], "albani": [5, 28], "alert": 34, "algebra": [12, 14, 16], "algorithm": [14, 20], "alia": [7, 28], "alias": [7, 29], "align": [1, 5, 9], "all": [0, 1, 3, 5, 7, 8, 10, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 28, 30, 33, 34, 35, 36, 37, 38, 39, 42, 44, 45, 47, 49, 50], "allevi": 7, "alloc": 21, "allow": [1, 3, 5, 7, 9, 10, 11, 15, 17, 18, 19, 20, 21, 22, 23, 24, 26, 29, 30, 32, 34, 35, 38, 40, 41, 42, 44, 45, 50], "almost": [7, 9, 15, 45], "alon": 42, "along": [1, 5, 11, 13, 14, 15, 20, 28, 37, 40, 42], "alongsid": [11, 18], "alpha": [3, 22], "alreadi": [0, 5, 7, 18, 20, 21, 23, 28, 29, 30, 34, 37, 39, 40, 47], "also": [0, 1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 45, 47, 50], "alt": 1, "alter": 15, "altern": [22, 40, 41, 42], "although": [3, 7, 18, 21, 23, 39], "altitud": [5, 20, 23], "altogeth": 21, "alwai": [7, 9, 15, 16, 18, 28, 30, 32, 35, 37, 40, 42, 45, 49], "am": 7, "ambigu": 7, "america": 23, "american": [3, 22, 23], "among": [1, 5, 6, 11, 14, 21, 27, 28, 35, 40], "amount": [3, 5, 21, 38], "an": [0, 1, 5, 7, 9, 12, 13, 15, 16, 18, 19, 20, 21, 22, 23, 24, 26, 28, 29, 30, 32, 33, 34, 35, 37, 38, 39, 40, 41, 42, 45, 47, 50], "anaconda": [24, 40, 41, 46], "analog": [21, 22], "analys": [2, 16], "analysi": [16, 17, 19, 20, 21, 23, 24, 40, 47, 50], "analysis_script": 28, "analysis_script_09122021": 28, "analysis_script_09122021_edit": 28, "analysis_script_new": 28, "analysis_script_old": 28, "analyt": 19, "analyz": [5, 7, 15, 16, 20], "andrew": 16, "angel": 28, "ani": [0, 1, 5, 9, 14, 15, 16, 18, 20, 21, 22, 23, 24, 28, 29, 30, 32, 34, 35, 37, 38, 39, 42, 45, 50], "anim": [8, 11], "annot": [5, 8, 10], "announc": 33, "annual": 20, "anomali": 18, "anonym": 39, "anoth": [3, 7, 8, 11, 13, 15, 16, 18, 21, 23, 28, 30, 32, 34, 35, 37, 38, 42, 50], "answer": [8, 38], "anyon": [21, 23, 32, 38, 47], "anyth": [0, 18, 23, 28, 30, 35, 37, 42], "anywher": 36, "aogcm": [20, 22], "apach": 49, "api": 5, "appeal": [9, 21], "appear": [0, 1, 7, 9, 21, 23, 26, 38, 42, 50], "append": [7, 14, 15], "appendix": 0, "appetit": 45, "appl": 45, "appli": [7, 15, 16, 21, 22, 47, 50], "applic": [5, 15, 26, 38, 42], "apppli": 30, "appreci": 38, "approach": [7, 20], "appropri": [1, 3, 23, 37, 49], "approv": [29, 34, 38], "approxim": [1, 15, 21], "ar": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 20, 22, 23, 25, 26, 28, 29, 32, 34, 36, 37, 38, 39, 40, 41, 42, 45, 46, 47, 49, 50], "arang": [5, 9, 11, 13, 15], "arbitrari": [7, 23], "archiv": 49, "area": [20, 21, 22, 28, 42], "areacello": [20, 21, 22], "areacelloarrai": 22, "areacellocell_method": [20, 21, 22], "areacelloforcing_index": [20, 22], "areacellolong_nam": [20, 22], "areacelloprov": [20, 22], "areacelloxarrai": 20, "aren": 16, "arg": 13, "argmax": 20, "argmin": [15, 20], "argsort": 13, "arguabl": 39, "argument": [3, 5, 7, 9, 10, 11, 15, 18, 20, 21, 23, 45], "aris": [20, 22], "arithmet": [7, 21, 23, 45], "arm": 16, "around": [11, 14, 28, 40, 45], "arr": 21, "arrai": [5, 9, 10, 11, 12, 15, 16, 18, 19, 20, 22], "arrang": [5, 7], "arriv": 7, "arrow": [9, 29, 34, 42], "art": 16, "as_strid": 15, "ascend": 18, "ascii": 18, "asid": 28, "ask": [8, 11, 16, 30, 33, 37, 38, 39], "aspect": [7, 36, 42, 47], "aspir": 50, "asset": [37, 39], "assign": [5, 13, 18], "assist": [5, 21], "associ": [3, 5, 9, 10, 11, 16, 18, 23, 35, 37], "assort": 12, "assum": [5, 7, 11, 18, 21, 29, 30, 32, 37], "assumpt": 50, "astimezon": 7, "astyp": 21, "atlassian": 37, "atmoschem": [20, 22], "atmospher": [16, 20, 22], "attach": 23, "attempt": [10, 16, 18, 38], "attent": [23, 28], "attr": 23, "attribut": [1, 3, 5, 7, 11, 19, 20, 21, 22], "authent": 26, "author": [1, 28, 30, 37, 38, 50], "authorship": 1, "auto": 42, "autom": [29, 38], "automat": [1, 9, 11, 16, 18, 20, 21, 23, 28, 30, 32, 34, 38, 41, 42], "autopct": 10, "avail": [0, 1, 5, 8, 9, 11, 16, 21, 23, 37, 38, 39, 47, 50], "averag": [15, 18, 20, 22], "avg": 15, "avoid": [1, 7, 16, 18, 23, 28, 36, 37], "awai": 42, "await": 30, "awar": [1, 5, 20, 23], "ax": [9, 10, 20, 22, 23], "ax2": [3, 11], "axdict": 9, "axes_dict": 9, "axhlin": 22, "axi": [5, 10, 11, 13, 14, 15, 20, 21, 22, 23], "axvlin": 22, "azimuth": 15, "b": [7, 9, 13, 14, 15, 20, 21, 22, 28, 37, 42, 49], "b2a3b61": 37, "back": [13, 15, 20, 26, 30, 36, 37, 42, 47], "backend": 8, "background": [33, 42, 50], "backward": 14, "bad": 42, "band": 9, "banihirw": 49, "bar": [16, 21, 37, 42], "base": [7, 9, 11, 15, 16, 18, 20, 21, 23, 24, 26, 28, 32, 34, 36, 37, 39, 40, 42, 45, 47], "basi": 38, "basic": [2, 6, 7, 8, 10, 12, 13, 15, 16, 19, 20, 21, 23, 25, 29, 30, 32, 34, 36, 37, 38, 40, 50], "bb": 15, "bbox": 9, "becaus": [1, 5, 7, 8, 9, 20, 21, 23, 24, 28, 30, 33, 34, 39, 45, 47], "becom": [3, 14, 15, 20, 21, 23, 29, 30, 34, 36, 50], "been": [0, 3, 18, 21, 23, 28, 29, 30, 32, 33, 37, 39, 42], "befor": [1, 2, 5, 7, 9, 14, 15, 18, 20, 21, 22, 23, 28, 29, 30, 34, 37, 38, 39, 42], "begin": [1, 3, 5, 9, 11, 13, 14, 15, 22, 30, 34, 36, 37, 45], "beginn": 28, "behav": [9, 15, 18, 20], "behavior": [10, 15, 18, 20, 21, 23], "behind": [7, 23, 33, 37, 47], "being": [9, 11, 15, 16, 18, 23, 28, 30, 33, 38, 42, 50], "believ": 50, "bell": 40, "below": [1, 3, 5, 7, 9, 10, 13, 15, 16, 18, 21, 22, 23, 24, 28, 32, 33, 35, 36, 37, 38, 41, 42, 45, 50], "benchmark": 7, "benefit": [23, 47, 50], "best": [7, 9, 24, 25, 28, 30, 34, 37, 40, 46], "beta": 1, "better": [1, 9, 18], "between": [2, 7, 9, 11, 13, 14, 20, 21, 23, 26, 28, 37, 40, 42], "beyond": [7, 19, 23], "bf89419": 37, "bgcsub_experi": [20, 22], "bhist": [20, 22], "bigger": [3, 15], "biggest": 40, "bilinear": 11, "billion": [7, 21], "bin": [9, 10, 20], "binari": 7, "binder": [9, 42, 45], "biogeochemistri": [20, 22], "bit": [14, 16, 32], "bitwis": [13, 20], "bitwise_and": 13, "bivari": 11, "black": [3, 9, 11, 18, 22], "blank": 10, "blind": 9, "blink": 42, "blit": 10, "bloat": 15, "block": [7, 9, 10, 11, 14, 45, 50], "block_siz": 15, "blog": 21, "blue": [3, 9, 10, 11, 13, 22, 42], "bodi": [1, 3], "bonu": 16, "book": [1, 8, 18, 20, 21, 22, 29, 30, 35, 40, 44], "boolean": 20, "boost": 38, "border": 3, "borrow": 19, "bot": 29, "both": [1, 5, 9, 10, 11, 15, 20, 21, 23, 30, 32, 37, 41, 42, 43, 50], "bother": 7, "bottom": [1, 9, 42], "boulder": [5, 20, 22, 23], "bound": 23, "boundsunit": [20, 22], "box": [1, 18, 33, 34, 36, 38, 42], "boxstyl": 9, "brace": 45, "bracket": [18, 23, 45], "branch": [20, 22, 25, 29, 32, 33, 38], "branch_method": [20, 22], "branch_time_in_child": [20, 22], "branch_time_in_par": [20, 22], "brancha": [30, 34], "branchb": 30, "brand": [28, 45], "break": [1, 20, 21, 24, 28, 37], "brian": 28, "brief": [1, 23, 40, 44, 50], "briefli": [1, 5, 7, 28, 37], "bring": [23, 30, 33], "broad": [5, 16, 20], "broadcast": [14, 23], "broadli": 50, "broken": [21, 33], "brose": 28, "brought": [30, 48], "brown": 3, "brows": [28, 35, 39], "browser": [0, 10, 26, 32, 37, 38, 39, 40, 41, 42, 50], "bug": [21, 33, 35, 37, 39], "build": [1, 7, 8, 29, 32, 39, 50], "built": [2, 5, 6, 7, 8, 14, 16, 17, 20, 21, 23, 32, 45, 47], "bulk": [14, 20, 47], "bullet": 42, "bunch": 16, "burden": 23, "button": [0, 29, 32, 33, 34, 37, 38, 41, 42], "bwr": 11, "byte": [15, 21], "bytes_per_item": 15, "c": [5, 9, 10, 11, 14, 20, 22, 28, 41, 42, 45, 47], "c1": 9, "c2": 9, "c3": 30, "c4": 30, "cach": [18, 20, 23], "calcul": [13, 16, 18, 20, 23], "calendar": [6, 7, 16, 20, 21, 22], "call": [3, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 23, 24, 28, 29, 30, 32, 33, 35, 38, 41, 42, 45, 46], "callabl": 3, "cam6": [20, 22], "camron": 49, "can": [0, 1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 26, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 45, 46, 47, 49, 50], "cannot": [7, 11, 18, 23, 30, 42], "canva": 3, "capabl": [8, 10, 14, 15, 18, 20, 23, 37, 39], "capit": [10, 47], "captur": [5, 14, 37], "cardiac": 16, "care": [15, 24, 42], "carpentri": [28, 36], "carre": 3, "cartesian": 3, "cartopi": [1, 16, 22, 23], "case": [1, 5, 7, 9, 10, 11, 15, 18, 20, 21, 22, 23, 32, 33, 35, 36, 39, 50], "case_id": [20, 22], "casted_kei": 18, "cat": 45, "categori": 3, "caus": [1, 18, 21, 23, 42], "cbar": 9, "cbcmap": 9, "cc": [9, 49], "ccmap": 9, "ccr": [3, 22], "cd": [30, 32, 37, 46, 50], "cdl": 5, "cdm": 23, "cdot": 13, "ceas": 36, "celebr": 26, "celesti": 7, "cell": [1, 3, 9, 10, 13, 14, 15, 18, 20, 21, 22, 40, 41, 45, 50], "cell_areatime_label": [20, 22], "cell_measur": [20, 21, 22], "cell_method": [20, 21, 22], "celsiu": [5, 18, 20, 23], "center": [9, 12, 15, 20, 22], "centerpiec": 28, "centr": 23, "central": 23, "central_latitud": 3, "central_longitud": [3, 22], "centuri": [20, 22], "certain": [5, 13, 15, 18, 21, 23, 36, 38, 42], "certainli": 15, "cesm2": [20, 22], "cesm2_grid_vari": [20, 22], "cesm2_sst_data": [20, 21, 22], "cesm2parent_time_unit": [20, 22], "cesm2source_typ": [20, 22], "cesm_cmip6": [20, 22], "cf": [20, 22, 23], "cf_role": 5, "cfdm": 5, "cfeatur": 3, "cfgeom": 5, "cfgridwriter2": 23, "cftime": [5, 6, 16, 20, 21, 22], "cftimeindex": [20, 21, 22], "chain": 18, "chanc": 7, "chang": [0, 3, 9, 10, 11, 15, 18, 20, 21, 22, 23, 24, 30, 32, 33, 34, 35, 36, 38, 39, 41, 42, 45, 46, 50], "chapter": [6, 30, 34, 37, 50], "char": 5, "charact": [5, 42], "character": 18, "characterist": 5, "charg": 39, "chart": [8, 11, 16], "cheat": [9, 10, 24], "check": [0, 1, 9, 13, 14, 15, 16, 20, 24, 29, 30, 34, 35, 38], "checkout": [28, 29, 30, 37], "checksum": 28, "choic": [9, 10, 28, 30, 37, 40], "choos": [3, 9, 27, 33, 36], "chose": [28, 40], "chosen": [10, 20, 21, 22, 23, 29, 46], "chrome": 41, "chunksiz": 21, "chunktyp": 21, "cice5": [20, 22], "circl": [11, 38, 42], "cism2": [20, 22], "citat": [1, 20, 22], "clabel": 11, "clarif": [1, 5, 29], "clarifi": 29, "clariti": 5, "class": [3, 5, 18, 23, 42, 45], "classic": [14, 41, 46], "clat": 3, "clean": [14, 28], "clear": [1, 5, 11, 18, 20, 37], "clearer": [15, 18, 23], "clearli": [5, 7, 38], "clever": [13, 15, 18], "click": [0, 9, 23, 29, 32, 33, 34, 36, 37, 38, 41, 42, 45, 50], "climat": [5, 7, 16, 20, 22], "climatolog": 22, "climatologi": 22, "clipboard": 32, "clm5": [20, 22], "clon": 3, "clone": [0, 25, 28, 29, 30, 33, 34, 36, 38, 50], "close": [5, 20, 21, 22, 23, 28, 33, 34, 41, 42], "closer": [3, 42], "closest": [15, 20], "cloud": [7, 27, 32, 45], "cluster": 16, "clutter": 36, "clyne": [37, 49], "cmap": [9, 11, 20, 22], "cmip": [20, 22], "cmip6": [20, 22], "cmip6model_doi_url": [20, 22], "cmip6parent_source_id": [20, 22], "cmipbranch_method": [20, 22], "cmipparent_experiment_id": [20, 22], "co": [3, 9, 13, 14, 20, 22, 23, 50], "co_temp": 23, "coarsen": 20, "coast": 22, "coastlin": [3, 22], "code": [1, 3, 5, 7, 9, 10, 11, 15, 16, 17, 18, 20, 21, 23, 26, 27, 28, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41, 46, 47, 49, 50], "codebas": [28, 30, 47], "codeown": 38, "coder": [20, 21, 22], "cohes": 1, "col": 15, "cold": 22, "colder": 9, "collabor": [25, 28, 30, 32, 33, 34, 35, 37, 38, 39, 44], "collaps": [23, 42], "collect": [9, 23, 24, 35, 37, 45, 48, 50], "collector": 10, "collis": 30, "colon": [14, 45], "color": [3, 9, 10, 18, 22, 45], "colorado": 23, "colorbar": [3, 8, 11], "colormap": [10, 11], "colormap_nam": 9, "colorset": 11, "column": [11, 13, 14, 15, 16], "columnar": 18, "com": [1, 3, 18, 20, 23, 30, 32, 35, 36, 37, 50], "combin": [5, 7, 9, 13, 15, 16, 22, 23, 28, 30], "come": [7, 13, 15, 16, 21, 23, 24, 28, 35, 40], "comfort": [40, 50], "comma": [17, 18], "command": [0, 30, 32, 36, 37, 39, 40, 41, 45, 46, 50], "comment": [0, 1, 5, 9, 20, 21, 29, 33, 34, 37, 38], "commit": [1, 29, 30, 32, 34], "common": [5, 9, 11, 14, 15, 16, 17, 20, 22, 23, 28, 34, 35, 37, 39, 42, 49], "commonli": [4, 5, 7, 10, 11, 18, 20, 23, 37, 38, 47], "commun": [8, 14, 16, 20, 21, 23, 25, 26, 32, 33, 34, 37, 39, 44, 47, 49, 50], "compani": 16, "compar": [7, 9, 13, 15, 29, 30, 34, 37, 42, 47], "comparison": [18, 28], "compartment": 30, "compat": [15, 47, 50], "compet": 30, "compil": 47, "complement": 13, "complet": [1, 5, 7, 13, 18, 20, 21, 28, 29, 32, 33, 37, 42, 50], "complex": [7, 9, 16, 20, 21, 35, 37, 38], "compliant": 5, "complic": [10, 37], "compon": [7, 13, 20, 23, 26, 30, 40, 50], "component_of_wind_isobar": 23, "composit": 9, "comprehens": [6, 8, 11, 45], "compress": [5, 32], "compris": 1, "comput": [7, 12, 16, 19, 23, 26, 28, 29, 30, 32, 35, 36, 37, 40, 42, 44, 45, 47, 50], "computed_d": 21, "con": 36, "concaten": 21, "concept": [1, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 46], "conceptu": [15, 35], "concern": 9, "concis": [1, 19, 20], "concret": 13, "conda": [26, 27, 41, 42, 46, 50], "condit": [13, 18, 22, 45], "conduct": 47, "config": [0, 28], "configur": [1, 25, 28, 30, 32, 34, 37, 50], "confirm": [1, 9, 15, 41], "conflict": [30, 34, 38], "conform": [3, 5, 23], "confus": [5, 7, 20, 30, 38], "congratul": [32, 41, 46], "conic": 5, "connect": 36, "consecut": 5, "consequ": 42, "conserv": [20, 21, 22], "consid": [5, 14, 15, 16, 21, 28, 32, 37, 40, 42], "consist": [5, 7, 11, 18, 20, 21, 22, 26, 32, 34, 37, 38, 39], "constant": [3, 20, 45], "constrained_layout": 9, "construct": [0, 4, 6, 9, 15, 17, 31, 43], "constructor": 9, "consult": [20, 22], "consum": 21, "consumpt": 49, "contact": 1, "contain": [0, 1, 2, 3, 4, 5, 6, 7, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 35, 37, 38, 39, 42, 44, 45, 50], "contempt": 28, "content": [0, 4, 6, 17, 23, 28, 29, 30, 32, 34, 37, 38, 39, 42, 43, 49, 50], "context": [13, 15, 28, 33, 37, 42], "contigu": 14, "continu": [14, 20, 24, 30, 34, 37], "contour": [3, 8, 9, 16], "contourf": [3, 9, 11, 20], "contrast": 23, "contribut": [1, 8, 21, 25, 28, 30, 34, 36, 37, 47], "contributor": [28, 29, 30, 34, 37, 38], "control": [15, 20, 22, 25, 29, 30, 32, 34, 36, 37, 38, 42, 44], "convei": [5, 7, 22, 23], "conveni": [7, 18], "convent": [5, 14, 20, 21, 22, 23], "convers": [5, 7, 9, 18, 33, 34, 35], "convert": [3, 5, 7, 9, 10, 13, 14, 15, 18, 20, 21, 22, 23, 33], "convert_degc_to_kelvin": 18, "cool": 25, "coolwarm": 22, "coord": 23, "coordin": [3, 7, 9, 15, 19, 20, 21, 22], "coordinatestandard_nam": 23, "copi": [1, 11, 13, 15, 28, 30, 32, 34, 35, 37, 42], "copyright": 1, "core": [3, 11, 12, 14, 18, 21, 23, 29, 44, 50], "corner": [11, 42, 50], "correct": [1, 7, 9, 20, 21, 23, 38], "correctli": [7, 9, 41], "correspond": [3, 5, 9, 10, 13, 14, 15, 16, 18, 20, 22, 23, 30, 36], "corrupt": 42, "cos_csum": 14, "cos_sum": 14, "cos_t": 14, "cost": 7, "could": [3, 9, 14, 15, 16, 18, 29, 32, 33, 34, 35, 42], "count": [1, 10, 18, 20, 21, 32, 45], "counterpart": 18, "countri": 3, "coupl": [20, 22, 37], "cours": [15, 28, 45], "cousin": 32, "cover": [1, 3, 5, 6, 7, 9, 10, 11, 14, 18, 20, 21, 22, 23, 24, 28, 30, 32, 34, 35, 38, 39, 40, 41, 42, 46, 48, 50], "coverag": [3, 20, 21, 22], "cowork": 40, "cpu": 21, "cr": [3, 22], "crash": 18, "creat": [1, 7, 8, 10, 13, 15, 16, 18, 20, 22, 25, 26, 32, 34, 35, 36, 38, 40, 41, 42, 45, 46, 50], "createdimens": 5, "createvari": 5, "creation": [2, 30, 36], "creativ": [20, 22, 49], "creativecommon": [20, 22], "creator": 33, "credenti": 36, "credit": [1, 49], "criteria": 36, "criterion": 18, "critic": [23, 28], "crop": 15, "cross": [0, 2, 6, 11, 24, 40, 44], "crucial": 14, "csv": 18, "ctrl": [41, 46], "cultur": 3, "cumbersom": 23, "cumsum": 14, "cumul": 14, "curli": 45, "current": [0, 3, 5, 7, 8, 15, 24, 28, 30, 42, 50], "cursor": 42, "curv": 22, "custom": [1, 8, 22, 42, 47], "customis": 16, "cut": 42, "cutoff": [20, 21, 22], "cv": [28, 39], "cycl": [20, 34], "cyclic": 9, "cyclon": 7, "d": [0, 5, 7, 9, 10, 11, 14, 15, 20, 21, 22, 30, 32, 34, 41, 42, 46, 49], "d2": [20, 22], "d67h1h0vnominal_resolut": [20, 22], "d_2d": 15, "d_3d": 15, "da": 21, "dai": [5, 20, 22, 23, 28, 45], "dark": [18, 42], "darr": 21, "dash": 11, "dashboard": 41, "dask": [16, 19], "data": [1, 2, 6, 10, 13, 16, 17, 19, 22, 24, 26, 35, 42, 47, 50], "data_var": 23, "dataarrai": [20, 21, 22], "dataarraydim_0": 23, "dataarraygroupbi": 20, "dataarraylat": 23, "dataarrayresampl": 20, "dataarraytim": 23, "databas": [17, 18], "dataplot": 3, "dataseri": 18, "dataset": [3, 5, 9, 11, 16, 18, 19, 20, 21, 22, 29], "datasetdimens": [20, 22, 23], "datasetscan": 23, "datatyp": [5, 47], "date": [6, 16, 18, 20, 23, 28, 30, 37, 50], "date2num": 5, "date_rang": 23, "datelin": 22, "datetim": [5, 16, 23], "datetime64": [6, 16, 18, 23], "datetimeaccessor": 20, "datetimeindex": [18, 23], "datetimenoleap": [20, 21, 22], "dawson": 16, "de": [8, 25], "deactiv": [24, 50], "deal": [6, 9, 15, 16, 23], "dealt": 38, "debug": 38, "decemb": 20, "decent": 3, "decept": 7, "decid": [11, 30, 38, 47], "decim": [14, 45], "decis": 45, "declar": [5, 11], "decod": [20, 21, 22], "decreas": [5, 9, 23], "dedic": 37, "deeper": 7, "def": [10, 18], "default": [3, 5, 9, 10, 11, 14, 16, 18, 20, 28, 32, 33, 34, 35, 36, 41, 45], "defer": 21, "defici": 47, "defin": [0, 3, 5, 7, 9, 10, 13, 18, 20, 21, 22, 23, 45], "definit": [2, 3, 9, 21, 22, 42, 45], "deg2rad": [3, 45], "degc": [18, 20, 21], "degcvariable_id": [20, 21, 22], "degre": [3, 7, 14, 18, 20, 21, 23, 45], "degreeparent_activity_id": [20, 22], "degrees_east": [5, 20, 22], "degrees_eastarrai": [20, 21, 22], "degrees_eastlong_nam": 23, "degrees_north": [5, 20, 22], "degrees_northarrai": [20, 21, 22], "degrees_northlong_nam": 23, "delai": [21, 29], "delet": [10, 24, 28, 33, 35], "delta": [15, 32], "delv": [3, 7], "demonstr": [5, 9, 10, 13, 15, 18, 20, 21, 22, 23, 28, 30, 32, 34, 42], "deni": 37, "denot": [30, 45], "densiti": [9, 10], "depend": [3, 5, 11, 20, 21, 24, 28, 29, 30, 33, 34, 37, 41, 46], "deploi": [28, 29], "deploy": 29, "deprec": [5, 7, 18, 20], "deprecationwarn": [5, 7], "depth": [18, 21], "depthli": 30, "deriv": [10, 12], "describ": [1, 5, 7, 9, 10, 11, 13, 15, 18, 20, 21, 23, 28, 29, 30, 37, 38, 50], "descript": [1, 5, 7, 18, 20, 21, 22, 23, 28, 29, 37, 38], "design": [1, 2, 5, 7, 15, 30, 35, 38, 42, 47], "desir": [11, 30, 32, 37], "desktop": [32, 35, 42], "despic": 28, "despit": [7, 9], "destin": [32, 34, 37], "destruct": 28, "detach": 28, "detachedhead": 28, "detail": [1, 3, 5, 7, 9, 10, 18, 20, 21, 23, 25, 27, 28, 33, 34, 38, 39, 41, 42, 44, 45, 50], "determin": [7, 21, 35], "dev": [18, 20, 21, 22, 50], "develop": [16, 19, 21, 24, 26, 28, 30, 33, 37, 39, 40, 47], "deviat": [16, 20, 22, 23], "devic": 21, "devop": 39, "dew": 11, "dewpoint": 11, "dewpoint_1000": 11, "df": 18, "diagnost": 21, "diagram": [9, 11, 14, 35], "dialogu": 42, "dice": [15, 17], "dict": [9, 18], "dictat": 35, "dictionari": [9, 18, 23, 28], "did": [7, 13, 20, 32, 37], "didn": 23, "diff": [7, 28, 37], "differ": [1, 5, 6, 9, 10, 13, 14, 18, 20, 22, 23, 25, 28, 30, 32, 33, 34, 37, 38, 39, 40, 41, 42, 50], "difficult": [15, 20, 21], "dig": 7, "digest": 15, "digit": [37, 39], "dilemma": 33, "dim": [14, 20, 22, 23], "dim_0": 23, "dim_1": 23, "dim_2": 23, "dim_2xarrai": 23, "dimens": [11, 13, 14, 19, 20, 21, 22], "dimension": [5, 14, 16, 18, 19, 21, 23], "direct": [5, 18, 30, 34], "directli": [0, 2, 16, 18, 21, 28, 37, 42], "directori": [3, 28, 32, 37, 41, 42, 46, 50], "directory_nam": 37, "disabl": 36, "disadvantag": [23, 47], "disc": [41, 42], "discard": [28, 37], "disciplin": [16, 50], "discov": 14, "discret": [5, 9, 12], "discuss": [5, 7, 18, 21, 23, 25, 28, 29, 30, 32, 34, 35, 36, 37, 38, 39, 43], "disk": [5, 24], "diskless": 5, "disori": 7, "displac": [20, 22], "displai": [1, 3, 9, 10, 18, 21, 23, 30, 36, 37, 38, 40, 42], "dissemin": 39, "distanc": 9, "distinct": [21, 23], "distinguish": [28, 44], "distribut": [9, 10, 11, 16, 18, 21, 24], "district": 7, "disturb": 37, "dive": [15, 28], "diverg": [9, 37], "divid": [1, 21, 22], "do": [0, 1, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 22, 24, 25, 28, 30, 32, 33, 34, 37, 38, 39, 41, 42, 45, 46, 50], "doc": [3, 5, 13, 20, 21, 22, 30, 45], "docstr": 28, "document": [1, 3, 5, 7, 8, 9, 10, 11, 12, 15, 17, 18, 20, 21, 23, 24, 26, 28, 30, 37, 38, 39, 40, 42], "doe": [1, 5, 7, 10, 13, 15, 16, 21, 23, 26, 28, 37, 38, 39, 42, 45], "doesn": [7, 9, 30, 37, 42], "doi": [20, 22, 49], "domain": [3, 5, 14, 19], "don": [13, 14, 18, 28, 37, 42, 47, 50], "done": [3, 7, 9, 18, 23, 28, 32, 37, 41, 42, 45, 47, 50], "dot": [1, 13, 18, 21, 22, 23, 42], "doubl": [5, 9, 42, 45], "doublearrai": [20, 21, 22], "doubt": 39, "down": [5, 7, 23, 24, 28, 34, 41, 45], "downarrai": 23, "downgrib_level_typ": 23, "download": [0, 3, 18, 20, 23, 28, 32, 36, 39, 40, 50], "downsampl": 20, "downsid": 9, "downward": [20, 22], "downxarrai": 23, "dozen": 26, "draft": 29, "drag": 42, "dramat": 21, "draw": 9, "draw_label": 3, "drive": [20, 22], "driver": 39, "drop": [22, 34, 45], "dropdown": [9, 42], "ds_1000": 23, "dsg": 5, "dstack": 13, "dt": [7, 20], "dtype": [14, 15, 18, 20, 21, 22, 23], "due": [5, 7, 23], "dump": 5, "durat": 7, "dure": [7, 30, 38], "dynam": [20, 22, 45], "e": [1, 5, 7, 9, 10, 11, 13, 14, 15, 16, 17, 18, 20, 22, 26, 28, 30, 32, 35, 37, 38, 39, 42, 46, 49, 50], "e21": [20, 22], "e56ea58071f150ec00904a50341a672456cbcb8f": 28, "each": [1, 3, 5, 9, 10, 13, 14, 15, 16, 18, 20, 21, 23, 24, 28, 30, 35, 36, 37, 39, 40, 42, 45], "eager": 21, "earli": [20, 22], "earlier": [3, 5, 7, 18, 20, 21, 23], "earth": [2, 5, 7, 20], "eas": 9, "easi": [7, 17, 28, 33, 35, 36, 37, 40, 47, 50], "easier": [7, 15, 16, 23], "easili": [5, 7, 9, 13, 18, 21, 23, 36, 38], "east": 16, "ec": 9, "ecosystem": [5, 12, 14, 15, 16, 28, 35, 39, 40, 44, 48, 50], "edc31c0": 28, "edg": 15, "edgecolor": [3, 9], "edit": [0, 1, 5, 28, 30, 32, 37, 38, 42, 46], "editor": [28, 32, 37, 38, 40, 46], "edu": 28, "educ": [48, 50], "educreation_d": [20, 22], "effect": [3, 7, 10, 18, 20, 28, 37, 38, 40, 44, 49, 50], "effici": [6, 15, 16, 18, 19, 38, 47], "effort": [7, 10, 16, 21], "either": [1, 5, 7, 15, 18, 20, 22, 30, 32, 34, 37, 38, 45], "el": [18, 22], "elabor": 18, "element": [1, 3, 5, 11, 13, 14, 15, 16, 20, 23, 38], "elimin": 3, "els": [1, 20, 33, 45], "elsewher": [28, 33, 43], "email": 39, "emb": 1, "embed": 21, "emphas": 45, "emploi": [7, 37], "empti": [3, 10, 15, 21, 30, 42], "enabl": [1, 18, 20, 22, 30, 32, 35, 36, 39, 44, 50], "enclos": 20, "encount": [8, 14, 28], "encourag": [1, 20, 22, 24, 30, 40], "end": [1, 3, 7, 9, 13, 14, 15, 20, 22, 30, 31, 33, 37, 42, 45], "energi": [20, 22], "engin": [21, 26], "england": 7, "english": 7, "enhanc": [15, 28, 42], "enough": [20, 22, 40], "ensembl": [20, 22], "enso": 18, "enso34": 18, "enso_data": 18, "ensur": [3, 5, 9, 20, 22, 24, 29, 37], "enter": [30, 38, 41, 42, 45, 50], "entir": [3, 14, 18, 20, 22, 28, 42], "entireti": [0, 14], "entri": 14, "enumer": [1, 15, 32], "env": [0, 18, 20, 21, 22, 24, 50], "environ": [1, 11, 26, 30, 37, 39, 40, 41, 42, 44, 45, 46, 50], "environment": 23, "eof": 16, "ep": 16, "epoch": 7, "equal": [11, 18, 20, 28], "equat": [1, 10, 13, 15, 21, 26, 42], "equatori": 22, "equival": [1, 3, 7, 14, 18, 20, 42], "eroglu": 49, "err": 18, "errat": 21, "error": [0, 1, 7, 19, 20, 23, 28, 30, 37, 38, 42], "esc": 46, "esd": 5, "esoter": 7, "especi": [0, 1, 3, 9, 18, 36, 39, 41, 47], "essenc": 30, "essenti": [1, 7, 18, 23, 24, 28, 30, 32, 50], "establish": [30, 36, 39, 47], "estat": 42, "estim": [1, 15], "etc": [1, 11, 16, 20, 24, 26, 30, 33, 40, 42], "europ": 3, "even": [3, 7, 9, 10, 13, 14, 15, 18, 33, 34, 36, 37, 40, 42, 50], "evenli": [3, 14], "event": [7, 22, 33, 34], "eventu": [0, 40], "ever": [28, 47], "everi": [5, 7, 13, 14, 20, 23, 24, 28, 34, 37, 38, 47], "everyon": [30, 37, 48], "everyth": [16, 20, 24, 30, 41, 42], "evolv": [20, 22, 37], "ex": 9, "exact": [3, 7, 20, 22, 32], "exactli": 7, "exagger": 3, "examin": [7, 33, 38], "exampl": [5, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 25, 28, 29, 30, 32, 33, 34, 36, 37, 38, 39, 41, 42, 44, 45, 47], "exce": 22, "excel": 37, "except": [1, 3, 5, 10, 18, 23], "excerpt": 5, "exclud": [20, 22], "exclus": [14, 18, 20], "execut": [7, 9, 15, 21, 30, 40, 42, 45, 46, 50], "exercis": 7, "exis": 30, "exist": [1, 5, 7, 16, 18, 20, 21, 23, 30, 32, 33, 35, 37, 38, 42], "exit": [28, 29, 42, 46], "exp": [11, 15], "expand": [13, 14, 18, 23], "expect": [7, 15, 24, 29, 37, 42, 50], "experi": [11, 19, 20, 22, 30, 32, 50], "experienc": 39, "experiment": [7, 28], "experiment_id": [20, 22], "explain": [23, 28, 34], "explan": [9, 26, 35], "explanatori": 40, "explicit": 32, "explicitli": [9, 14, 38, 50], "explod": 10, "explor": [9, 10, 14, 15, 18, 23, 26, 28, 35, 39, 42], "exploratori": 17, "export": 28, "express": [3, 7, 9, 15, 17, 20, 21, 22], "extend": [13, 14, 16, 45], "extens": [8, 13, 29, 42, 43], "extent": [3, 5, 11, 20, 22], "extern": [1, 37], "extra": [1, 5], "extract": [13, 14, 16, 18, 20, 23], "extran": 3, "extrem": [8, 21], "f": [0, 5, 7, 9, 15, 20, 21, 42, 45, 50], "f09_g17": [20, 22], "f98d05e312d19a84b74c45402a2904ab94d86e45": 28, "f_": 15, "f_i": 15, "face": 3, "facecolor": [3, 9], "facil": 16, "facilit": [33, 39], "fact": [3, 7, 8, 15, 18, 23, 28, 34, 35, 38], "facto": [8, 25], "factor": 40, "fail": [21, 37], "fairli": 21, "fake": [9, 11], "fall": 18, "fals": [10, 13, 18, 20, 23, 28, 45], "familiar": [1, 5, 7, 8, 9, 13, 14, 18, 19, 20, 21, 23, 29, 30, 38, 40, 42, 44, 46, 47], "fanci": 9, "far": [5, 16, 21, 42], "fashion": [20, 21, 23], "fast": [12, 17, 18, 34, 45], "fatal": [30, 37], "favorit": [0, 28, 37, 40, 46], "fc": 9, "featur": [2, 5, 7, 8, 9, 11, 16, 17, 18, 21, 22, 23, 30, 32, 33, 39, 42, 44], "feature_artist": 3, "feature_interfac": 3, "featureartist": 3, "featuretyp": [5, 23], "februari": 20, "feed": 10, "feedback": [0, 29, 30, 35, 38, 39], "feel": [0, 1, 9, 37, 38, 42, 45, 50], "fetch": [18, 20, 21, 22, 23, 30, 32, 34, 37], "few": [1, 7, 11, 14, 18, 28, 29, 32, 45, 50], "field": [13, 15, 16, 20, 21, 22, 47], "fieldtitl": [20, 22], "fifth": 13, "fig": [3, 9, 10, 11, 20, 22], "figsiz": [3, 9, 11, 18, 20, 22], "figur": [9, 10, 18, 20, 22, 23, 38, 50], "file": [0, 3, 4, 7, 10, 11, 16, 17, 18, 19, 20, 22, 23, 26, 28, 29, 30, 32, 34, 35, 36, 37, 38, 39, 41, 42, 46, 50], "filepath": [18, 20, 22, 23], "filepath2": [20, 22], "fill": [9, 21, 22, 28, 33, 42, 47], "fill_between": 22, "filler": 5, "filter": [16, 20, 33, 36], "filterwarn": 3, "final": [0, 1, 3, 5, 7, 11, 13, 14, 15, 18, 20, 21, 22, 23, 34, 35, 37, 38, 42], "find": [1, 3, 7, 8, 10, 11, 13, 14, 16, 18, 20, 21, 23, 24, 26, 28, 29, 30, 38, 42, 45], "finish": [1, 28, 34, 38, 40], "finit": [5, 15, 20, 22], "firm": 7, "first": [0, 2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 20, 22, 27, 28, 29, 30, 32, 36, 37, 38, 39, 41, 42, 44, 46, 50], "fit": [15, 20, 22], "five": [18, 28, 32], "fix": [5, 7, 14, 20, 22, 28, 29, 33, 37], "flag": 28, "flat": 3, "flaw": 7, "flexibl": [16, 17, 45], "flip": 14, "float": [5, 7, 9, 10, 14, 20, 21, 22, 47], "float32": [5, 20, 21, 22, 23], "float321": 23, "float32100": 23, "float3228": 22, "float32nan": 20, "float64": [5, 14, 18, 20, 21, 22, 23], "float640": [20, 21, 22], "float641": [22, 23], "float64190": 22, "float6425": 23, "float64274": 23, "flow": 30, "flowchart": 30, "fluffi": 45, "flux": [20, 22], "focu": [15, 23, 38], "focus": [19, 23, 33, 50], "folder": [35, 41, 42], "follow": [0, 1, 3, 5, 7, 9, 10, 11, 14, 15, 18, 20, 21, 22, 23, 24, 26, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 46, 50], "font": 11, "fontsiz": [9, 45], "forc": 50, "ford": 49, "forecast": [5, 11, 23], "forecast_model": 5, "forecast_tim": 5, "foreign": 5, "forget": 14, "forgotten": 42, "fork": [25, 28, 29, 33, 35, 36, 38], "form": [0, 1, 3, 5, 9, 18, 19, 20, 28, 37, 50], "formal": [16, 34], "format": [1, 5, 8, 9, 11, 16, 18, 23, 38, 40, 42, 45, 50], "format_byt": 21, "former": 37, "formerli": 19, "forth": 35, "fortran": [45, 47], "fortun": [20, 33], "forum": [34, 37, 39], "forward": [7, 15, 42], "foss": 28, "foster": 39, "found": [0, 1, 3, 5, 7, 20, 22, 29, 33, 50], "foundat": [1, 2, 8, 16, 29, 33, 35, 41, 44, 46, 49], "four": [9, 21, 26, 34], "fourier": [12, 14], "frac": [9, 42], "fraction": [20, 21, 22], "frame": [10, 18], "framework": 37, "free": [0, 1, 9, 21, 25, 28, 36, 40, 41, 42, 45, 47, 49], "freeli": [28, 39], "french": [3, 7], "freq": [18, 20, 21, 22, 23], "frequenc": [18, 20, 21, 22], "frequent": [0, 7, 15, 23, 24, 28], "fresh": 42, "friend": [7, 28], "friendli": [7, 9, 18], "from": [0, 1, 2, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 26, 28, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 50], "from_list": 9, "front": 1, "frustrat": 7, "fstr": 9, "ftp": 39, "full": [0, 3, 9, 14, 15, 18, 20, 23, 24, 39, 41, 50], "fullest": [20, 22], "fulli": [1, 6, 7, 23, 28], "fun": [19, 37, 45], "function": [3, 5, 7, 9, 11, 13, 15, 16, 18, 19, 21, 22, 23, 24, 32, 35, 38, 42, 45, 47], "fundament": [12, 14, 16, 23, 47, 50], "further": [3, 5, 7, 13, 15, 20, 22, 35], "further_info_url": [20, 22], "furtherinfo": [20, 22], "furthermor": 9, "futur": [5, 7, 18, 20, 30, 47], "futurewarn": [18, 20], "fx": 20, "fxid": [20, 22], "fxing": 28, "g": [5, 7, 9, 11, 15, 16, 17, 18, 20, 22, 26, 28, 32, 35, 38, 39, 46], "gain": 20, "galleri": [9, 11, 16, 23], "gap": 47, "garbag": 10, "garner": 18, "gatewai": 14, "gather": [24, 42], "gaug": 5, "gb": [20, 21, 22], "gca": 9, "gear": 38, "gener": [0, 1, 5, 7, 9, 10, 13, 16, 18, 20, 21, 22, 24, 28, 33, 34, 35, 37, 39, 40, 42], "generating_process_or_model": 23, "geo": [3, 16], "geocat": [3, 9, 11], "geograph": [2, 3, 16, 22, 23], "geoi": 23, "geometri": 5, "geophys": 7, "geopotenti": 23, "geopotential_height_isobar": 23, "georefer": 3, "geoscienc": [4, 7, 16, 19, 23, 25, 50], "geoscientif": [7, 17, 18, 20], "geospati": 2, "geospatial_lat_max": 23, "geospatial_lat_min": 23, "geospatial_lon_max": 23, "geospatial_lon_min": 23, "geox": 23, "geoxarrai": 23, "geoyarrai": 23, "get": [3, 7, 10, 13, 14, 15, 16, 28, 29, 30, 33, 34, 36, 37, 38, 41, 42, 44, 47, 48, 50], "get_item": 18, "get_loc": 18, "getitem": 21, "gf": 11, "gib": 21, "gif": 10, "git": [25, 29, 32, 34, 36, 38, 39, 44], "github": [0, 1, 5, 18, 20, 21, 23, 30, 32, 33, 38, 43, 44, 49, 50], "githubusercont": 50, "give": [1, 11, 13, 18, 21, 28, 35, 37, 43, 49], "given": [14, 15, 16, 20, 21, 28, 37, 42], "gl": 3, "global": [5, 7, 20, 22, 28], "globe": 5, "gmt": 7, "go": [1, 7, 8, 10, 15, 29, 34, 35, 36, 42, 46, 50], "goal": [11, 22, 26, 37], "goddamn": 28, "goe": [23, 42], "gone": 42, "good": [0, 1, 13, 18, 24, 28, 34, 37, 38, 42, 45, 46, 50], "good_heat_index": 13, "googl": [0, 7, 30], "got": 45, "gov": [20, 22], "govern": [20, 22], "gpmdescript": 23, "grab": 13, "grad_vector": 13, "gradient": 13, "gradient_i": 13, "gradient_x": 13, "grai": [3, 18, 42], "graph": [5, 16, 21], "graphic": [8, 21], "grayscal": 9, "grb": 23, "great": [15, 16, 24, 26, 28, 33, 40, 47], "greater": [9, 18, 20, 21, 23, 34, 45], "greatest": 39, "greatli": [1, 14, 16, 20, 23, 28], "green": [9, 10, 11, 32, 34, 38], "greenwich": 7, "gregori": 5, "gregorian": 7, "grei": 9, "grib": [4, 16, 23], "grib1_cent": 23, "grib1_level_desc": 23, "grib1_level_typ": 23, "grib1_paramet": 23, "grib1_subcent": 23, "grib1_tablevers": 23, "grib_level_typ": 23, "grib_table_vers": 23, "grib_variable_id": 23, "gribcollect": 23, "grid": [3, 16, 19, 20, 21, 22, 23, 45], "grid_map": [5, 23], "grid_mapping_nam": [5, 23], "gridhistori": 23, "gridlin": [3, 11, 22], "grinitialization_index": [20, 22], "group": [5, 16, 18, 20, 22, 23, 47, 48], "groupbi": [18, 22], "grover": 49, "grow": [5, 14, 19], "gt": [20, 21, 22, 23], "guarante": 24, "gui": [24, 30, 41], "guid": [1, 6, 13, 14, 15, 18, 20, 29, 32, 33, 35, 37, 40, 42, 50], "guidelin": 0, "gx1v7": [20, 22], "h": [5, 7, 15], "ha": [1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 22, 23, 28, 29, 30, 32, 33, 34, 35, 37, 38, 39, 42, 45, 47], "habit": 36, "had": [33, 34, 39], "half": 14, "hand": [5, 13, 14, 18, 20, 21, 28, 32, 33, 45], "handi": 24, "handl": [7, 15, 16, 22, 23, 38], "hang": 1, "happen": [7, 30, 47], "happili": 7, "hard": 11, "hardbound": 50, "hardcopi": 11, "harken": 47, "has_year_zero": [20, 21, 22], "hashtabl": 18, "hashtable_class_help": 18, "hasn": 42, "have": [0, 1, 2, 3, 5, 9, 10, 11, 13, 14, 15, 16, 18, 19, 20, 21, 23, 24, 26, 28, 29, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 45, 46, 47, 50], "haven": [28, 39], "hdf5": 5, "hdl": [20, 22], "he": [16, 28], "head": [16, 18, 28, 30, 34, 41, 42], "heartbreak": 16, "heat": [11, 13, 20, 22], "heatmap": 11, "heavili": 19, "height": [5, 16, 21, 23], "heightgrid_map": 23, "heights_var": 5, "hello": [1, 30, 32, 37, 41, 42, 45, 46], "help": [1, 5, 7, 9, 11, 13, 15, 16, 18, 20, 23, 24, 26, 28, 30, 32, 33, 36, 37, 38, 40, 41, 42, 46], "helper": 14, "helpfulli": 18, "henc": [14, 23, 37], "henceforth": 39, "here": [0, 1, 3, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 23, 24, 26, 27, 28, 29, 30, 33, 34, 36, 37, 39, 40, 41, 42, 45, 46, 47, 50], "hexadecim": 28, "hfsso": [20, 22], "hh": 7, "hi": 16, "high": [3, 7, 11], "high_tid": 7, "higher": [3, 23, 47], "highest": 13, "highli": [1, 5, 21, 37, 40], "highlight": [22, 42], "hinder": 38, "hist": [10, 18], "hist1": 9, "hist2": 9, "hist2d": [9, 10], "hista": 9, "histb": 9, "histc": 9, "histogram": [8, 9, 11, 18], "histor": [20, 22, 30, 37], "histori": [5, 8, 23, 30, 37], "historicalexternal_vari": [20, 22], "hit": 42, "hold": [5, 7, 14, 21, 23], "home": [3, 18, 20, 21, 22, 23, 50], "hood": [7, 16, 28], "hope": [33, 40], "horizont": [3, 5, 9], "host": [0, 23, 28, 30, 32, 35, 36, 37, 38, 39, 42], "hotter": 9, "hour": [5, 7, 16, 20], "hous": [32, 35, 39], "hover": [0, 45], "how": [0, 3, 4, 5, 9, 11, 13, 14, 15, 18, 20, 21, 23, 24, 25, 26, 28, 29, 30, 33, 35, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47], "howev": [1, 5, 7, 9, 10, 15, 18, 20, 21, 23, 28, 32, 34, 36, 37, 38, 42], "hpa": [5, 11, 16, 23], "hpalong_nam": 23, "hpastandard_nam": 23, "html": [0, 1, 3, 10, 11, 42], "html5": 10, "http": [1, 3, 18, 20, 22, 23, 30, 32, 35, 37, 39, 40, 49, 50], "hub": 42, "hue": 9, "huge": [24, 28], "human": [7, 18, 43], "humid": [13, 15], "hypothet": 5, "i": [0, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 29, 30, 31, 32, 33, 37, 40, 41, 42, 43, 45, 46, 47, 49, 50], "ic": [20, 21, 22], "icon": [32, 36, 38, 41, 42, 45, 50], "id": [18, 20, 21, 24, 32, 35, 36, 38, 39], "idea": [24, 28, 29, 33, 34, 35, 37, 39, 47], "ideal": 32, "ident": [7, 20, 21, 37, 45], "identifi": [5, 15, 18, 38, 45, 47], "idiot": 28, "idl": 47, "ignor": [3, 7, 15], "illustr": [1, 3, 5, 7, 9, 11, 13, 18, 20, 21, 22, 23, 32], "im": 11, "imag": [1, 2, 10, 18, 35, 42], "img": 1, "immedi": [21, 24, 29, 32], "impact": [28, 32, 37], "impati": 27, "imped": 21, "imper": 1, "implement": [5, 10, 21], "impli": [20, 22, 33], "implicit": 42, "implicitli": 38, "import": [0, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 45, 46, 50], "impos": [20, 22], "improv": [1, 3, 7, 9, 15, 23, 35, 38], "impuls": 16, "imshow": 11, "inch": [5, 11], "includ": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 30, 32, 33, 35, 37, 38, 39, 41, 42, 45, 46, 47, 50], "inclus": [1, 18, 38], "incompat": 15, "incorpor": [1, 16, 32, 33, 39], "increas": [5, 9, 11, 15, 21], "increasingli": [16, 35], "increment": [9, 32], "ind": [13, 15], "inde": 23, "indent": 45, "independ": [7, 11, 28, 30], "index": [0, 5, 10, 11, 15, 16, 20, 21, 23, 28, 37, 45], "index_col": 18, "index_nino34": 22, "index_nino34_rolling_mean": 22, "indexed_select": 23, "indexengin": 18, "indexerror": 13, "indic": [0, 1, 5, 7, 10, 14, 15, 18, 21, 23, 30, 32, 34, 38, 42], "individu": [5, 7, 9, 10, 11, 14, 15, 16, 18, 20, 21, 23, 35, 39, 50], "industri": [20, 22], "ineffici": 21, "inevit": [1, 7], "influenc": 7, "info": 9, "inform": [0, 1, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 26, 28, 34, 35, 38, 40, 42, 47, 50], "infring": 1, "infti": 42, "ing": 14, "inher": [7, 21], "inherit": [7, 8], "init": [10, 28], "init_func": 10, "initi": [5, 7, 11, 21, 33, 34, 37, 42], "initialis": [20, 22], "inlin": 42, "input": [7, 16, 20, 24, 28, 38, 39, 42], "insert": [1, 37], "insid": [9, 34, 37, 40, 41, 42], "insight": 20, "inspect": [14, 45], "inspir": [1, 19], "instal": [7, 26, 27, 28, 32, 42, 44, 45, 50], "instanc": [5, 13, 15, 16, 20, 41, 42], "instantli": 50, "instead": [1, 3, 5, 10, 15, 18, 20, 21, 23, 36, 42], "institut": [5, 16], "instruct": [1, 24, 26, 27, 30, 41, 42, 46, 50], "instructor": 40, "int": 5, "int32": [5, 15, 23], "int64": [14, 20, 23], "int641": 20, "int6440arrai": 23, "integ": [14, 18], "integr": [14, 16, 19, 20, 22, 23, 24, 34, 40], "intend": [10, 23, 32, 34, 50], "intens": 47, "intent": [18, 30], "intention": 15, "interact": [4, 8, 9, 11, 20, 21, 22, 26, 34, 35, 39, 40, 41, 44], "intercept": 11, "interchang": [18, 21], "interest": [5, 9, 21, 29, 32, 33, 36], "interfac": [2, 3, 9, 10, 11, 21, 23, 24, 26, 32, 36], "intermedi": [14, 15, 23], "intern": [20, 22], "interoper": [5, 24], "interp": 23, "interpol": [9, 11, 16, 20, 22], "interpret": [7, 15], "interspers": [1, 42], "interv": [5, 7, 9, 10, 11, 14], "interweb": 45, "intro": [1, 18], "introduc": [7, 8, 10, 13, 14, 18, 19, 20, 21, 22, 25, 35, 37, 42, 45], "introduct": [5, 8, 15, 20, 21, 22, 50], "introductori": 1, "intuit": [14, 19, 21], "invalid": 15, "invalidindexerror": 18, "invent": 16, "invers": [5, 13], "invert": 23, "investig": 14, "invit": 37, "invok": [7, 42], "involv": [7, 10, 15, 16, 20, 21, 22, 32, 37, 39], "iosp": 23, "ipykernel_2523": 5, "ipykernel_2546": 7, "ipykernel_2735": 18, "ipynb": [0, 26, 29, 41, 42, 50], "ipython": [7, 21, 42], "irregular": 13, "is_integ": 18, "isd": [20, 21, 22], "isel": [20, 21, 22], "isinst": 18, "isn": 42, "isobar": [11, 23], "isobaric1": 23, "isobaric1pandasindexpandasindex": 23, "isol": [24, 37], "isotherm": 15, "issu": [0, 1, 3, 7, 9, 18, 21, 25, 28, 29, 30, 32, 34, 35, 36, 37, 38, 39, 43], "item": [13, 15, 20, 33, 38, 45], "items": 15, "iter": [15, 18, 37, 45], "its": [2, 3, 7, 8, 9, 10, 13, 18, 21, 22, 23, 24, 28, 30, 32, 33, 35, 36, 38, 39, 40, 42, 47], "itself": [14, 18, 35, 38, 39, 42, 50], "j": [15, 49], "jan": [20, 28], "januari": [7, 18, 20, 23], "java": [7, 23], "job": 16, "join": [30, 47], "jonathan": 5, "journei": 12, "jukent": 30, "juli": 16, "julia": 26, "jump": 42, "jupyt": [1, 3, 7, 9, 10, 18, 21, 23, 24, 25, 29, 38, 42, 43, 44, 45, 46], "jupyterhub": 26, "jupyterlab": [1, 24, 26, 29, 41], "just": [3, 5, 10, 11, 13, 14, 15, 18, 23, 26, 28, 29, 30, 33, 34, 36, 37, 39, 40, 41, 42, 45, 46], "k": [9, 23, 49], "ka": 7, "kailyn": 49, "kalb": 5, "kbou": 5, "kdescript": 23, "keep": [1, 5, 7, 8, 11, 16, 20, 24, 28, 33, 36, 37], "kei": [1, 2, 8, 9, 16, 17, 18, 20, 21, 35, 37, 45], "kelvin": [5, 18, 20, 23], "kelvinstandard_nam": 23, "kent": 49, "kernel": [1, 28, 39, 41], "kevin": [28, 30], "keyboard": [41, 42], "keyboardinterrupt": 42, "keyerror": 18, "keyword": [3, 7, 9, 10, 11, 18, 20, 21, 23, 45], "kib": [21, 32], "kind": [37, 42], "km": 5, "km_coordinateaxistyp": 23, "know": [1, 7, 15, 16, 18, 20, 23, 30, 37, 47, 50], "knowledg": [1, 2, 13, 16, 18, 21, 23], "known": [1, 5, 6, 7, 11, 18, 20, 21, 23, 35, 37, 38, 39], "koun": 5, "ktyle": 28, "kwarg": [3, 9], "l": [30, 42, 49], "la": 22, "lab": [1, 41, 50], "label": [3, 9, 10, 15, 16, 17, 18, 19, 20, 23, 28, 30, 33, 36, 42, 45], "laboratori": [20, 22], "lack": [1, 21, 38], "lai": [14, 21], "laid": [1, 3, 11, 14], "lake": 3, "lake_mask": 3, "lambert": [5, 23], "lambert_conformal_con": 5, "lambert_conformal_coniclatitude_of_projection_origin": 23, "lambert_project": 5, "lambertazimuthalequalarea": 3, "lambertconform": 3, "lambertconformal_project": 23, "lambertconformal_projectiongrib_variable_id": 23, "land": [3, 20, 22], "land_mask": 3, "landic": [20, 22], "landscap": 11, "languag": [5, 7, 16, 17, 24, 26, 39, 40, 42, 43, 45, 50], "laptop": [27, 30, 32, 35, 45, 50], "larg": [7, 9, 13, 16, 18, 19, 20, 21, 23, 38, 47], "larger": [10, 15, 21, 34], "last": [3, 7, 10, 13, 14, 15, 18, 20, 28, 30, 37, 42, 45], "lastli": 50, "lat": [3, 5, 20, 21, 22, 23], "lat_0": 5, "lat_1": 5, "lat_bnd": [20, 22], "lat_bndslong_nam": [20, 21, 22], "lat_var": 5, "later": [1, 3, 5, 9, 10, 11, 18, 23, 28, 30, 32, 33, 34, 35, 37, 39, 42, 50], "latest": [0, 3, 24, 30, 32, 49], "latex": [1, 9, 26, 42], "latitud": [3, 5, 16, 20, 22, 23], "latitude_coordinateaxistyp": 23, "latitude_of_projection_origin": 5, "latitudestandard_nam": [20, 21, 22], "latitudeunit": [20, 21, 22], "latn": 3, "latpandasindexpandasindex": [20, 21, 22, 23], "latter": 37, "latxlon": [20, 22], "launch": [26, 41, 42, 50], "launcher": [26, 41, 42], "law": [7, 20, 22], "layer": [3, 13, 20, 21, 22], "layout": [8, 10, 42], "lcc": 5, "lead": [1, 3, 23, 34, 37, 39], "learn": [1, 3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 22, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 46, 47], "learner": [8, 32, 37, 40], "least": [20, 22, 30], "leav": [1, 14, 33], "lectur": [13, 14], "left": [9, 10, 11, 41, 50], "legal": 1, "legend": [9, 11, 20, 22, 45], "len": [14, 15], "length": [5, 7, 10, 14, 18, 20, 21, 22, 23, 42], "lengthi": 1, "less": [3, 10, 16, 19, 20, 21, 24, 47], "lesser": [10, 21], "lesson": [28, 32, 34, 37, 39, 40], "let": [1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 18, 28, 29, 30, 32, 33, 34, 36, 37, 38, 41, 42, 45, 46], "letter": [28, 47], "level": [5, 7, 9, 11, 15, 21, 22, 23, 50], "leverag": [23, 32, 39], "lgtm": 38, "liabil": [20, 22], "liabl": 37, "lib": [15, 18, 20, 21, 22], "librari": [2, 3, 5, 6, 7, 8, 10, 11, 12, 14, 17, 18, 19, 20, 21, 22, 23, 24, 42], "licens": [20, 22, 35, 49], "life": 15, "light": [9, 28], "lightgrei": 9, "like": [0, 1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 19, 20, 21, 24, 28, 29, 30, 32, 33, 34, 37, 38, 41, 42, 43, 45, 46], "limit": [7, 8, 16, 18, 20, 22, 23], "line": [1, 2, 3, 5, 10, 13, 14, 15, 16, 18, 23, 24, 28, 30, 32, 36, 37, 38, 39, 41, 42, 45, 46, 50], "line2d": 23, "linear": [12, 14, 16, 30], "linearli": [9, 45], "linearsegmentedcolormap": 9, "linestyl": [3, 11, 22], "linewidth": [3, 18, 22], "link": [1, 3, 10, 15, 23, 32, 33, 34, 36, 38, 39, 45], "linspac": [5, 9, 10, 13, 15, 23, 45], "linu": [28, 39], "linux": [24, 28, 32, 39, 40, 46], "list": [0, 1, 3, 5, 7, 9, 10, 11, 13, 14, 18, 20, 21, 22, 23, 24, 28, 32, 34, 36, 38, 40, 42, 47], "listedcolormap": 9, "listlik": 18, "liter": 7, "littl": [37, 50], "live": [3, 26, 30, 32, 35, 36, 50], "ll": [1, 3, 5, 7, 9, 10, 13, 15, 18, 30, 32, 34, 37, 39, 42, 50], "llnl": [20, 22], "load": [20, 22, 23, 42, 50], "loc": [11, 16], "local": [3, 7, 18, 28, 29, 30, 32, 34, 35, 36, 37, 38, 42, 45], "locat": [5, 9, 11, 15, 20, 22, 23, 32, 45, 50], "log": [30, 32, 36, 39], "logarithm": 47, "logic": [12, 20, 45], "login": 36, "logist": 9, "logo": [0, 1], "lon": [3, 5, 20, 21, 22, 23], "lon_0": 5, "lon_bnd": [20, 22], "lon_bndslong_nam": [20, 21, 22], "lon_var": 5, "london": 7, "lone": 3, "long": [7, 11, 14, 39, 42, 49], "long_nam": [5, 20, 22, 23], "longer": [3, 5, 24], "longitud": [3, 5, 7, 9, 16, 20, 22, 23], "longitude_coordinateaxistyp": 23, "longitude_of_central_meridian": 5, "longitudestandard_nam": [20, 21, 22], "longitudeunit": [20, 21, 22], "lonpandasindexpandasindex": [20, 21, 22, 23], "lonw": 3, "lonxarrai": 23, "look": [5, 7, 9, 11, 13, 14, 20, 28, 33, 34, 37, 39, 42, 45], "lookup": 15, "loop": 14, "loos": 21, "loss": 1, "lost": [23, 37], "lot": [9, 14, 16, 24, 45], "low": [7, 47], "lower": [1, 11, 47], "lowest": 13, "lt": [20, 21, 22, 23], "lunar": 7, "lunar_dai": 7, "lw": 22, "m": [5, 7, 14, 20, 21, 22, 23, 28, 29, 37, 42, 45, 49], "m2": 20, "m2variable_id": [20, 22], "m_avg": 20, "mac": [28, 32, 42, 46], "machin": [16, 24, 28, 32, 37, 41, 46, 47, 50], "made": [7, 15, 23, 28, 29, 30, 33, 34, 36, 37, 38], "magic": [7, 15], "magma": 9, "magnitud": 7, "mai": [0, 7, 8, 9, 10, 11, 15, 18, 20, 21, 22, 23, 24, 25, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 49, 50], "main": [0, 1, 3, 5, 10, 18, 20, 21, 22, 23, 26, 28, 29, 32, 33, 34, 38, 42, 50], "mainli": [23, 38], "maintain": [32, 33, 34, 37, 39], "major": [14, 23, 45], "make": [1, 2, 5, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 26, 30, 32, 33, 34, 35, 38, 39, 40, 45, 47, 50], "mam4": [20, 22], "manag": [1, 21, 22, 27, 28, 30, 33, 35, 37, 38, 39, 42, 50], "mani": [1, 3, 4, 5, 9, 10, 11, 14, 16, 18, 20, 21, 23, 28, 30, 36, 37, 38, 39, 40, 45, 47, 50], "manipul": [7, 12, 13, 14, 16, 17, 23, 45, 50], "manner": [1, 20, 21, 32, 50], "manual": [1, 14, 15, 23, 42], "manuscript": 37, "map": [1, 2, 5, 9, 11, 16, 22, 23], "marbl": [20, 22], "mark": [1, 33], "markdown": [1, 38, 40, 50], "marker": 11, "markers": 11, "markup": 42, "mask": [12, 13, 22, 29], "masked_sampl": 20, "master": [30, 37], "match": [1, 3, 7, 13, 14, 15, 18, 20, 23, 28, 42], "materi": [0, 1, 7, 23, 29, 38, 44, 49, 50], "math": [7, 13, 42, 50], "mathemat": [9, 12, 14, 23, 47], "mathjax": 1, "mathtext": 9, "matlab": [11, 40, 47], "matplotlib": [2, 9, 10, 13, 16, 18, 20, 22, 23, 39, 50], "matric": 12, "matter": 9, "max": [18, 20], "maxim": 15, "maximum": [16, 20], "mayb": 28, "mb": [11, 20, 21, 22], "md": 28, "mean": [1, 5, 7, 11, 12, 14, 15, 16, 18, 20, 21, 22, 23, 28, 33, 34, 36, 39, 40, 42, 47, 49], "meancom": [20, 21, 22], "meaning": [23, 38], "meant": [38, 42, 45], "meantim": 18, "meantime_titl": [20, 21, 22], "meantitl": [20, 21, 22], "measur": [7, 16, 42], "mechan": [7, 33, 34], "median": 20, "medic": 16, "meet": [9, 13, 18, 28, 36], "member": [20, 22, 29, 37, 38], "memori": [5, 10, 14, 15, 21, 41, 45, 47], "mention": [11, 16, 18, 23, 29, 33, 36, 39], "menu": [1, 38, 42, 45], "mercat": 3, "merchant": [20, 22], "mercuri": 28, "mere": 7, "merg": [9, 20, 22, 28, 29, 32, 33, 34, 37, 38], "merger": 37, "meridian": [3, 7], "merit": 33, "mesa": [20, 22], "meshgrid": [5, 9, 11], "mess": 28, "messag": [0, 1, 28, 30, 34, 37], "meta": 21, "metadata": [1, 5, 16, 23], "meter": 5, "method": [5, 9, 10, 11, 13, 15, 18, 21, 22, 30, 38, 41, 45, 50], "metoffic": 16, "metpi": [5, 14, 36], "mgrid": 3, "mib": [21, 32], "microsecond": [5, 7], "microsoft": 30, "mid": 28, "middl": 9, "might": [5, 6, 11, 14, 16, 25, 28, 29, 30, 33, 39, 40, 41, 47, 50], "millennia": 7, "million": [7, 21], "min": [18, 20], "mind": [28, 33, 35], "miniconda": [24, 41, 46], "miniconda3": [18, 20, 21, 22], "minimum": [15, 18, 20], "minor": 0, "minut": [1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 21, 22, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 46], "mip_era": [20, 22], "miscellan": 9, "misinterpret": 28, "mispronunci": 28, "miss": 5, "missing_valu": 5, "mistak": [1, 28], "mix": [14, 45], "mkdir": [42, 46], "mm": 7, "mode": [29, 37, 46], "model": [5, 7, 19, 20, 21, 22, 23, 29, 37], "modif": 37, "modifi": [5, 11, 13, 15, 20, 21, 23, 24, 28, 32, 37, 46, 50], "modul": [16, 24, 42], "moment": [18, 39, 50], "mon": [20, 21, 28], "monfurther_info_url": [20, 22], "monid": [20, 21, 22], "monitor": 36, "monochrom": 9, "month": [5, 7, 18, 20, 22], "monthli": [18, 20, 22], "monthpandasindexpandasindex": 20, "mood": 28, "more": [1, 3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 22, 24, 26, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 45, 46, 47, 50], "morlei": 49, "most": [0, 1, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 23, 28, 34, 37, 38, 39, 40, 44, 45, 47, 50], "mostli": [9, 18], "motiv": 37, "mountain": 7, "mountaintz": 7, "mous": 50, "move": [11, 20, 22, 28, 30, 34, 42], "movement": 26, "mpl": 3, "mu": 9, "much": [1, 3, 5, 7, 8, 12, 15, 16, 18, 21, 23, 24, 28, 30, 33, 35, 39, 42, 50], "multi": [13, 14, 15, 16, 19], "multi_mask": 13, "multidimension": [12, 13, 15], "multilin": 42, "multipl": [7, 9, 11, 13, 15, 18, 21, 22, 28, 30, 42], "must": [0, 1, 3, 5, 7, 10, 14, 15, 18, 20, 21, 23, 28, 30, 32, 34, 36, 37, 38], "mv": 28, "my": 37, "mylist": 45, "mypet": 45, "mysci": [41, 46], "myweirdlist": 45, "n": [7, 10, 14, 16, 18, 19, 21, 23, 45], "nabla": 13, "name": [1, 3, 5, 7, 9, 10, 11, 18, 20, 21, 22, 24, 28, 29, 30, 32, 33, 37, 38, 41, 42, 45, 46], "named_select": 23, "nan": [13, 20, 21, 22], "nanarrai": 20, "nano": [40, 46], "narr": [1, 23, 26, 40], "narr_19930313_0000": 23, "narrat": 42, "nasa": 5, "nation": [20, 22, 23], "nativ": [5, 17, 20, 21, 22], "natur": [2, 9, 13, 16, 20, 21, 32, 38, 47], "naturalearth": 3, "naturalearthdata": 3, "naturalearthfeatur": 3, "navbar": 1, "navig": [24, 26, 28, 30, 37, 38, 41, 50], "nbin": [9, 10], "nbyte": 21, "nc": [5, 20, 21, 22, 23], "ncar": [3, 20, 22], "ncarlicens": [20, 22], "ncdc": 18, "ncep": 23, "ncl": 47, "ncol": [9, 11, 20], "ndarrai": [13, 14, 18, 21, 23, 45], "ndenumer": 15, "ndim": 14, "nearest": [7, 20], "nearli": [7, 14, 18], "necessari": [1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 21, 22, 23, 24, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41, 45], "necessarili": [10, 33], "need": [0, 1, 3, 5, 7, 9, 10, 13, 15, 16, 18, 20, 21, 23, 24, 25, 28, 29, 30, 32, 35, 36, 37, 38, 39, 41, 42, 44, 47, 48, 50], "neg": 14, "neglig": [20, 22], "netcdf": [1, 4, 16, 19], "netcdf4": [5, 16, 21], "netcdf4_class": 5, "network": 36, "never": 14, "new": [5, 7, 9, 11, 13, 14, 15, 16, 18, 20, 21, 23, 24, 27, 29, 32, 33, 34, 35, 38, 39, 40, 41, 42, 44, 45, 46, 47, 50], "new_shap": 15, "newaxi": 15, "newbranch": 30, "newli": [7, 15, 20, 32, 37], "next": [0, 9, 21, 22], "next_high_tid": 7, "next_low_tid": 7, "next_slic": 5, "nice": [7, 15, 18], "nicknam": [18, 45], "nino": 18, "nino12": 18, "nino12anom": 18, "nino3": 18, "nino34": 18, "nino34_degk": 18, "nino34_seri": 18, "nino34anom": 18, "nino3anom": 18, "nino4": 18, "nino4anom": 18, "nino_analyzed_output": 18, "ni\u00f1a": 22, "ni\u00f1o": 20, "nldn": 7, "nlevel": 18, "nnn": 37, "noaa": 18, "nois": 18, "noleap": [20, 21, 22], "non": [1, 5, 6, 14, 16, 20, 21, 22, 28, 30, 34, 49], "none": [3, 5, 10, 11, 18, 20, 21, 22, 23, 39], "nonesub_experiment_id": [20, 22], "nonetable_id": [20, 22], "nonetime_titl": [20, 22], "nonlinear": 9, "norm": [9, 22], "normal": [10, 11, 22], "normalized_index_nino34_rolling_mean": 22, "norman": 5, "north": [3, 23], "notat": [9, 14, 18, 23, 28, 45], "note": [0, 1, 2, 5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 21, 22, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 45, 46], "notebook": [2, 3, 5, 7, 9, 10, 11, 13, 14, 18, 19, 21, 23, 29, 38, 45], "noth": [13, 16, 28, 30, 39], "notic": [3, 7, 9, 11, 18, 20, 21, 28, 30, 32, 34, 35, 38, 39, 42], "notif": [25, 32, 37], "notifi": [33, 36], "now": [3, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 23, 28, 29, 30, 32, 33, 34, 35, 36, 37, 42, 46, 50], "nowher": 1, "np": [3, 5, 9, 10, 11, 13, 14, 15, 18, 20, 21, 23, 45], "npt": [9, 10], "nrow": [9, 11], "num": 14, "number": [1, 3, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 28, 33, 35, 37, 40, 42, 47, 50], "numer": [5, 7, 8, 9, 11, 14, 16, 20, 23], "numpi": [2, 3, 5, 6, 7, 9, 10, 16, 18, 19, 20, 35], "nvidia": 39, "ny": 7, "o": [11, 12, 28, 32, 46, 49], "obfusc": 7, "object": [1, 2, 3, 5, 9, 10, 12, 14, 18, 20, 22, 32, 45], "object2000": [20, 21, 22], "object2014": 20, "obs_data": 5, "obscur": 47, "observ": [20, 22, 23, 50], "obtain": [1, 7, 16, 18, 20, 21, 22], "obviou": [5, 21, 37], "obvious": 15, "oc": 15, "occas": 21, "occasion": [9, 16], "occur": [3, 7, 23, 30, 34, 36, 37], "occurr": 7, "ocean": [3, 16, 20, 21, 22], "oceansourc": [20, 22], "oceanstandard_nam": [20, 21, 22], "ocnbgchem": [20, 22], "octocat": 0, "odd": 15, "off": [7, 8, 14, 15, 16, 28, 36], "offer": [7, 10, 16, 21, 24, 35, 37, 39, 40, 42], "offici": [7, 9, 10, 17, 20, 21, 23, 28, 35, 37, 38, 40, 45], "offset": [7, 10], "often": [1, 7, 8, 15, 16, 18, 20, 21, 23, 28, 30, 32, 33, 35, 37, 39], "oftentim": 9, "ofx": [20, 22], "ofxout_nam": [20, 22], "ok": 37, "okai": 33, "old": [5, 33], "oldest": 37, "omon": [20, 21, 22], "omonout_nam": [20, 21, 22], "omontracking_id": [20, 22], "onc": [1, 3, 9, 11, 18, 20, 23, 24, 29, 30, 32, 34, 36, 37, 42, 50], "one": [0, 3, 5, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 21, 22, 23, 24, 25, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 42, 44, 47, 50], "ones": [5, 35], "onli": [1, 3, 5, 7, 9, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 25, 28, 30, 34, 35, 36, 37, 38, 42, 50], "onlin": [7, 16, 39], "onto": [15, 20, 22, 47], "open": [0, 5, 8, 14, 17, 18, 19, 21, 22, 24, 25, 26, 28, 29, 30, 32, 33, 35, 36, 37, 38, 40, 41, 42, 44, 45, 46, 48, 49, 50], "open_dataset": [20, 21, 22], "opendap": 23, "oper": [6, 7, 8, 12, 13, 14, 15, 16, 21, 28, 32, 37, 42, 47], "operand": [14, 15], "opinion": 38, "opportun": [34, 38], "oppos": [18, 36], "opposit": 7, "opt": [36, 50], "optim": [1, 21, 23], "option": [1, 5, 7, 8, 9, 11, 14, 15, 18, 23, 32, 34, 35, 37, 38, 39, 40, 42, 45, 46], "orang": [9, 45], "order": [0, 1, 2, 5, 7, 9, 10, 11, 13, 15, 16, 18, 20, 21, 23, 28, 29, 30, 36, 37, 39, 42, 44, 45, 50], "ordinari": 23, "org": [3, 20, 22, 35, 49], "organ": [14, 15, 18, 28, 29, 32, 35, 39], "orient": [2, 3, 5, 7, 11, 28], "origin": [3, 9, 11, 13, 15, 18, 20, 22, 23, 28, 29, 30, 32, 34, 35, 37, 39], "original_own": 37, "original_repositori": 37, "originating_or_generating_cent": 23, "originating_or_generating_subcent": 23, "oscil": 18, "other": [1, 2, 3, 5, 6, 7, 8, 10, 11, 13, 14, 15, 16, 18, 21, 23, 24, 26, 30, 32, 33, 35, 37, 38, 39, 41, 42, 43, 47, 50], "otherwis": [18, 23, 28], "our": [0, 3, 5, 7, 9, 10, 11, 13, 14, 15, 17, 18, 20, 21, 22, 23, 29, 30, 32, 34, 37, 41, 42, 45, 46, 50], "ourselv": 33, "out": [0, 1, 3, 6, 7, 9, 11, 13, 14, 16, 18, 20, 21, 23, 26, 29, 33, 35, 38, 42, 44], "outcom": 37, "outlin": 37, "output": [1, 3, 5, 8, 9, 10, 15, 16, 18, 20, 22, 26, 28, 30, 32, 37, 40, 42, 45, 50], "outputrealization_index": [20, 22], "outsid": [1, 7, 20], "over": [0, 14, 18, 20, 22, 23, 28, 37, 39, 42, 45], "overal": [1, 22], "overestim": 1, "overflow": 7, "overlaid": 3, "overlap": [7, 15], "overload": 7, "overwhelm": [36, 38], "overwhelmingli": 28, "overwritten": 5, "own": [3, 9, 13, 14, 16, 18, 24, 28, 30, 32, 34, 35, 36, 37, 38, 39, 42, 44, 45, 50], "owner": [34, 35], "oxford": 16, "p": [7, 14, 15], "pacif": 22, "pack": 32, "packag": [0, 1, 2, 3, 5, 7, 8, 9, 10, 12, 14, 16, 18, 19, 20, 21, 22, 23, 27, 32, 35, 39, 40, 41, 44, 45, 47, 50], "page": [0, 3, 5, 7, 9, 10, 11, 18, 21, 23, 28, 30, 33, 34, 36, 39, 42, 45], "pai": [23, 28], "paid": 39, "pair": [15, 36], "pairwis": 15, "panda": [6, 7, 14, 15, 16, 19, 20, 23], "panel": [11, 41], "pangeo": 48, "paper": 37, "paragraph": 1, "parallel": [3, 16, 19, 37], "paramet": [10, 50], "pare": 24, "parenthes": [13, 20, 45], "parlanc": 23, "parsabl": 5, "parse_d": 18, "part": [0, 1, 3, 5, 7, 9, 10, 15, 18, 23, 32, 34, 35, 42, 50], "parti": [7, 37, 38], "partial": [7, 10], "particip": [21, 25, 36, 39], "particular": [5, 7, 9, 13, 15, 18, 20, 22, 36, 37, 39, 50], "particularli": [16, 19, 28, 30, 39], "pass": [3, 9, 11, 15, 18, 20, 21, 23, 29, 30, 34], "passag": 7, "password": [30, 36, 39], "past": [15, 20, 22, 28, 32, 39, 42], "pat": [30, 36], "patch": 39, "path": [18, 23, 30, 37], "patient": 3, "pattern": [9, 15, 22], "paul": [30, 49], "pc": 50, "pcmdi": [20, 22], "pcolormesh": 23, "pd": [18, 23], "pdf": [9, 16], "peer": 40, "peopl": [1, 9, 28, 30, 38, 40], "per": 5, "percent": [10, 20, 21, 22], "percentag": 10, "perfection": 1, "perfectionist": 1, "perfectli": 38, "perform": [3, 5, 7, 10, 11, 15, 16, 18, 20, 21, 22, 23, 32, 33, 37, 38, 47], "perhap": [33, 37, 39, 40, 47, 50], "period": [22, 23, 37], "perman": 28, "permiss": [25, 32, 34, 37], "permit": [20, 22], "persist": 5, "person": [30, 32, 34, 37], "pertain": [1, 7, 21, 38, 42], "perturb": [20, 22], "physic": 3, "pi": [7, 9, 10, 13, 14], "pick": [9, 28, 33], "picontrolparent_mip_era": [20, 22], "pictur": [18, 26], "pie": 11, "piec": [21, 23, 30, 33, 34], "piechart": 8, "pillow": 10, "pink": [9, 10], "pisecond": 7, "pixel": [3, 11], "piyg": 11, "place": [1, 9, 13, 14, 32, 36, 37, 42, 43], "placehold": [5, 23], "placement": 3, "plagiar": 1, "plai": [13, 45], "plain": [5, 28, 42], "plan": [30, 33, 35], "plate": 3, "platecarre": [3, 22], "platform": [0, 11, 24, 25, 26, 27, 28, 39], "pleas": [0, 1, 2, 3, 10, 15, 18, 20, 23, 38], "plenti": 42, "plot": [2, 8, 9, 10, 13, 16, 20, 22, 26, 45], "plot_temp": 13, "plt": [3, 9, 10, 11, 13, 20, 22, 45], "png": [1, 11, 16], "po": 18, "point": [2, 3, 5, 7, 9, 10, 11, 13, 15, 20, 22, 23, 26, 28, 30, 32, 37, 39, 42, 47], "pointer": 30, "polar": [3, 15], "pole": [3, 20, 22], "polygon": 2, "pop2": [20, 22], "popul": [1, 32, 38, 42], "popular": [8, 11, 16, 18, 19, 20, 23, 26, 38, 39, 40, 42], "portabl": 47, "portion": [5, 18], "posit": [5, 12, 13, 15, 18, 23], "possibl": [1, 5, 7, 15, 18, 20, 21, 22, 28, 32, 38], "post": [35, 36], "potenti": [9, 20, 21, 22, 34, 37, 47], "power": [2, 13, 14, 15, 17, 18, 23, 28, 32, 35, 37, 50], "pr": [29, 30, 33, 34, 37, 38], "practic": [0, 7, 9, 13, 20, 23, 24, 25, 30, 34, 37, 38, 42], "pre": [1, 3, 20, 22, 28], "preambl": 44, "preced": 14, "preceed": 45, "precip": 5, "precip_bucket_bound": 5, "precis": [23, 37, 38], "predefin": 5, "predict": [23, 24], "prefer": [18, 29, 36, 38, 40, 41], "prefix": 1, "premad": 9, "premier": 23, "prepar": 1, "prepend": 15, "present": [5, 19, 20, 26, 40, 42, 50], "preserv": [13, 20], "preset": 20, "press": [5, 28, 33, 42, 45, 46, 50], "press_var": 5, "pressur": [5, 15], "pressure_coordinatezisposit": 23, "pressure_data": 23, "pretti": 16, "prettier": 42, "preval": 35, "preview": [15, 18, 29, 38], "previou": [1, 3, 5, 9, 10, 15, 18, 20, 21, 22, 23, 29, 30, 37], "previous": [20, 30, 32], "primari": [37, 38], "prime": 7, "print": [1, 11, 13, 14, 18, 20, 37, 41, 42, 45, 46], "printout": 17, "prior": [19, 30, 31, 50], "priorit": 38, "privat": 35, "pro": 36, "probabl": [7, 10, 18, 37, 47], "problem": [15, 21, 23, 26, 30, 33], "proced": 42, "process": [1, 2, 7, 10, 15, 16, 18, 20, 21, 23, 28, 29, 32, 34, 37, 38, 42], "prod": 20, "produc": [2, 3, 11, 20, 21, 22, 37, 45, 50], "product": [1, 13, 20, 38], "prof": 23, "profici": [23, 39], "profil": [5, 23], "profile_id": 5, "prognost": [20, 21, 22], "program": [5, 7, 16, 17, 18, 21, 26, 40, 42, 47, 50], "programm": 21, "programmat": 2, "progress": 21, "progressbar": 21, "proj": [2, 5], "proj_var": 5, "project": [0, 2, 5, 16, 18, 19, 21, 22, 23, 24, 25, 26, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 41, 48, 49, 50], "projectgrib_table_vers": 23, "projection_coordinateaxistyp": 23, "projection_x_coordin": 5, "projection_x_coordinateunit": 23, "projection_y_coordin": 5, "projection_y_coordinateunit": 23, "projectpythia": [18, 20, 23, 29, 32, 34, 35, 36, 37, 50], "projla": 3, "projlcc": 3, "projlcceur": 3, "projlccni": 3, "projmol": 3, "projpc": 3, "projstr": 3, "prompt": [11, 33, 42, 46], "prone": 19, "pronounc": 28, "proper": [5, 15, 18, 20, 22, 23, 30], "properli": [1, 3, 5, 7, 23], "properti": 23, "proport": 9, "propos": [29, 33, 34, 35, 38], "proprietari": 39, "protect": 38, "protocol": [32, 36, 39], "prototyp": 47, "provid": [0, 1, 3, 5, 7, 8, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 30, 33, 34, 35, 36, 37, 39, 40, 42, 44, 47], "prudent": 15, "public": [2, 11, 26, 33, 35, 37, 45], "publicli": 39, "publish": [24, 49], "pull": [0, 1, 13, 14, 18, 23, 25, 28, 32, 33, 35, 36, 39], "purpl": [9, 45], "purpos": [10, 16, 20, 21, 22, 23, 32, 37, 38, 50], "push": [28, 29, 30, 32, 34, 36], "put": [13, 37], "pwd": 42, "pxi": 18, "py": [5, 7, 16, 18, 20, 21, 22, 28, 30, 32, 37, 42, 46], "pyao": 16, "pycharm": 40, "pydata": [16, 35], "pyobjecthasht": 18, "pyplot": [3, 9, 10, 11, 13, 20, 22, 45], "pyproj": 5, "pythia": [2, 8, 14, 16, 18, 20, 21, 22, 23, 25, 30, 32, 33, 35, 36, 37, 39, 41, 46, 49], "pythia_dataset": [18, 20, 21, 22, 23], "pythia_foundations_env": [41, 46], "python": [1, 2, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 25, 26, 28, 30, 32, 35, 37, 39, 42, 44, 50], "python3": [18, 20, 21, 22], "pyx": 18, "q": [28, 33], "quadmesh": [9, 23], "qualit": 9, "qualiti": [2, 11, 45], "quantit": 18, "quantiti": 5, "question": [1, 5, 8, 21, 23, 38, 39], "queu": 21, "quick": [7, 15, 20, 23, 28, 42, 45], "quicker": 24, "quickest": 40, "quickli": [0, 7, 13, 18, 21, 24, 38, 40, 42, 47, 50], "quickstart": [7, 14, 18, 27, 35, 37, 40, 44], "quit": [7, 9, 16, 17, 18, 21, 38, 41], "quot": [20, 21, 22, 28, 45], "r": [9, 13, 18, 20, 26, 42, 49], "r11i1p1f1": [20, 22], "r11i1p1f1grid": [20, 22], "r11i1p1f1xarrai": [20, 22], "r1i1p1f1physics_index": [20, 22], "rad2deg": 14, "radar": [15, 16], "radian": 14, "radiat": 16, "rag": 5, "rain": 5, "rais": [10, 18, 28, 42], "ram": 21, "ran": 32, "randn": [5, 13, 15, 23], "random": [5, 9, 10, 12, 13, 14, 15, 21, 28], "randomli": [21, 29], "rang": [5, 7, 9, 14, 15, 18, 23, 42, 45], "rangeindex": 18, "rapid": [9, 47], "rather": [16, 21, 45], "raw": [1, 18, 19, 20, 22, 23, 50], "rc": 10, "rdylgn": 11, "re": [3, 5, 7, 11, 13, 15, 16, 18, 24, 25, 28, 33, 37, 41, 42, 47], "reach": 14, "read": [1, 5, 9, 16, 17, 18, 23, 30, 36, 37, 39, 42, 45, 47, 50], "read_csv": 18, "readabl": [9, 15, 18, 36, 43], "reader": [1, 50], "readi": [15, 24, 28, 29, 30, 34, 37, 38, 42], "readili": 18, "readm": [28, 35], "real": [7, 15, 20, 21, 22, 30, 42, 47, 50], "realiti": 7, "realli": [15, 28, 37], "realm": [20, 21, 22], "realpython": 7, "realunit": [20, 21, 22], "reanalysi": 23, "reason": [8, 18, 24, 28, 30, 40, 45, 47], "recal": [3, 14, 23, 28, 32], "receiv": [32, 36, 37], "recent": [3, 9, 13, 14, 15, 18, 20, 22, 28, 29, 30, 33, 34, 35, 38, 39], "recip": 37, "recogn": [15, 23, 33, 42], "recommend": [1, 5, 18, 24, 28, 29, 30, 32, 34, 36, 37, 38, 40], "record": [20, 22, 33], "red": [9, 10, 11, 13, 22, 38], "redefin": 42, "redirect": [26, 32, 37], "redisplai": 42, "reduc": [9, 10, 15, 18, 20, 30], "reduct": [20, 21], "ref": 31, "refer": [0, 10, 16], "referenc": [1, 2, 3, 6, 44], "reflect": [21, 30, 35], "reformat": 7, "refresh": [9, 30, 42], "regardless": [10, 18, 21, 40, 42], "region": [20, 21, 23], "regist": [32, 36], "regrid": [20, 22], "regriddinggrid_label": [20, 22], "regular": [5, 13, 30], "regularli": [5, 14], "reinforc": 21, "reintroduc": 14, "reject": 34, "rel": [13, 15, 16, 30], "relat": [1, 6, 7, 18, 21, 23, 32, 33, 36, 38, 47], "relationship": 9, "relative_humid": 13, "releas": [16, 24, 49], "relev": [0, 1, 5, 15, 20, 21, 28, 30, 33, 38], "remain": [3, 23, 38], "remark": 37, "rememb": [14, 16, 37, 42, 45], "remind": [13, 28], "remot": [23, 28, 29, 32, 34, 35, 36, 39, 42], "remov": [1, 3, 5, 7, 18, 20, 23, 24, 28, 38], "renam": [14, 30, 32, 41, 42], "render": [1, 3, 10, 18, 38, 42, 50], "reopen": 42, "reorder": 42, "repeat": [3, 7, 15, 30, 37, 45], "repeatedli": 10, "replac": [1, 5, 7, 15, 20, 21, 28, 38], "repo": [5, 28, 29, 32, 34, 35, 36, 37, 38, 39], "report": [5, 7, 20, 21, 22, 33, 35, 39], "repositori": [0, 3, 20, 25, 29, 33, 34, 36, 38, 39, 50], "repository_url": 37, "repres": [3, 5, 7, 9, 10, 13, 14, 15, 18, 20, 22, 23, 30, 39], "represent": [5, 7, 18, 21, 45], "reproduc": [10, 24, 44], "request": [0, 1, 20, 21, 22, 25, 28, 32, 33, 35, 36, 39, 40], "requir": [1, 3, 5, 10, 13, 14, 16, 20, 21, 22, 28, 29, 30, 32, 34, 36, 37, 38, 45, 46, 50], "requisit": 5, "rerun": [37, 42], "resampl": 20, "research": [16, 20, 22, 37], "resembl": [5, 22, 23, 30], "reshap": [13, 14, 15], "resid": [5, 32, 35], "resiz": 42, "resolut": [33, 38], "resolv": [23, 30, 32, 33, 49], "resourc": [16, 33], "respect": 37, "rest": [28, 50], "restart": 1, "restor": [28, 37], "restrict": [3, 11], "result": [3, 11, 13, 14, 15, 18, 20, 23, 28, 41, 42, 50], "retain": [23, 28], "retriev": [18, 20, 21, 23, 28, 42], "return": [7, 9, 10, 13, 15, 18, 20, 23, 37, 42], "reus": [9, 32, 42, 49], "reveal": [14, 23], "revers": [14, 18], "revert": [28, 46], "review": [1, 9, 15, 18, 20, 23, 29, 30, 34, 36, 37], "reviewnb": 38, "revis": [28, 30, 34], "revisit": [28, 42], "rho": 1, "rich": [21, 22, 23], "right": [1, 7, 9, 15, 28, 32, 33, 38, 41, 42, 45, 50], "rigor": 18, "river": 3, "rm": 28, "rmdir": 42, "robinson": 22, "robust": [17, 18, 20, 23, 24, 38], "rock": 37, "rocket": [45, 50], "roll": [20, 22], "room": 28, "root": [5, 42], "rose": [28, 49], "rough": [9, 22], "roughli": 1, "round": [7, 9, 14, 15], "rout": 40, "routin": 12, "row": [1, 7, 11, 13, 14, 15, 16, 18, 32], "rule": [1, 14, 15, 18, 24, 30], "run": [0, 1, 5, 7, 8, 9, 10, 15, 18, 20, 21, 22, 23, 24, 26, 27, 28, 32, 37, 44], "rundown": 40, "runnabl": 26, "runner": [18, 20, 21, 22, 23], "runtim": [7, 15, 42], "ryan": 3, "safe": [28, 30, 32, 37], "safeguard": 38, "sai": [5, 15, 28, 30, 32, 36], "said": 37, "sake": 5, "same": [1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 21, 22, 24, 26, 30, 32, 35, 37, 39, 40, 42], "sampl": [1, 5, 7, 20, 28, 30, 32, 37], "sample_environ": 24, "sandbox": [28, 30, 32, 34, 36, 37], "satisfi": [13, 28, 37, 38], "satur": 9, "save": [3, 11, 14, 16, 18, 21, 28, 29, 42, 46], "saw": [7, 28, 37], "scalabl": 15, "scalar": 5, "scale": [3, 16, 21], "scale_factor": 5, "scatter": 11, "scenario": [9, 22, 32], "scene": 23, "schedul": [5, 7], "school": 32, "scienc": [5, 7, 11, 16, 22, 50], "scientif": [5, 6, 12, 13, 14, 15, 16, 20, 21, 23, 28, 39, 44, 45, 47, 48, 50], "scientist": [16, 26, 40, 50], "scipi": [9, 14, 16, 23], "scitool": 3, "scope": [1, 7], "scratch": 25, "screen": [3, 32, 42], "screencast": 21, "screenshot": [36, 38, 39, 41], "script": [3, 24, 28, 32, 37, 40, 42, 46], "scroll": [34, 36], "sea": [9, 20, 21, 22, 29], "sea_ic": [20, 22], "sea_mask": 3, "sea_surface_temperaturetim": [20, 21, 22], "seaborn": 8, "search": 18, "searchabl": 33, "season": 20, "second": [3, 5, 7, 9, 10, 11, 14, 18, 20, 22, 28, 30, 32, 42, 50], "section": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 15, 16, 17, 18, 19, 20, 21, 23, 25, 28, 29, 30, 32, 34, 35, 36, 37, 38, 40, 42, 43, 44, 50], "secur": [18, 25], "see": [0, 3, 5, 9, 10, 14, 15, 16, 18, 20, 21, 22, 23, 24, 28, 29, 30, 32, 33, 34, 35, 36, 37, 41, 42, 45, 50], "seed": [10, 13], "seem": 3, "seemingli": 7, "seen": [11, 28, 50], "sel": [20, 22], "select": [1, 12, 13, 14, 15, 18, 20, 21, 24, 32, 36, 37, 38, 41, 42, 50], "self": [5, 18, 23], "semi_major_axi": 5, "semicolon": 3, "seminar": [26, 30, 42], "send": [1, 34], "sens": [7, 47, 50], "sensit": 42, "sent": 42, "separ": [1, 5, 10, 11, 13, 15, 17, 18, 21, 28, 32, 37], "sequenc": [14, 34, 37], "sequenti": [1, 9, 18, 37], "ser": 18, "seri": [11, 15, 16, 20, 21, 22, 26, 28, 30, 37, 39, 42], "serializationwarn": [20, 21, 22], "seriou": 1, "serv": [2, 23, 36, 39, 49, 50], "server": [7, 30, 41, 50], "servic": [23, 26, 38, 39], "session": [24, 40, 41, 46], "set": [3, 5, 6, 7, 9, 10, 11, 14, 15, 18, 20, 21, 22, 25, 28, 32, 35, 36, 37, 39, 41, 46, 47], "set_data": 10, "set_ext": 22, "set_facecolor": 3, "set_titl": [3, 11], "set_xlabel": 11, "set_xlim": 10, "set_ylabel": 11, "set_ylim": 10, "sever": [5, 7, 22, 35], "sh": 28, "shade": 11, "shape": [2, 3, 5, 12, 13, 14, 15, 20, 21], "shapefil": 2, "share": [3, 5, 26, 39, 41, 42, 49, 50], "sharealik": [20, 22], "sheet": [9, 10, 24], "shell": [28, 32, 50], "shelv": [20, 21, 22], "shift": [41, 42, 45, 47, 50], "shine": 7, "ship": [45, 50], "short": [1, 11, 35], "shortcom": 23, "shortcut": [7, 18, 41], "shorten": [11, 14, 23], "shorter": 15, "shorthand": 18, "should": [1, 2, 5, 7, 9, 11, 12, 13, 14, 15, 16, 19, 20, 21, 22, 23, 30, 32, 34, 37, 38, 39, 41, 42, 50], "show": [1, 3, 5, 7, 9, 10, 14, 15, 18, 21, 23, 28, 29, 30, 32, 33, 37, 43], "shown": [1, 5, 7, 9, 10, 18, 20, 21, 22, 23, 28, 29, 35, 36, 42], "shut": 41, "shutdown": 41, "side": [10, 42], "sidebar": [1, 38, 41, 50], "sigma": [1, 9], "sign": [36, 39], "signal": 37, "signific": 23, "significantli": 7, "similar": [3, 5, 9, 11, 14, 18, 20, 21, 23, 26, 28, 32, 37, 38, 40, 42], "similarli": [10, 14, 16, 18, 20, 23, 24, 36], "simpl": [5, 8, 11, 16, 18, 19, 20, 21, 28, 29, 30, 33, 37, 38, 43], "simpler": [15, 23, 37], "simplest": [11, 28, 37, 50], "simpli": [0, 3, 5, 7, 9, 15, 18, 21, 23, 28, 30, 33, 35, 36, 37, 38, 39, 45, 46, 50], "simplic": 3, "simplifi": [14, 15, 16, 20, 23, 28, 37, 38], "simul": [12, 20, 22], "simultan": [9, 18, 20, 41, 42], "sin": [3, 9, 10, 13, 14, 45], "sin_t": 14, "sinc": [0, 3, 5, 10, 20, 21, 22, 23, 28, 29, 32, 33, 42], "sine": 10, "sine_integr": 14, "sing": 28, "singl": [1, 8, 10, 11, 13, 15, 18, 20, 21, 22, 23, 30, 34, 35, 37, 40, 42, 45], "sintheta": 45, "sit": 37, "site": [5, 18, 20, 21, 22, 33, 42, 50], "situ": [5, 20, 21, 22], "situat": [1, 7, 38], "six": [5, 7, 22], "size": [1, 3, 5, 9, 10, 11, 13, 14, 15, 20, 21, 22, 23], "skill": [16, 38, 44, 48, 50], "skip": 15, "slang": 28, "sleep": [7, 42], "slice": [15, 17, 21, 22], "slightli": 37, "slope": 11, "slower": [11, 47], "small": [3, 9, 21, 28, 29, 37, 38], "smaller": [9, 18, 21, 30], "smooth": 22, "snapshot": 28, "sneak": 18, "so": [3, 5, 7, 13, 14, 15, 16, 18, 21, 22, 23, 24, 28, 29, 30, 32, 35, 36, 37, 39, 40, 42, 47, 49], "social": 36, "softwar": [1, 5, 26, 28, 32, 35, 37, 42, 44], "solid": [3, 16], "solut": [15, 37], "solv": [15, 21, 26, 30], "some": [1, 5, 8, 10, 11, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 25, 29, 30, 32, 33, 36, 38, 39, 41, 42], "some_equ": 9, "someon": [33, 34, 47], "somepackag": 24, "someth": [13, 14, 24, 28, 32, 33, 37, 42, 45], "sometim": [5, 18, 36, 42, 47, 50], "sometru": 21, "somewhat": [13, 30], "somewher": [13, 28], "sophist": 14, "sort": [12, 13, 18, 21, 33], "sort_valu": 18, "sound": 9, "sourc": [0, 5, 7, 8, 9, 17, 18, 19, 24, 25, 26, 28, 32, 35, 37, 40, 41, 42, 44, 48, 49, 50], "source_id": [20, 22], "south": [16, 22], "southern": 18, "space": [3, 5, 14, 18, 24, 34, 45], "span": 9, "spatial": [3, 5, 20, 23], "spe": 50, "speci": 45, "special": [8, 9, 10, 20], "specif": [1, 5, 7, 9, 10, 13, 14, 18, 20, 21, 23, 24, 25, 26, 28, 30, 33, 34, 35, 37, 38, 40, 44, 49], "specifi": [5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 23, 24, 37, 39], "speed": [13, 14, 15, 18, 21], "speed2": 13, "spell": 38, "spend": 16, "sphere": 32, "spheric": 5, "spit": 42, "split": [21, 30], "sporad": 5, "spreadsheet": [17, 18, 35], "sprung": 39, "spyder": [24, 40], "sqrt": 9, "squar": [3, 15, 20, 23, 42, 45], "ss": 7, "ssh": [39, 40], "sst": [20, 22, 29], "stack": [7, 16, 23, 42, 44], "stackoverflow": 21, "stage": [13, 32, 37], "stai": 30, "stale": 30, "stand": 42, "standard": [1, 5, 6, 7, 8, 16, 20, 22, 23, 25, 26, 38, 42, 45, 50], "standard_nam": [5, 23], "standard_parallel": 5, "standardbranch_time_in_child": [20, 22], "start": [1, 5, 7, 9, 11, 12, 13, 14, 15, 16, 18, 21, 23, 28, 33, 34, 38, 40, 41, 42, 44, 45, 48, 50], "stat": 9, "state": [1, 5, 7, 15, 20, 21, 23, 28, 38, 42], "state_bord": 3, "statement": [1, 7, 15, 18, 23, 37, 38, 42, 45], "static": [8, 16, 34, 50], "statist": [9, 12, 16, 22, 42], "statu": [29, 30, 37, 42], "std": [18, 20, 21, 22, 23], "std_dev": 22, "step": [0, 1, 5, 14, 18, 20, 21, 22, 23, 24, 28, 29, 30, 34, 36, 37, 38, 39, 50], "stereograph": 3, "stid": 5, "stid_var": 5, "still": [3, 5, 9, 28, 30, 37, 39, 42], "stock_img": 3, "stop": [7, 14, 18, 21, 23, 28], "storag": 21, "store": [3, 5, 7, 13, 21, 23, 28, 32, 35, 37, 41, 46], "storm": 7, "str": 5, "str_len": 5, "straight": [3, 40], "straightforward": [5, 21], "strategi": [3, 21], "stream": 21, "streamlin": [16, 23], "strictli": [0, 21], "stride": 15, "stride_trick": 15, "strike_tim": 7, "string": [3, 5, 7, 9, 10, 18, 20, 42, 47], "strongli": [20, 22], "structur": [1, 5, 9, 18, 19, 23, 33, 47], "struggl": 33, "studio": [30, 40], "stupid": 28, "style": [9, 11, 14, 18], "sub": [15, 16], "sub_experiment_id": [20, 22], "subhead": 42, "subject": 7, "submiss": 22, "submit": [20, 22, 29, 32, 34, 37, 38], "submodul": 45, "subplot": [3, 10, 20], "subplot_mosa": 9, "subplot_numb": 11, "subsequ": [3, 5, 7, 28, 37], "subset": [13, 15, 21], "subtract": 22, "subvers": 28, "succe": [21, 37], "success": [10, 37, 39], "successfulli": [1, 5, 34], "succinct": 15, "suddenli": 28, "suffici": 38, "suggest": [0, 13, 15, 16, 30, 33, 34, 38], "suit": [7, 11, 28, 33], "sum": [10, 13, 14, 20, 21, 31, 45, 47], "sum_": 42, "sumcom": [20, 22], "summar": [1, 18, 20], "supercel": 7, "supercomput": [40, 46], "suppli": [7, 20, 22], "support": [3, 5, 8, 10, 16, 20, 21, 26, 32, 36, 37, 39, 40, 50], "suppos": 7, "suppress": 3, "suptitl": 9, "sure": [1, 9, 13, 18, 21, 28, 32, 33, 37, 38, 50], "surfac": [11, 20, 21, 22, 23, 25, 29], "surfaceposit": 23, "surfaceunit": 23, "surfacexarrai": 23, "surg": 7, "surprisingli": 37, "surround": 35, "svg": 11, "svn": 39, "swap": 23, "switch": [28, 37, 38, 42], "sy": [1, 21], "symbol": [20, 21, 23, 42], "sync": [30, 37], "synchron": 35, "syntax": [7, 8, 9, 14, 18, 20, 23, 24, 40, 42], "synthet": 13, "system": [1, 3, 7, 8, 20, 24, 26, 28, 29, 32, 36, 37, 40, 41, 42, 44], "t": [5, 7, 9, 13, 14, 15, 16, 18, 21, 23, 28, 30, 36, 37, 39, 42, 47, 50], "tab": [11, 13, 35, 36, 38, 41, 42], "tabl": [1, 18, 20, 22, 42], "table_id": [20, 22], "tableau": 11, "tabular": [16, 17, 18, 19, 23], "tag": [1, 10, 21, 29], "tail": 18, "tailor": 19, "take": [0, 1, 3, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 23, 24, 28, 29, 32, 33, 34, 37, 38, 39, 42, 45, 47, 50], "taken": [11, 21, 22], "talk": 42, "tarea": 20, "tareadescript": [20, 22], "target": 30, "task": [7, 16, 22, 33, 37, 38], "taught": 40, "tbound": [20, 21, 22], "tbv": 5, "tcp": 39, "team": [1, 30, 34, 37, 38], "teammat": 34, "technic": [10, 21], "techniqu": [1, 9, 11, 15, 18, 21, 22, 23], "technologi": [25, 50], "teleconnect": 18, "tell": [15, 28, 30], "temp": [5, 11, 13, 15, 23], "temp2": 13, "temp_45": 13, "temp_in_celsiu": 23, "temp_slic": 5, "temp_var": 5, "temperatur": [5, 9, 11, 13, 15, 18, 20, 21, 22, 23, 29], "temperature_degc": 18, "temperature_isobar": 23, "temperaturegrid_map": 23, "temperaturemipt": [20, 21, 22], "temperaturetyp": [20, 21, 22], "templat": [0, 33], "tempor": [5, 20, 21, 22, 23], "temporarili": 15, "temps_1000": 11, "temps_strid": 15, "temps_var": 5, "ten_highest": 13, "tend": 47, "tenth": 13, "term": [3, 5, 7, 11, 20, 21, 22, 32, 39, 47], "termin": [24, 26, 30, 32, 34, 38, 41, 50], "termsofus": [20, 22], "test": [7, 20, 32, 39, 40, 41, 42, 46], "text": [1, 3, 5, 13, 18, 26, 28, 29, 32, 33, 37, 38, 40, 45, 46, 50], "textbook": 50, "th": 10, "than": [1, 3, 7, 10, 11, 14, 16, 18, 20, 21, 22, 35, 37, 38, 45, 47, 50], "thank": 1, "thankfulli": 30, "thei": [1, 3, 5, 6, 7, 9, 11, 14, 15, 16, 20, 21, 22, 23, 24, 25, 28, 30, 33, 34, 37, 38, 40, 42, 47, 50], "them": [1, 5, 6, 7, 9, 13, 14, 16, 18, 20, 21, 23, 28, 29, 30, 32, 33, 34, 35, 37, 42, 45, 47, 50], "theme": 42, "therebi": 10, "therefor": [5, 7, 16, 18, 20, 21, 23, 35, 38], "theta": 45, "thi": [0, 2, 3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 46, 47, 48], "thing": [1, 5, 8, 11, 14, 16, 23, 28, 37, 45], "think": [26, 28, 37], "third": [7, 11, 38, 42], "thorni": 7, "thoroughli": 30, "those": [2, 3, 5, 7, 13, 14, 18, 20, 21, 23, 28, 32, 36, 38, 39], "though": [3, 9, 15, 28, 38, 39, 42], "thought": [22, 26, 33], "thousand": 21, "three": [3, 5, 7, 9, 10, 14, 20, 22, 28, 35, 42], "through": [1, 2, 3, 7, 10, 11, 12, 14, 18, 19, 20, 21, 23, 25, 28, 29, 30, 33, 34, 36, 37, 38, 40, 42, 45, 50], "throughout": [15, 32], "thu": [5, 8, 9, 28, 30, 39], "thumb": 30, "thunderstorm": 7, "ti": [23, 26], "tide_dur": 7, "tide_length": 7, "tightli": 19, "tile": 15, "tim": 5, "time": [0, 1, 3, 5, 6, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 22, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 45, 46, 50], "time1": 23, "time1pandasindexpandasindex": 23, "time_bnd": [20, 22], "time_bndsstandard_nam": [20, 21, 22], "time_bound": 5, "time_coordinateaxistyp": 23, "time_label": [20, 21], "time_titl": [20, 21], "time_unit": 5, "time_v": 5, "time_var": 5, "timearrai": 23, "timedelta": [5, 23], "timeit": [7, 42], "timelong_nam": 23, "timepandasindexpandasindex": [20, 21, 22, 23], "timer": 42, "timescal": 7, "timeseri": [5, 6, 18, 23], "timestamp": [28, 35], "timetime_label": [20, 21, 22], "timetitl": [20, 21, 22], "timetyp": [20, 21, 22], "timezon": [5, 7], "tip": [18, 38], "titl": [1, 5, 9, 10, 20, 21, 22, 33, 34, 37, 45], "tm": 7, "tmp": [5, 7, 18], "to_csv": 18, "todai": 28, "todo": 33, "togeth": [13, 14, 15, 24, 30, 32, 34, 37, 47], "toggl": 36, "toi": 14, "toler": 23, "too": [9, 11, 13, 16, 21, 37, 42], "took": 7, "tool": [5, 8, 10, 15, 17, 18, 24, 28, 35, 37, 38, 39, 40, 41, 44], "toolbar": [41, 42], "toolbox": 8, "toolkit": 16, "toolset": 24, "top": [0, 1, 2, 8, 9, 16, 17, 18, 19, 20, 21, 22, 23, 32, 33, 36, 37, 38, 41, 42, 45, 50], "topic": [1, 6, 9, 13, 14, 15, 18, 20, 22, 23, 25, 32, 33, 35, 36, 38, 50], "topk": 21, "torvald": [28, 39], "tos": [20, 21, 22, 29], "tos_anom": 20, "tos_clim": 20, "tos_nino34": 22, "tos_nino34_anom": 22, "tosarrai": [20, 22], "toslong_nam": [20, 21, 22], "tosprov": [20, 21, 22], "tosvariant_info": [20, 22], "tosxarrai": [20, 21], "total": [1, 13, 20, 21, 22, 32, 45], "touch": [30, 42, 46], "tour": 45, "traceback": [13, 14, 15, 18], "track": [5, 7, 16, 21, 28, 30, 33, 34, 39], "tracker": 28, "tracking_id": [20, 22], "trade": [15, 16], "tradit": 23, "tradition": 16, "train": [7, 23], "trajectori": 5, "transfer": 30, "transform": [2, 3, 12, 14, 20, 22], "translat": 23, "transpar": 21, "transpos": 20, "trapz": 14, "treat": 18, "tree": 28, "trial": [1, 7], "trickier": 28, "trigger": 34, "trivial": 50, "tropic": 7, "truckload": 28, "true": [3, 5, 7, 9, 10, 11, 13, 15, 18, 20, 21, 22, 45], "truli": 42, "try": [1, 5, 7, 11, 13, 15, 16, 18, 20, 23, 28, 30, 37, 38], "tue": 28, "tunnel": 40, "tupl": [9, 15], "turbo": 20, "ture": 1, "turn": [13, 15, 17, 24, 28, 36, 42], "tutori": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 17, 18, 19, 20, 21, 22, 23, 26, 29, 30, 33, 35, 36, 37, 38, 40, 42, 43, 44, 45], "twelv": 5, "two": [5, 7, 9, 13, 14, 16, 18, 20, 21, 22, 23, 24, 28, 29, 30, 32, 33, 34, 36, 37, 42, 45, 50], "txt": [28, 42], "tyle": [28, 49], "type": [1, 3, 5, 7, 8, 9, 10, 11, 14, 15, 18, 20, 21, 23, 24, 29, 30, 32, 33, 36, 38, 39, 41, 42, 46, 47], "typeerror": 18, "typic": [5, 7, 10, 22, 30, 32, 34, 35, 37, 38, 39, 42, 47], "typo": [1, 28, 29, 33], "tzinfo": 7, "u": [3, 7, 13, 14, 15, 17, 18, 20, 21, 23, 27, 28], "u_wind": 23, "ucar": [20, 22], "udunit": 5, "uk": 3, "ultim": [30, 32, 33], "unabl": 37, "unambigu": 7, "unavail": [10, 23], "unawar": 7, "unchang": 38, "uncheck": 36, "unclear": 33, "uncomfort": 24, "uncommon": 9, "under": [0, 3, 4, 6, 7, 16, 17, 20, 22, 28, 31, 34, 37, 38, 41, 43, 45, 49], "underestim": 1, "underli": [1, 14], "underneath": 34, "underpin": 15, "underscor": 42, "understand": [1, 5, 7, 9, 13, 14, 15, 18, 20, 21, 23, 28, 30, 35, 38, 40], "understood": 18, "undo": 28, "undoubtedli": 16, "unfamiliar": [1, 18, 23, 38], "unfortun": [7, 15, 32], "unidata": [5, 7, 23], "unintend": 42, "uniqu": [5, 18, 24, 28, 39], "unit": [5, 7, 20, 21, 23], "univers": [7, 28], "unix": [28, 50], "unknown": 21, "unless": 37, "unlik": [21, 32], "unlimit": 5, "unmask": 20, "unneed": 10, "unord": 9, "unsatisfi": 37, "unsatur": 9, "unsav": 42, "unstag": 28, "unsubscrib": 36, "unsuccess": 7, "until": [1, 15, 21, 28, 30, 37, 38, 50], "untitl": [41, 42], "untrack": 30, "unus": 5, "unwant": 10, "unwatch": 36, "unweight": 20, "unweighted_mean_global_anom": 20, "up": [5, 10, 11, 14, 15, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 32, 33, 34, 36, 37, 39, 41, 45, 46, 47, 50], "updat": [0, 5, 24, 28, 37, 38, 40, 42], "upload": [32, 36, 42], "upon": [7, 11, 16, 23, 28], "upper": [11, 32, 41, 42], "upsampl": 20, "upstream": [30, 32, 34, 35], "url": [26, 29, 32, 36, 37], "us": [0, 2, 4, 5, 6, 7, 8, 9, 14, 16, 17, 19, 22, 25, 27, 29, 30, 32, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 49], "usabl": [5, 23], "usag": [15, 18, 20, 21, 23, 28, 39, 45], "usainstitution_id": [20, 22], "user": [5, 12, 13, 14, 16, 18, 20, 21, 24, 25, 26, 27, 28, 30, 35, 36, 38, 39, 42, 44, 47, 50], "usernam": 30, "usual": [1, 5, 7, 9, 10, 16, 18, 20, 35, 38, 42, 45, 47], "utc": 5, "utcnow": [5, 7], "util": [11, 21, 47], "v": [13, 23, 30, 32, 37, 42], "v2": 20, "v2023": 49, "v3": 23, "v3featuretyp": 23, "val": 15, "vala": 15, "valb": 15, "valid": [5, 13, 18, 20, 21, 23, 32], "valid_max": 5, "valid_min": 5, "valu": [3, 5, 9, 10, 11, 14, 15, 17, 21, 22, 42, 45], "valuabl": [13, 15], "valueerror": [10, 14, 15], "var": [20, 21, 22], "var_7": 23, "vari": [5, 28], "variabl": [7, 10, 11, 20, 21, 22, 28, 40], "variable_id": [20, 21, 22], "variablesmipt": [20, 22], "variablestyp": [20, 22], "varianc": [9, 20], "variant_info": [20, 22], "variant_label": [20, 22], "varieti": [3, 8, 11, 29, 37], "variou": [3, 7, 9, 10, 11, 12, 13, 18, 20, 35, 39], "vast": 45, "vcss": 28, "ve": [0, 3, 10, 15, 16, 28, 30, 32, 34, 42, 45, 46, 47, 50], "vec": 13, "vector": [2, 6, 16, 20], "verbos": 14, "veri": [1, 9, 14, 15, 16, 17, 18, 21, 23, 28, 32, 38, 40, 42, 47, 50], "verif": 38, "verifi": [5, 7, 18, 22], "vernacular": 32, "versa": 33, "version": [0, 1, 3, 5, 7, 18, 20, 21, 24, 25, 29, 30, 32, 34, 36, 37, 38, 41, 42, 44, 49, 50], "vertic": [5, 20, 22, 23], "via": [0, 3, 11, 18, 20, 22, 24, 25, 30, 32, 34, 36, 37, 39, 40, 42], "vice": 33, "vicin": 3, "video": [3, 10, 20, 21, 35, 39], "view": [0, 1, 3, 5, 9, 15, 18, 21, 23, 36, 37, 42, 50], "viewabl": 0, "vim": [40, 46], "viridi": 9, "virtu": 32, "visibl": 37, "visit": [21, 39, 40], "visual": [8, 9, 11, 16, 18, 19, 21, 24, 26, 30, 40, 47, 50], "visualis": 16, "vital": [35, 40], "vmax": [9, 11, 22], "vmin": [9, 11, 22], "vocabulari": 30, "volum": [5, 20, 22], "w": [5, 23], "wa": [1, 3, 7, 9, 16, 18, 20, 21, 22, 23, 28, 30, 33, 37, 42, 45, 50], "wai": [1, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 23, 24, 28, 29, 30, 33, 34, 36, 37, 39, 40, 42, 45, 50], "wait": [21, 29, 30, 34, 37, 42], "walk": [15, 25], "wall": 21, "want": [7, 9, 10, 11, 15, 18, 23, 24, 25, 29, 30, 33, 34, 36, 37, 40, 41, 42, 46, 47, 50], "ward": 16, "warm": 22, "warrant": 18, "warranti": [20, 22], "wasn": 28, "watch": 36, "water": 3, "wave": 10, "we": [1, 3, 5, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 25, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 45, 46, 50], "weather": [5, 7, 16, 23], "web": [0, 26, 28, 32, 37, 38, 40, 41, 42, 50], "webpag": 38, "websit": [2, 19], "wedg": 10, "weight": [20, 22], "weighted_mean_global_anom": 20, "welcom": 14, "well": [1, 3, 5, 7, 8, 9, 13, 14, 15, 17, 18, 20, 21, 26, 28, 29, 32, 33, 35, 38, 40, 42, 50], "were": [5, 8, 15, 19, 21, 26, 28, 30, 33, 37], "what": [25, 29, 47, 50], "whatev": [7, 32, 36], "wheel": 16, "when": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 13, 15, 16, 18, 21, 22, 23, 26, 28, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 47, 50], "whenev": [3, 36], "where": [0, 1, 3, 5, 6, 7, 9, 10, 11, 13, 14, 15, 18, 21, 22, 23, 28, 30, 32, 34, 37, 38, 39, 40, 41, 42, 45, 46, 50], "wherea": 42, "wherev": [1, 28], "whet": 45, "whether": [1, 5, 9, 16, 20, 32, 33, 42], "which": [1, 3, 5, 7, 8, 9, 10, 11, 13, 15, 16, 18, 19, 20, 21, 22, 23, 24, 26, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 47, 50], "while": [0, 3, 16, 20, 21, 22, 28, 30, 32, 33, 35, 36, 37, 38, 39, 42, 45, 49, 50], "whirlwind": 45, "whistl": 40, "white": [9, 42], "whiteak": 5, "who": [35, 40], "wholeheartedli": 38, "whom": [28, 38], "whose": [7, 11, 26], "why": [7, 9, 11, 23, 25, 33, 40, 44], "wide": [11, 19, 28, 37, 47], "wider": [9, 16], "widespread": 47, "width": [9, 21], "wikipedia": 39, "wind": [13, 16, 23], "wind_vector": 13, "windgrid_map": 23, "window": [15, 20, 22, 37, 41, 42, 46, 50], "windspharm": 16, "wise": 13, "wish": [1, 7, 21, 32, 36, 37], "within": [5, 8, 13, 14, 15, 16, 18, 20, 23, 24, 28, 30, 33, 35, 37, 40, 41, 42, 47], "without": [0, 1, 7, 9, 10, 14, 15, 18, 20, 22, 23, 28, 30, 32, 33, 37, 40, 41], "won": [9, 15, 36, 37], "wonder": [8, 9], "word": [5, 10, 15, 20, 21, 28, 30, 32, 35], "worflow": 37, "work": [0, 1, 2, 3, 5, 7, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 30, 32, 33, 34, 35, 36, 38, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50], "workflow": [9, 20, 24, 25, 28, 29, 32, 38, 40, 47, 50], "workhors": [16, 23], "workspac": [42, 46], "world": [1, 3, 14, 15, 22, 41, 42, 45, 46], "worri": [13, 18, 28, 47], "would": [5, 7, 11, 14, 15, 16, 23, 24, 30, 32, 33, 34, 37, 38, 42, 50], "wouldn": 47, "wq": 46, "wrap": [9, 21], "wrapper": [18, 23], "wrf": 5, "write": [9, 14, 15, 16, 17, 23, 26, 28, 32, 34, 36, 37, 42, 47], "writer": 10, "written": [7, 10, 14, 15, 16, 28, 38, 42], "wrong": 28, "wrote": [28, 42], "www": 3, "x": [1, 5, 9, 10, 11, 13, 14, 15, 16, 18, 20, 22, 23, 42, 45, 46], "x2": 9, "x27": [20, 21, 22, 23], "x_ind": 15, "x_var": 5, "xarrai": [2, 5, 6, 7, 14, 15, 16, 18, 29, 35, 39], "xbound": [20, 21, 22], "xdev": [3, 26, 30, 42], "xlabel": [10, 18, 45], "xpandasindexpandasindex": 23, "xr": [20, 21, 22], "xrai": 19, "xtick": 9, "xy": 1, "xz": 1, "y": [1, 5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 23, 42, 45], "y2": 9, "y_ind": 15, "y_var": 5, "yaml": 0, "ybound": [20, 21, 22], "ye": 18, "year": [5, 18, 20, 37, 39], "yearli": 18, "yellow": [9, 10], "yet": [3, 5, 11, 21, 28, 30, 37], "yield": [7, 23], "yincreas": 23, "ylabel": [10, 18], "yml": [0, 50], "you": [0, 1, 2, 3, 5, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 19, 20, 23, 24, 25, 26, 29, 32, 33, 34, 35, 36, 37, 40, 41, 42, 45, 46, 47, 48, 49, 50], "your": [3, 5, 7, 8, 9, 10, 11, 13, 14, 15, 16, 20, 21, 24, 25, 26, 27, 28, 29, 32, 33, 35, 37, 38, 39, 40, 42, 44, 46, 47, 50], "your_axi": 9, "your_fork": 37, "your_usernam": 37, "yourself": [3, 16, 33, 38, 42, 44, 45], "youtub": 21, "youtubevideo": 21, "ypandasindexpandasindex": 23, "ytick": 9, "yup": 37, "z": [1, 5, 9, 11, 15, 21], "z1": 11, "z2": [9, 11], "zacharia": 49, "zenodo": 49, "zero": [7, 9, 11, 15, 27], "zeros_lik": 15, "zip": 14, "zlib": 5, "zonal": 20, "\u211d": 7}, "titles": ["Pythia Foundations Contributor\u2019s Guide", "Project Pythia Notebook Template", "Cartopy", "Introduction to Cartopy", "Data Formats", "NetCDF and CF: The Basics", "Datetime", "Times and Dates in Python", "Matplotlib", "Annotations, Colorbars, and Advanced Layouts", "Histograms, Pie Charts, and Animations", "Matplotlib Basics", "NumPy", "Intermediate NumPy", "NumPy Basics", "NumPy Broadcasting", "Overview", "Pandas", "Introduction to Pandas", "Xarray", "Computations and Masks with Xarray", "Dask Arrays with Xarray", "Calculating ENSO with Xarray", "Introduction to Xarray", "Installing and Managing Python with Conda", "Getting Started with GitHub", "Getting Started with Jupyter", "Getting Started with Python", "Basic Version Control with git", "Contribute to Project Pythia via GitHub", "Git Branches", "Advanced GitHub Topics", "Cloning and Forking a Repository", "Issues and Discussions", "Opening a Pull Request on GitHub", "GitHub Repositories", "Configuring Your GitHub Account", "GitHub Workflows", "Reviewing Pull Requests", "What is GitHub?", "Installing and Running Python", "Python in Jupyter", "JupyterLab", "Formatted Text in the Notebook with Markdown", "Overview", "Quickstart: Zero to Python", "Python in the Terminal", "Why Python?", "Pythia Foundations", "How to Cite This Book", "How to Use This Book"], "titleterms": {"": [0, 1, 3, 5, 7, 10, 11, 13, 14, 15, 18, 20, 21, 23, 24, 26, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 46], "1": 10, "2": [10, 23], "2nd": 15, "3": [10, 22], "4": 22, "A": [1, 3, 7, 28, 45, 48], "In": 8, "No": 39, "One": 23, "The": [5, 9, 18, 22, 23, 30, 42], "about": 28, "access": [23, 36], "account": [36, 39], "across": 28, "ad": [9, 11], "add": [3, 9], "add_subplot": 11, "addit": 10, "advanc": [9, 31], "aggreg": [20, 23], "ahead": 15, "algorithm": 21, "all": 11, "along": 23, "an": [3, 10, 11, 14, 36], "analysi": 18, "anim": 10, "annot": 9, "anomali": [20, 22], "anoth": 1, "appli": [18, 20], "approxim": 23, "ar": [21, 24, 30, 33, 35], "arang": 14, "area": 3, "arithmet": [14, 20], "around": 9, "arrai": [13, 14, 21, 23, 45], "assign": 23, "attempt": 23, "attribut": 23, "auxiliari": 5, "avoid": 15, "awar": 7, "ax": [3, 11, 13], "azimuth": 3, "back": 28, "background": 3, "base": 48, "basic": [3, 5, 9, 11, 14, 18, 28, 45], "begin": 18, "behind": 15, "between": 15, "bigger": 21, "binder": 50, "block": [15, 21], "book": [0, 49, 50], "boolean": 13, "bound": 5, "boundari": 11, "box": 9, "branch": [28, 30, 34, 37], "broadcast": 15, "browser": 45, "build": 0, "calcul": [7, 14, 15, 21, 22], "care": 28, "cartograph": 3, "cartopi": [2, 3], "cell": [5, 42], "center": 3, "cf": 5, "chang": [28, 29, 37], "charact": 45, "chart": 10, "check": 28, "choos": 40, "chunk": 21, "cite": 49, "class": [7, 9, 21], "climatologi": 20, "clone": [32, 37], "cloud": 50, "coastal": 7, "code": [42, 45], "collect": 21, "color": 11, "colorbar": 9, "colormap": 9, "column": 18, "combin": 20, "command": [24, 28, 42], "commit": [0, 28, 37], "commun": 48, "compar": 28, "comparison": 13, "complet": [23, 30], "comput": [20, 21, 22, 48], "concept": 3, "conda": [0, 24, 40], "condit": 20, "configur": 36, "consider": 9, "consol": 42, "constant": 14, "contain": [21, 23], "content": [1, 31], "contour": 11, "contribut": [0, 29], "contributor": 0, "control": [7, 11, 28, 39, 45], "coordin": [5, 23], "core": [7, 16], "creat": [0, 3, 5, 9, 11, 14, 21, 23, 24, 28, 29, 30, 37], "creation": [5, 23], "custom": [9, 11, 18, 20, 23], "d": 23, "dai": 7, "danger": [1, 5, 18, 42], "dask": 21, "data": [3, 4, 5, 7, 9, 11, 14, 15, 18, 20, 21, 23, 45], "dataarrai": 23, "datafram": 18, "dataset": 23, "date": [0, 7], "datetim": [6, 7, 18], "deal": 7, "delet": 30, "demonstr": 1, "deriv": 15, "dev": 0, "dice": 18, "dict": 45, "dictionari": 45, "did": [38, 39], "differ": [3, 7, 11, 15, 21], "dimens": [5, 15, 23], "discuss": 33, "displai": 11, "distribut": [28, 35], "domain": 16, "down": 42, "draft": 34, "each": 11, "earth": 3, "edit": 29, "editor": 42, "either": 36, "elaps": 7, "email": 36, "end": 18, "enso": 22, "environ": [0, 24], "equal": 3, "equat": 9, "exampl": [1, 3, 7, 35, 50], "execut": 26, "exercis": 21, "exit": 41, "experi": 39, "explicit": 15, "explor": 3, "exploratori": 18, "extend": [3, 15, 18], "extrem": 18, "fanci": 3, "featur": [3, 28, 34, 37], "field": 5, "figur": [3, 11], "file": 5, "fill": [5, 11, 20], "find": 15, "fine": 36, "first": [1, 21, 23, 45], "float": 45, "flow": 45, "fork": [30, 32, 34, 37], "format": [4, 7, 43], "foss": 39, "foundat": [0, 48, 50], "free": 39, "from": [3, 45], "full": 7, "funcanim": 10, "function": [10, 14, 20], "further": 1, "gener": [11, 14, 23, 36], "geoax": 3, "georeferenc": 3, "geoscienc": 48, "get": [18, 25, 26, 27], "git": [28, 30, 37], "github": [25, 28, 29, 31, 34, 35, 36, 37, 39], "give": 15, "global": 3, "go": 28, "graphic": 45, "grid": [5, 11], "groupbi": 20, "guid": 0, "have": [7, 30], "header": 1, "high": [16, 20, 47], "higher": 15, "histogram": 10, "histori": 28, "hook": 0, "how": [1, 7, 49, 50], "http": 36, "hub": 26, "i": [1, 7, 15, 28, 34, 35, 36, 38, 39], "id": [5, 40], "iloc": 18, "imag": [3, 11], "implicitli": 15, "import": [1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 21, 22, 23], "index": [13, 14, 18, 22], "indic": 13, "info": [1, 3, 5, 7, 11, 13, 14, 18, 20, 23, 42], "inform": 5, "initi": [10, 23], "inspect": 28, "instal": [0, 24, 40, 41, 46], "int": 45, "integ": 45, "interact": 50, "interfac": 42, "intermedi": 13, "internet": 39, "interpol": 23, "interpret": 47, "introduc": 23, "introduct": [3, 18, 23], "investig": 18, "issu": [23, 33], "jupyt": [0, 26, 40, 41, 50], "jupyterlab": 42, "just": 7, "keep": 0, "kei": 36, "kernel": [26, 42], "keypair": 36, "know": [28, 38, 39], "lab": 26, "label": 11, "lambert": 3, "languag": 47, "last": 1, "layout": 9, "lazi": 21, "learn": [21, 48], "left": 42, "level": [1, 16, 20, 47], "librari": 16, "lightn": 7, "like": 23, "limit": 11, "line": 11, "linspac": 14, "list": 45, "littl": 28, "ll": 28, "loc": [18, 23], "local": [0, 26, 50], "log": 28, "look": [15, 18, 38], "loop": [15, 45], "lower": 3, "magic": 42, "main": [30, 37], "make": [23, 28, 29, 37], "manag": [24, 40], "mani": 7, "manipul": 21, "map": 3, "markdown": [42, 43], "mask": 20, "math": 14, "matplotlib": [3, 8, 11, 45], "max": 15, "me": 36, "merg": 30, "method": [3, 7, 20, 23], "min": 15, "mini": 28, "mode": 42, "model": 26, "modul": 7, "mollweid": 3, "more": [21, 23], "mosaic": [3, 9], "multidimension": 14, "multipl": 20, "naiv": 7, "name": 23, "natur": 3, "navig": 34, "nearest": 23, "necessari": 39, "neighbor": 23, "neq": 39, "netcdf": [5, 23], "new": [0, 1, 3, 28, 30, 37], "next": [1, 3, 5, 7, 10, 11, 13, 14, 15, 18, 20, 23, 24, 26, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 46], "ni\u00f1o": 22, "nomenclatur": 28, "normal": 9, "note": 3, "notebook": [0, 1, 26, 40, 41, 42, 43, 50], "notif": 36, "now": 45, "number": 45, "numpi": [11, 12, 13, 14, 15, 21, 23, 45], "object": [7, 11, 21, 23, 47], "observ": 5, "often": 3, "one": 20, "open": [23, 34, 39, 47], "open_dataset": 23, "oper": [18, 20, 23], "organ": 50, "orient": 47, "other": [9, 20, 28, 40], "our": 28, "out": 28, "output": 7, "over": [3, 15], "overview": [1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 22, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 46], "packag": 24, "page": 1, "panda": [17, 18], "parallel": 21, "pars": 7, "perform": 14, "person": 36, "pie": 10, "platform": 40, "plot": [3, 11, 18, 23], "point": 45, "pre": 0, "preambl": 50, "predefin": 3, "prerequisit": [1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 21, 22, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 46], "preserv": 23, "pressur": 23, "previou": 28, "print": 7, "privat": 36, "program": 45, "progress": 10, "project": [1, 3, 29], "provid": 38, "public": 36, "pull": [29, 30, 34, 37, 38], "push": 37, "put": 11, "pythia": [0, 1, 29, 48, 50], "python": [7, 24, 27, 40, 41, 45, 46, 47, 48], "pytz": 7, "queri": 7, "quick": [1, 18], "quickstart": 45, "random": 23, "raw": 42, "read": [7, 21], "refer": [1, 3, 5, 7, 9, 11, 13, 14, 15, 18, 20, 21, 22, 23, 24, 26, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 45, 46], "region": [3, 22], "regist": 39, "remot": [26, 30, 37], "render": 9, "replac": 13, "repositori": [28, 30, 32, 35, 37], "request": [29, 30, 34, 37, 38], "resampl": 18, "resolut": 3, "resourc": [1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 21, 22, 23, 24, 26, 30, 38, 40, 41, 42, 45, 46, 48], "restart": 42, "result": 21, "review": 38, "room": 15, "run": [40, 41, 42, 45, 46, 50], "safeti": 37, "same": 23, "sampl": [9, 23], "satellit": 3, "save": [10, 41], "scatterplot": 11, "second": 1, "section": [1, 8, 31], "secur": 36, "see": 7, "sel": 23, "select": [22, 23], "seri": 18, "set": [1, 23, 30, 42], "set_ext": 3, "set_xlim": 11, "set_ylim": 11, "setup": [5, 20], "shapefil": 3, "share": [9, 11, 23], "sharei": 11, "sharex": 11, "shell": 42, "shortcom": 21, "shortcut": 42, "should": 28, "shut": 42, "sidebar": 42, "simpl": [7, 23], "sinc": 7, "site": 0, "slice": [13, 14, 18, 23], "softwar": 39, "some": [3, 7, 9, 28, 35, 45], "sourc": [39, 47], "space": 23, "spam": 36, "special": 42, "specif": 16, "specifi": [3, 21], "split": 20, "ssh": 36, "stage": 28, "stai": 39, "start": [25, 26, 27, 37], "state": [3, 10], "station": 5, "statist": 18, "statu": 28, "step": 10, "stop": [36, 42], "str": 45, "strftime": 7, "strike": 7, "string": 45, "strptime": 7, "structur": 21, "subplot": [9, 11], "subsect": 1, "subset": [14, 18, 23], "success": 1, "suggest": 29, "summari": [1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 21, 22, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 46], "support": 7, "switch": [30, 34], "synchron": 37, "system": [5, 39], "templat": 1, "termin": [40, 42, 46], "terminologi": 7, "test": [11, 21], "text": [9, 42, 43], "thi": [1, 8, 11, 28, 45, 49, 50], "thing": [32, 35], "tide": 7, "time": [7, 23, 28], "timedelta": 7, "timestamp": 7, "tip": [35, 36, 37], "titl": 11, "togeth": 11, "token": 36, "topic": [27, 31, 44], "try": [32, 35], "tune": 39, "tutori": [16, 28], "two": [3, 11], "type": 45, "unix": 7, "up": [0, 1, 30, 42], "updat": 30, "upstream": 37, "us": [1, 3, 10, 11, 13, 15, 18, 20, 21, 23, 24, 28, 50], "usag": 7, "user": 32, "utc": 7, "v": 36, "valu": [13, 18, 20, 23], "variabl": [5, 23, 42], "vc": [28, 39], "vector": 15, "veri": 45, "version": [28, 39], "versu": 7, "via": [29, 50], "view": [28, 38], "visual": [22, 23], "wai": 38, "want": 28, "warn": [1, 3, 13, 14, 18, 42], "we": 28, "web": 39, "what": [1, 3, 5, 7, 10, 11, 13, 14, 15, 18, 20, 21, 23, 24, 26, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 45, 46], "when": 38, "where": 20, "why": [8, 21, 28, 47], "window": 32, "within": 11, "work": 37, "workflow": [30, 34, 37], "would": 21, "wrap": 23, "write": [5, 7], "xarrai": [19, 20, 21, 22, 23], "xr": 23, "year": 7, "york": 3, "you": [21, 28, 30, 38, 39], "your": [0, 1, 18, 30, 34, 36, 41, 45], "zero": 45, "zone": 7}})
\ No newline at end of file
+Search.setIndex({"alltitles": {"2nd Derivative": [[15, "nd-derivative"]], "A community learning resource for Python-based computing in the geosciences": [[48, "a-community-learning-resource-for-python-based-computing-in-the-geosciences"]], "A content subsection": [[1, "a-content-subsection"]], "A figure with two different regional maps": [[3, "a-figure-with-two-different-regional-maps"]], "A little history and nomenclature": [[28, "a-little-history-and-nomenclature"]], "A simple query of just the year:": [[7, "a-simple-query-of-just-the-year"]], "A very first Python program": [[45, "a-very-first-python-program"]], "About version control and git": [[28, "about-version-control-and-git"]], "Access Data variables and Coordinates in a Dataset": [[23, "access-data-variables-and-coordinates-in-a-dataset"]], "Access netCDF data with xr.open_dataset": [[23, "access-netcdf-data-with-xr-open-dataset"]], "Add a Box Around the Text": [[9, "add-a-box-around-the-text"]], "Add a fancy background image to the map.": [[3, "add-a-fancy-background-image-to-the-map"]], "Add cartographic features to the map": [[3, "add-cartographic-features-to-the-map"]], "Add in the cartographic shapefiles": [[3, "add-in-the-cartographic-shapefiles"]], "Add some predefined features": [[3, "add-some-predefined-features"]], "Adding Annotations": [[9, "adding-annotations"]], "Adding labels and a grid": [[11, "adding-labels-and-a-grid"]], "Adding labels to an Axes object": [[11, "adding-labels-to-an-axes-object"]], "Adding titles to each subplot": [[11, "adding-titles-to-each-subplot"]], "Additional Resources": [[10, "additional-resources"]], "Advanced GitHub Topics": [[31, "advanced-github-topics"]], "Aggregation Methods": [[20, "aggregation-methods"]], "Aggregation operations": [[23, "aggregation-operations"]], "An example of plotting data": [[3, "an-example-of-plotting-data"]], "Animations": [[10, "animations"]], "Annotations, Colorbars, and Advanced Layouts": [[9, "annotations-colorbars-and-advanced-layouts"]], "Another content subsection": [[1, "another-content-subsection"]], "Apply & Combine": [[20, "apply-combine"]], "Applying operations to a DataFrame": [[18, "applying-operations-to-a-dataframe"]], "Approximate selection and interpolation": [[23, "approximate-selection-and-interpolation"]], "Arithmetic": [[14, "arithmetic"]], "Arithmetic Operations": [[20, "arithmetic-operations"]], "Array comparisons": [[13, "array-comparisons"]], "Array math functions": [[14, "array-math-functions"]], "Arrays of numbers with NumPy": [[45, "arrays-of-numbers-with-numpy"]], "Assign dimension names": [[23, "assign-dimension-names"]], "Auxiliary Coordinates": [[5, "auxiliary-coordinates"]], "Basic Colorbars": [[9, "basic-colorbars"]], "Basic Line Plots": [[11, "basic-line-plots"]], "Basic Python data types": [[45, "basic-python-data-types"]], "Basic Statistics": [[18, "basic-statistics"]], "Basic Version Control with git": [[28, "basic-version-control-with-git"]], "Basic concepts: map projections and GeoAxes": [[3, "basic-concepts-map-projections-and-geoaxes"]], "Basic flow control": [[45, "basic-flow-control"]], "Blocked algorithms": [[21, "blocked-algorithms"]], "Blocking": [[15, "blocking"]], "Building the book locally": [[0, "building-the-book-locally"]], "Building the site": [[0, "building-the-site"]], "Calculating ENSO with Xarray": [[22, "calculating-enso-with-xarray"]], "Calculating coastal tides with the timedelta class": [[7, "calculating-coastal-tides-with-the-timedelta-class"]], "Cartopy": [[2, "cartopy"]], "Cartopy\u2019s set_extent method": [[3, "cartopys-set-extent-method"]], "Cell Bounds": [[5, "cell-bounds"]], "Character strings (str)": [[45, "character-strings-str"]], "Checking out a previous commit": [[28, "checking-out-a-previous-commit"]], "Choosing a Python Platform": [[40, "choosing-a-python-platform"]], "Classes of colormaps": [[9, "classes-of-colormaps"]], "Clone, branch, change, commit, push": [[37, "clone-branch-change-commit-push"]], "Cloning a repository": [[32, "cloning-a-repository"]], "Cloning and Forking a Repository": [[32, "cloning-and-forking-a-repository"]], "Cloning and forking": [[32, "cloning-and-forking"]], "Cloning the remote repository": [[37, "cloning-the-remote-repository"]], "Code Cells": [[42, "code-cells"]], "Colormap Overview": [[9, "colormap-overview"]], "Command Mode Shortcuts": [[42, "command-mode-shortcuts"]], "Commands we used in this tutorial": [[28, "commands-we-used-in-this-tutorial"]], "Committing": [[28, "committing"]], "Compare across branches": [[28, "compare-across-branches"]], "Compare across commits": [[28, "compare-across-commits"]], "Comparing versions": [[28, "comparing-versions"]], "Complete Workflow": [[30, "complete-workflow"]], "Computations and Masks with Xarray": [[20, "computations-and-masks-with-xarray"]], "Compute anomaly": [[20, "compute-anomaly"]], "Compute climatology": [[20, "compute-climatology"]], "Compute the anomalies": [[22, "compute-the-anomalies"]], "Compute the result": [[21, "compute-the-result"]], "Configuring Your GitHub Account": [[36, "configuring-your-github-account"]], "Consoles": [[42, "consoles"]], "Constants": [[14, "constants"]], "Content section": [[31, "content-section"]], "Contour and Filled Contour Plots": [[11, "contour-and-filled-contour-plots"]], "Contribute to Project Pythia via GitHub": [[29, "contribute-to-project-pythia-via-github"]], "Contributing a new Jupyter Notebook": [[0, "contributing-a-new-jupyter-notebook"]], "Controlling the output format with strftime()": [[7, "controlling-the-output-format-with-strftime"]], "Coordinate System Information": [[5, "coordinate-system-information"]], "Coordinate variables": [[5, "coordinate-variables"]], "Core libraries": [[16, "core-libraries"]], "Create Some Sample Data": [[9, "create-some-sample-data"]], "Create a DataArray with named Coordinates": [[23, "create-a-dataarray-with-named-coordinates"]], "Create a Dataset object": [[23, "create-a-dataset-object"]], "Create a Pull Request": [[29, "create-a-pull-request"]], "Create a conda environment": [[0, "create-a-conda-environment"]], "Create a dask.array object": [[21, "create-a-dask-array-object"]], "Create a map with a specified projection": [[3, "create-a-map-with-a-specified-projection"]], "Create a new branch": [[37, "create-a-new-branch"]], "Create a new feature branch": [[28, "create-a-new-feature-branch"]], "Create a pressure DataArray using the same coordinates": [[23, "create-a-pressure-dataarray-using-the-same-coordinates"]], "Create a regional map centered over New York State": [[3, "create-a-regional-map-centered-over-new-york-state"]], "Create an array of \u2018data\u2019": [[14, "create-an-array-of-data"]], "Create regional maps": [[3, "create-regional-maps"]], "Creating a Conda Environment": [[24, "creating-a-conda-environment"]], "Creating a New Branch": [[30, "creating-a-new-branch"]], "Creating and filling a variable": [[5, "creating-and-filling-a-variable"]], "Creating the file and dimensions": [[5, "creating-the-file-and-dimensions"]], "Creation and basic setup": [[5, "creation-and-basic-setup"]], "Creation of a DataArray object": [[23, "creation-of-a-dataarray-object"]], "Custom Colorbars": [[9, "custom-colorbars"]], "Customize your Plot": [[18, "customize-your-plot"]], "Customizing colors": [[11, "customizing-colors"]], "Customizing the plot": [[23, "customizing-the-plot"]], "Danger": [[1, null], [5, null], [18, null], [42, null]], "Dask Arrays with Xarray": [[21, "dask-arrays-with-xarray"], [21, "id1"]], "Dask Shortcomings": [[21, "dask-shortcomings"]], "Data Formats": [[4, "data-formats"]], "Data Setup": [[20, "data-setup"]], "Datetime": [[6, "datetime"]], "Dealing with Time Zones": [[7, "dealing-with-time-zones"]], "Deleting Branches": [[30, "deleting-branches"]], "Dictionaries (dict)": [[45, "dictionaries-dict"]], "Did you know?": [[38, null], [39, null], [39, null]], "Discussions": [[33, "discussions"]], "Displaying Images": [[11, "displaying-images"]], "Domain-specific libraries": [[16, "domain-specific-libraries"]], "Email notifications": [[36, "email-notifications"]], "Example usage of the datetime object": [[7, "example-usage-of-the-datetime-object"]], "Executing Jupyter": [[26, "executing-jupyter"]], "Exercise with dask.arrays": [[21, "exercise-with-dask-arrays"]], "Exploratory Data Analysis": [[18, "exploratory-data-analysis"]], "Explore some of Cartopy\u2019s map projections": [[3, "explore-some-of-cartopys-map-projections"]], "Extend Matplotlib\u2019s axes into georeferenced GeoAxes": [[3, "extend-matplotlibs-axes-into-georeferenced-geoaxes"]], "Extending to higher dimensions": [[15, "extending-to-higher-dimensions"]], "Extending to the DataFrame": [[18, "extending-to-the-dataframe"]], "FOSS + VCS + Web = GitHub": [[39, "foss-vcs-web-github"]], "FOSS and VCS on the Internet": [[39, "foss-and-vcs-on-the-internet"]], "Figure and Axes": [[11, "figure-and-axes"]], "Finding the difference between min and max": [[15, "finding-the-difference-between-min-and-max"]], "Floating point numbers (float)": [[45, "floating-point-numbers-float"]], "Forking Workflow": [[37, "forking-workflow"]], "Forking a repository": [[32, "forking-a-repository"]], "Forking the upstream repository": [[37, "forking-the-upstream-repository"]], "Formatted Text in the Notebook with Markdown": [[43, "formatted-text-in-the-notebook-with-markdown"]], "Free \\neq open source!": [[39, null]], "Free and open-source software (FOSS)": [[39, "free-and-open-source-software-foss"]], "Full time zone support with the pytz module": [[7, "full-time-zone-support-with-the-pytz-module"]], "Generate a random numpy array": [[23, "generate-a-random-numpy-array"]], "Generate a secure personal access token for https": [[36, "generate-a-secure-personal-access-token-for-https"]], "Generate an SSH public/private keypair": [[36, "generate-an-ssh-public-private-keypair"]], "Generate test data using NumPy": [[11, "generate-test-data-using-numpy"]], "Generation": [[14, "generation"]], "Get a Quick Look at the Beginning/End of your DataFrame": [[18, "get-a-quick-look-at-the-beginning-end-of-your-dataframe"]], "Getting Started with GitHub": [[25, "getting-started-with-github"]], "Getting Started with Jupyter": [[26, "getting-started-with-jupyter"]], "Getting Started with Python": [[27, "getting-started-with-python"]], "Git Branches": [[30, "git-branches"]], "Git Feature Branch Workflow": [[37, "git-feature-branch-workflow"]], "Git commands mini-reference": [[28, "git-commands-mini-reference"]], "Git is a distributed VCS": [[28, "git-is-a-distributed-vcs"]], "Git is not GitHub": [[28, "git-is-not-github"]], "GitHub Repositories": [[35, "github-repositories"]], "GitHub Workflows": [[34, "github-workflows"], [37, "github-workflows"]], "GitHub notifications": [[36, "github-notifications"]], "GitHub secure key generation": [[36, "github-secure-key-generation"]], "GitHub workflows": [[37, "id1"]], "GitHub\u2019s distributed repositories": [[35, "githubs-distributed-repositories"]], "Giving NumPy room for broadcasting": [[15, "giving-numpy-room-for-broadcasting"]], "Going back in time": [[28, "going-back-in-time"]], "Gridded Data": [[5, "gridded-data"]], "GroupBy: Split, Apply, Combine": [[20, "groupby-split-apply-combine"]], "HTTPS vs SSH: Either is fine!": [[36, null]], "Have you forked the repository?": [[30, null]], "High level languages": [[47, "high-level-languages"]], "High-level libraries": [[16, "high-level-libraries"]], "Histograms": [[10, "histograms"]], "Histograms, Pie Charts, and Animations": [[10, "histograms-pie-charts-and-animations"]], "How to Cite This Book": [[49, "how-to-cite-this-book"]], "How to Use This Book": [[50, "how-to-use-this-book"]], "How to Use This Page": [[1, "how-to-use-this-page"]], "Imports": [[1, "imports"], [3, "imports"], [5, "imports"], [7, "imports"], [9, "imports"], [10, "imports"], [11, "imports"], [13, "imports"], [14, "imports"], [15, "imports"], [18, "imports"], [20, "imports"], [21, "imports"], [22, "imports"], [23, "imports"]], "In this section": [[8, "in-this-section"]], "Indexing": [[14, "indexing"]], "Indexing a Series": [[18, "indexing-a-series"]], "Indexing and subsetting arrays": [[14, "indexing-and-subsetting-arrays"]], "Indexing arrays with boolean values": [[13, "indexing-arrays-with-boolean-values"]], "Indexing using arrays of indices": [[13, "indexing-using-arrays-of-indices"]], "Info": [[1, null], [3, null], [3, null], [3, null], [3, null], [5, null], [5, null], [7, null], [11, null], [11, null], [11, null], [11, null], [13, null], [13, null], [14, null], [18, null], [18, null], [18, null], [18, null], [18, null], [20, null], [20, null], [23, null], [23, null], [23, null], [23, null], [42, null]], "Initialize the DataArray with complete coordinate info": [[23, "initialize-the-dataarray-with-complete-coordinate-info"]], "Inspect a git repository with git status": [[28, "inspect-a-git-repository-with-git-status"]], "Install pre-commit hooks": [[0, "install-pre-commit-hooks"]], "Installing Conda": [[24, "installing-conda"]], "Installing Python in Jupyter": [[41, "installing-python-in-jupyter"]], "Installing Python in the Terminal": [[46, "installing-python-in-the-terminal"]], "Installing and Managing Python with Conda": [[24, "installing-and-managing-python-with-conda"]], "Installing and Running Python": [[40, "installing-and-running-python"]], "Installing and managing Python with Conda": [[40, "installing-and-managing-python-with-conda"]], "Integers (int)": [[45, "integers-int"]], "Interacting with Jupyter Books locally": [[50, "interacting-with-jupyter-books-locally"]], "Interacting with Jupyter Notebooks in the cloud via Binder": [[50, "interacting-with-jupyter-notebooks-in-the-cloud-via-binder"]], "Intermediate NumPy": [[13, "intermediate-numpy"]], "Interpolation": [[23, "interpolation"]], "Interpreted languages": [[47, "interpreted-languages"]], "Introducing the DataArray and Dataset": [[23, "introducing-the-dataarray-and-dataset"]], "Introduction to Cartopy": [[3, "introduction-to-cartopy"]], "Introduction to Pandas": [[18, "introduction-to-pandas"]], "Introduction to Xarray": [[23, "introduction-to-xarray"]], "Investigating Extreme Values": [[18, "investigating-extreme-values"]], "Issues": [[33, "issues"]], "Issues and Discussions": [[33, "issues-and-discussions"]], "Issues with preservation of attributes": [[23, "issues-with-preservation-of-attributes"]], "Jupyter Hub": [[26, "jupyter-hub"]], "Jupyter Kernels": [[26, "jupyter-kernels"]], "Jupyter Lab": [[26, "jupyter-lab"]], "Jupyter Notebooks": [[26, "jupyter-notebooks"], [40, "jupyter-notebooks"]], "JupyterLab": [[42, "jupyterlab"]], "Keeping your dev environment up to date": [[0, "keeping-your-dev-environment-up-to-date"]], "Labels and Grid Lines": [[11, "labels-and-grid-lines"]], "Lambert Azimuthal Equal Area Projection": [[3, "lambert-azimuthal-equal-area-projection"]], "Last Section": [[1, "last-section"]], "Learn More": [[21, "learn-more"]], "Learning Objectives": [[21, "learning-objectives"]], "Left Sidebar": [[42, "left-sidebar"]], "Lists": [[45, "lists"]], "Local Execution Model": [[26, "local-execution-model"]], "Look ahead/behind": [[15, "look-ahead-behind"]], "Loops in Python": [[45, "loops-in-python"]], "Magics": [[42, "magics"]], "Make changes and commit": [[37, "make-changes-and-commit"]], "Make some changes": [[28, "make-some-changes"]], "Make the edits": [[29, "make-the-edits"]], "Make time and space coordinates": [[23, "make-time-and-space-coordinates"]], "Making a Pull Request": [[37, "making-a-pull-request"], [37, "id2"]], "Manipulate a dask.array object as you would a numpy array": [[21, "manipulate-a-dask-array-object-as-you-would-a-numpy-array"]], "Markdown Cells": [[42, "markdown-cells"]], "Masking Data": [[20, "masking-data"]], "Matplotlib": [[8, "matplotlib"]], "Matplotlib Basics": [[11, "matplotlib-basics"]], "Merging Branches": [[30, "merging-branches"]], "Mollweide Projection (often used with global satellite mosaics)": [[3, "mollweide-projection-often-used-with-global-satellite-mosaics"]], "Mosaic Subplots": [[9, "mosaic-subplots"]], "Multidimensional slicing": [[14, "multidimensional-slicing"]], "Navigate to Your Fork": [[34, "navigate-to-your-fork"]], "Nearest-neighbor sampling": [[23, "nearest-neighbor-sampling"]], "NetCDF and CF: The Basics": [[5, "netcdf-and-cf-the-basics"]], "No experience necessary!": [[39, "no-experience-necessary"]], "Note:": [[3, null]], "NumPy": [[12, "numpy"]], "NumPy Basics": [[14, "numpy-basics"]], "NumPy Broadcasting": [[15, "numpy-broadcasting"]], "NumPy-like selection": [[23, "numpy-like-selection"]], "Object Oriented languages": [[47, "object-oriented-languages"]], "Observational Data": [[5, "observational-data"]], "One more selection method: .loc": [[23, "one-more-selection-method-loc"]], "Open a Draft Pull Request": [[34, "open-a-draft-pull-request"]], "Open source": [[47, "open-source"]], "Opening a Pull Request": [[34, "opening-a-pull-request"]], "Opening a Pull Request on GitHub": [[34, "opening-a-pull-request-on-github"]], "Opening netCDF data": [[23, "opening-netcdf-data"]], "Organization of Pythia Foundations": [[50, "organization-of-pythia-foundations"]], "Other IDEs": [[40, "other-ides"]], "Other considerations": [[9, "other-considerations"]], "Other high level computation functionality": [[20, "other-high-level-computation-functionality"]], "Overview": [[1, "overview"], [3, "overview"], [5, "overview"], [7, "overview"], [9, "overview"], [10, "overview"], [11, "overview"], [13, "overview"], [14, "overview"], [15, "overview"], [16, "overview"], [18, "overview"], [20, "overview"], [22, "overview"], [23, "overview"], [24, "overview"], [26, "overview"], [40, "overview"], [41, "overview"], [42, "overview"], [44, "overview"], [46, "overview"]], "Overview:": [[28, "overview"], [29, "overview"], [30, "overview"], [31, "overview"], [32, "overview"], [33, "overview"], [34, "overview"], [35, "overview"], [36, "overview"], [37, "overview"], [38, "overview"], [39, "overview"]], "Pandas": [[17, "pandas"]], "Parallel and lazy computation using dask.array with Xarray": [[21, "parallel-and-lazy-computation-using-dask-array-with-xarray"]], "Parsing lightning data timestamps with the datetime.strptime method": [[7, "parsing-lightning-data-timestamps-with-the-datetime-strptime-method"]], "Perform calculations with NumPy": [[14, "perform-calculations-with-numpy"]], "Pie Charts": [[10, "pie-charts"]], "Plotting 2-D data": [[23, "plotting-2-d-data"]], "Plotting with Xarray": [[23, "plotting-with-xarray"]], "Preamble": [[50, "preamble"]], "Prerequisites": [[1, "prerequisites"], [3, "prerequisites"], [5, "prerequisites"], [7, "prerequisites"], [9, "prerequisites"], [10, "prerequisites"], [11, "prerequisites"], [13, "prerequisites"], [14, "prerequisites"], [15, "prerequisites"], [18, "prerequisites"], [20, "prerequisites"], [21, "prerequisites"], [22, "prerequisites"], [23, "prerequisites"], [24, "prerequisites"], [26, "prerequisites"], [28, "prerequisites"], [29, "prerequisites"], [30, "prerequisites"], [31, "prerequisites"], [32, "prerequisites"], [33, "prerequisites"], [34, "prerequisites"], [35, "prerequisites"], [36, "prerequisites"], [37, "prerequisites"], [38, "prerequisites"], [39, "prerequisites"], [40, "prerequisites"], [41, "prerequisites"], [42, "prerequisites"], [46, "prerequisites"]], "Print Time with a Different Time Zone": [[7, "print-time-with-a-different-time-zone"]], "Project Pythia Notebook Template": [[1, "project-pythia-notebook-template"], [1, "id1"]], "Providing a Pull Request Review": [[38, "providing-a-pull-request-review"]], "Pull Request Features": [[34, "pull-request-features"]], "Pull Requests": [[30, null]], "Push the feature branch to the remote repository": [[37, "push-the-feature-branch-to-the-remote-repository"]], "Putting this all together": [[11, "putting-this-all-together"]], "Pythia Foundations": [[48, "pythia-foundations"]], "Pythia Foundations Contributor\u2019s Guide": [[0, "pythia-foundations-contributors-guide"]], "Python in Jupyter": [[41, "python-in-jupyter"]], "Python in the Terminal": [[46, "python-in-the-terminal"]], "Quick Plots of Your Data": [[18, "quick-plots-of-your-data"]], "Quickstart: Zero to Python": [[45, "quickstart-zero-to-python"]], "Raw Cells": [[42, "raw-cells"]], "Reading and writing dates and times": [[7, "reading-and-writing-dates-and-times"]], "Reading data with Dask and Xarray": [[21, "reading-data-with-dask-and-xarray"]], "References": [[28, "references"], [31, "references"], [32, "references"], [33, "references"], [34, "references"], [35, "references"], [36, "references"], [37, "references"], [39, "references"]], "Register for a free GitHub account": [[39, "register-for-a-free-github-account"]], "Remote Execution Model": [[26, "remote-execution-model"]], "Rendering Equations": [[9, "rendering-equations"]], "Replacing values": [[13, "replacing-values"]], "Requesting Pull Request Reviews": [[38, "requesting-pull-request-reviews"]], "Resampling": [[18, "resampling"]], "Resources and References": [[3, "resources-and-references"], [5, "resources-and-references"], [7, "resources-and-references"], [11, "resources-and-references"], [18, "resources-and-references"], [20, "resources-and-references"], [22, "resources-and-references"], [24, "resources-and-references"], [38, "resources-and-references"], [40, "resources-and-references"], [41, "resources-and-references"], [46, "resources-and-references"]], "Resources and references": [[1, "resources-and-references"], [9, "resources-and-references"], [13, "resources-and-references"], [14, "resources-and-references"], [15, "resources-and-references"], [21, "resources-and-references"], [23, "resources-and-references"], [26, "resources-and-references"], [30, "resources-and-references"], [42, "resources-and-references"], [45, "resources-and-references"]], "Reviewing Pull Requests": [[38, "reviewing-pull-requests"]], "Run this code from your browser!": [[45, "run-this-code-from-your-browser"]], "Running JupyterLab Notebooks": [[42, "running-jupyterlab-notebooks"]], "Running Pythia Foundations examples": [[50, "running-pythia-foundations-examples"]], "Running Python in Jupyter": [[41, "running-python-in-jupyter"]], "Running Python in the Terminal": [[46, "running-python-in-the-terminal"]], "Safety tip on synchronization": [[37, "safety-tip-on-synchronization"], [37, "id3"]], "Saving an Animation": [[10, "saving-an-animation"]], "Saving your notebook and exiting": [[41, "saving-your-notebook-and-exiting"]], "Scatterplot": [[11, "scatterplot"]], "See how many days have elapsed since the strike:": [[7, "see-how-many-days-have-elapsed-since-the-strike"]], "Select the Ni\u00f1o 3.4 region": [[22, "select-the-nino-3-4-region"]], "Selecting with .sel()": [[23, "selecting-with-sel"]], "Set Up": [[42, "set-up"]], "Set useful attributes": [[23, "set-useful-attributes"]], "Setting Up a New Notebook": [[1, "setting-up-a-new-notebook"]], "Setting up a Remote Branch": [[30, "setting-up-a-remote-branch"]], "Shared Colorbars": [[9, "shared-colorbars"]], "Shell Commands": [[42, "shell-commands"]], "Shutting Down": [[42, "shutting-down"]], "Simple visualization with .plot()": [[23, "simple-visualization-with-plot"]], "Slices": [[14, "slices"]], "Slicing along coordinates": [[23, "slicing-along-coordinates"]], "Slicing and Dicing the DataFrame and Series": [[18, "slicing-and-dicing-the-dataframe-and-series"]], "Some basic graphics with Matplotlib": [[45, "some-basic-graphics-with-matplotlib"]], "Some core terminology": [[7, "some-core-terminology"]], "Some other git commands you\u2019ll want to know": [[28, "some-other-git-commands-youll-want-to-know"]], "Special Variables": [[42, "special-variables"]], "Specifying Chunks": [[21, null]], "Split": [[20, "split"]], "Stage and commit our changes": [[28, "stage-and-commit-our-changes"]], "Staging": [[28, "staging"]], "Start with the main branch": [[37, "start-with-the-main-branch"]], "Station IDs": [[5, "station-ids"]], "Stay tuned!": [[39, null]], "Step 1: Initial State": [[10, "step-1-initial-state"]], "Step 2: Animation Progression Function": [[10, "step-2-animation-progression-function"]], "Step 3: Using FuncAnimation": [[10, "step-3-using-funcanimation"]], "Stop spamming me, GitHub!": [[36, "stop-spamming-me-github"]], "Stopping & Restarting the Kernel": [[42, "stopping-restarting-the-kernel"]], "Subplots": [[11, "subplots"]], "Subsetting Using the Datetime Column": [[18, "subsetting-using-the-datetime-column"]], "Subsetting and selection by coordinate values": [[23, "subsetting-and-selection-by-coordinate-values"]], "Subsetting the Dataset": [[23, "subsetting-the-dataset"]], "Success": [[1, null]], "Suggest a change": [[29, "suggest-a-change"]], "Summary": [[1, "summary"], [3, "summary"], [5, "summary"], [7, "summary"], [9, "summary"], [10, "summary"], [11, "summary"], [13, "summary"], [14, "summary"], [15, "summary"], [18, "summary"], [20, "summary"], [21, "summary"], [22, "summary"], [23, "summary"], [24, "summary"], [26, "summary"], [28, "summary"], [29, "summary"], [30, "summary"], [31, "summary"], [32, "summary"], [33, "summary"], [34, "summary"], [35, "summary"], [36, "summary"], [37, "summary"], [38, "summary"], [39, "summary"], [40, "summary"], [41, "summary"], [42, "summary"], [46, "summary"]], "Switch Branches": [[34, "switch-branches"]], "Switching Branches": [[30, "switching-branches"]], "Terminal": [[40, "terminal"]], "Terminals": [[42, "terminals"]], "Testing a bigger calculation": [[21, "testing-a-bigger-calculation"]], "Text Editor": [[42, "text-editor"]], "The Dataset: a container for DataArrays with shared coordinates": [[23, "the-dataset-a-container-for-dataarrays-with-shared-coordinates"]], "The JupyterLab Interface": [[42, "the-jupyterlab-interface"]], "The Main Branch": [[30, null]], "The Ni\u00f1o 3.4 Index": [[22, "the-nino-3-4-index"]], "The Normalize Class": [[9, "the-normalize-class"]], "The pandas DataFrame\u2026": [[18, "the-pandas-dataframe"]], "The pandas Series\u2026": [[18, "the-pandas-series"]], "Things to try": [[32, "things-to-try"]], "Things to try:": [[35, "things-to-try"]], "This example is": [[1, "this-example-is"]], "Time Versus Datetime modules": [[7, "time-versus-datetime-modules"]], "Time Zone Naive Versus Time Zone Aware datetime Objects": [[7, "time-zone-naive-versus-time-zone-aware-datetime-objects"]], "Time to make some changes": [[28, "time-to-make-some-changes"]], "Times and Dates in Python": [[7, "times-and-dates-in-python"]], "Tip": [[35, null], [35, null]], "Tip:": [[36, null], [36, null], [36, null]], "Topics": [[27, "topics"], [44, "topics"]], "Tutorials": [[16, "tutorials"]], "Updating Your Branches": [[30, "updating-your-branches"]], "Use lower-resolution shapefiles from Natural Earth": [[3, "use-lower-resolution-shapefiles-from-natural-earth"]], "Useful Conda commands": [[24, "useful-conda-commands"]], "Using .iloc and .loc to index": [[18, "using-iloc-and-loc-to-index"]], "Using add_subplot to create two different subplots within the figure": [[11, "using-add-subplot-to-create-two-different-subplots-within-the-figure"]], "Using ax.set_xlim and ax.set_ylim to control the plot boundaries": [[11, "using-ax-set-xlim-and-ax-set-ylim-to-control-the-plot-boundaries"]], "Using axes to slice arrays": [[13, "using-axes-to-slice-arrays"]], "Using broadcasting to implicitly loop over data": [[15, "using-broadcasting-to-implicitly-loop-over-data"]], "Using sharex and sharey to share plot limits": [[11, "using-sharex-and-sharey-to-share-plot-limits"]], "Using where with a custom fill value": [[20, "using-where-with-a-custom-fill-value"]], "Using where with multiple conditions": [[20, "using-where-with-multiple-conditions"]], "Using where with one condition": [[20, "using-where-with-one-condition"]], "Vectorize calculations to avoid explicit loops": [[15, "vectorize-calculations-to-avoid-explicit-loops"]], "Version control systems (VCS)": [[39, "version-control-systems-vcs"]], "Viewing the commit history with git log": [[28, "viewing-the-commit-history-with-git-log"]], "Visualize the computed Ni\u00f1o 3.4 index": [[22, "visualize-the-computed-nino-3-4-index"]], "Warning": [[1, null], [3, null], [13, null], [14, null], [14, null], [18, null], [42, null]], "Ways to View a Pull Request": [[38, "ways-to-view-a-pull-request"]], "What are Git branches?": [[30, "what-are-git-branches"]], "What are Issues and Discussions?": [[33, "what-are-issues-and-discussions"]], "What are Packages?": [[24, "what-are-packages"]], "What are some examples of repositories?": [[35, "what-are-some-examples-of-repositories"]], "What is GitHub?": [[39, "what-is-github"], [39, "id1"]], "What is UTC?": [[7, "what-is-utc"]], "What is Unix Time?": [[7, "what-is-unix-time"]], "What is a GitHub repository?": [[35, "what-is-a-github-repository"]], "What is a Pull Request Review?": [[38, "what-is-a-pull-request-review"]], "What is a Pull Request?": [[34, "what-is-a-pull-request"]], "What is broadcasting?": [[15, "what-is-broadcasting"]], "What is git?": [[28, "what-is-git"]], "What is version control (and why should we care)?": [[28, "what-is-version-control-and-why-should-we-care"]], "What now?": [[45, "what-now"]], "What to Look for When Reviewing": [[38, "what-to-look-for-when-reviewing"]], "What\u2019s Next": [[10, "whats-next"], [13, "whats-next"]], "What\u2019s Next?": [[3, "whats-next"], [5, "whats-next"], [7, "whats-next"], [11, "whats-next"], [18, "whats-next"], [24, "whats-next"], [28, "whats-next"], [30, "whats-next"], [31, "whats-next"], [32, "whats-next"], [33, "whats-next"], [34, "whats-next"], [35, "whats-next"], [36, "whats-next"], [37, "whats-next"], [38, "whats-next"], [39, "whats-next"], [40, "whats-next"], [41, "whats-next"], [46, "whats-next"]], "What\u2019s next": [[15, "whats-next"]], "What\u2019s next?": [[1, "whats-next"], [14, "whats-next"], [20, "whats-next"], [23, "whats-next"], [26, "whats-next"], [42, "whats-next"]], "What\u2019s the difference?": [[21, "whats-the-difference"]], "Why Matplotlib?": [[8, "why-matplotlib"]], "Why Python?": [[47, "why-python"]], "Why the difference?": [[21, "why-the-difference"]], "Windows users": [[32, null]], "Working with the Git Feature Branch Workflow": [[37, "working-with-the-git-feature-branch-workflow"]], "Wrap the array: first attempt": [[23, "wrap-the-array-first-attempt"]], "Writing the field": [[5, "writing-the-field"]], "Xarray": [[19, "xarray"]], "Xarray data structures are first-class dask collections": [[21, "xarray-data-structures-are-first-class-dask-collections"]], "Your first content section": [[1, "your-first-content-section"]], "Your second content section": [[1, "your-second-content-section"]], "a quick demonstration": [[1, "a-quick-demonstration"]], "arange": [[14, "arange"]], "dask.array contains these algorithms": [[21, "dask-array-contains-these-algorithms"]], "datetime module": [[7, "datetime-module"]], "header levels": [[1, "header-levels"]], "linspace": [[14, "linspace"]], "of further and further": [[1, "of-further-and-further"]], "time module": [[7, "time-module"]]}, "docnames": ["appendix/how-to-contribute", "appendix/template", "core/cartopy", "core/cartopy/cartopy", "core/data-formats", "core/data-formats/netcdf-cf", "core/datetime", "core/datetime/datetime", "core/matplotlib", "core/matplotlib/annotations-colorbars-layouts", "core/matplotlib/histograms-piecharts-animation", "core/matplotlib/matplotlib-basics", "core/numpy", "core/numpy/intermediate-numpy", "core/numpy/numpy-basics", "core/numpy/numpy-broadcasting", "core/overview", "core/pandas", "core/pandas/pandas", "core/xarray", "core/xarray/computation-masking", "core/xarray/dask-arrays-xarray", "core/xarray/enso-xarray", "core/xarray/xarray-intro", "foundations/conda", "foundations/getting-started-github", "foundations/getting-started-jupyter", "foundations/getting-started-python", "foundations/github/basic-git", "foundations/github/contribute-to-pythia", "foundations/github/git-branches", "foundations/github/github-advanced", "foundations/github/github-cloning-forking", "foundations/github/github-issues", "foundations/github/github-pull-request", "foundations/github/github-repos", "foundations/github/github-setup-advanced", "foundations/github/github-workflows", "foundations/github/review-pr", "foundations/github/what-is-github", "foundations/how-to-run-python", "foundations/jupyter", "foundations/jupyterlab", "foundations/markdown", "foundations/overview", "foundations/quickstart", "foundations/terminal", "foundations/why-python", "landing-page", "preamble/how-to-cite", "preamble/how-to-use"], "envversion": {"sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinxcontrib.bibtex": 9}, "filenames": ["appendix/how-to-contribute.md", "appendix/template.ipynb", "core/cartopy.md", "core/cartopy/cartopy.ipynb", "core/data-formats.md", "core/data-formats/netcdf-cf.ipynb", "core/datetime.md", "core/datetime/datetime.ipynb", "core/matplotlib.md", "core/matplotlib/annotations-colorbars-layouts.ipynb", "core/matplotlib/histograms-piecharts-animation.ipynb", "core/matplotlib/matplotlib-basics.ipynb", "core/numpy.md", "core/numpy/intermediate-numpy.ipynb", "core/numpy/numpy-basics.ipynb", "core/numpy/numpy-broadcasting.ipynb", "core/overview.md", "core/pandas.md", "core/pandas/pandas.ipynb", "core/xarray.md", "core/xarray/computation-masking.ipynb", "core/xarray/dask-arrays-xarray.ipynb", "core/xarray/enso-xarray.ipynb", "core/xarray/xarray-intro.ipynb", "foundations/conda.md", "foundations/getting-started-github.md", "foundations/getting-started-jupyter.ipynb", "foundations/getting-started-python.md", "foundations/github/basic-git.md", "foundations/github/contribute-to-pythia.md", "foundations/github/git-branches.md", "foundations/github/github-advanced.md", "foundations/github/github-cloning-forking.md", "foundations/github/github-issues.md", "foundations/github/github-pull-request.md", "foundations/github/github-repos.md", "foundations/github/github-setup-advanced.md", "foundations/github/github-workflows.md", "foundations/github/review-pr.md", "foundations/github/what-is-github.md", "foundations/how-to-run-python.md", "foundations/jupyter.md", "foundations/jupyterlab.ipynb", "foundations/markdown.md", "foundations/overview.md", "foundations/quickstart.ipynb", "foundations/terminal.md", "foundations/why-python.md", "landing-page.md", "preamble/how-to-cite.md", "preamble/how-to-use.md"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [8, 9, 12, 16, 19, 22, 25, 29, 44, 45, 47, 50], "0": [3, 5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 21, 22, 23, 24, 32, 42, 45, 49], "00": [5, 7, 14, 18, 20, 21, 22, 23], "000": 21, "000000": 18, "000000000": 23, "00000000e": 14, "000003814697266earth_radiu": 23, "000003814697266longitude_of_central_meridian": 23, "00000762939453standard_parallel": 23, "0001": [20, 22], "0002319812774658": 7, "000744e": 23, "0007539": 20, "0007784": 20, "000791": 20, "0008452": 20, "000896": 20, "000933": 20, "001": 21, "001e": 23, "00244166e": 21, "003": [20, 21, 22], "003e": 23, "00438624e": 21, "00495084e": 21, "004e": 23, "005718": 5, "006453e": 23, "0078": 23, "0078125": 23, "00791261": 23, "00821090e": 21, "008482": 22, "009292": 13, "00933259": 23, "00998672": 23, "00axi": 20, "00parent_variant_label": [20, 22], "00xarrai": 20, "01": [5, 7, 9, 14, 18, 20, 21, 22, 23, 49], "01012011": 15, "011contact": [20, 22], "01276068": 13, "012806e": 23, "01307774": 20, "01314461": 20, "01320827": 20, "01326215": 20, "01326arrai": 20, "01331": 20, "0133127": 20, "01336": 20, "0133611": 20, "01341": 20, "01345": 20, "01394984": 23, "01401365": 20, "01401687": 20, "01402068": 20, "01402271": 20, "01403356": 20, "01404917": 20, "01406252": 20, "014107": 22, "01412642": 20, "0142287": 20, "01432824": 20, "01442552": 20, "0145216": 20, "01476014": 20, "01491845": 20, "015000": 18, "01506364": 20, "01520228": 20, "0153321": 20, "01544082": 20, "01544118": 20, "01544321": 20, "01544476": 20, "0154475": 20, "01545036": 20, "01545238": 20, "01635301": 20, "01636147": 20, "01637137": 20, "01638114": 20, "01639009": 20, "01639998": 20, "01680517": 20, "01687253": 20, "01693714": 20, "0169601": 20, "01698041": 20, "01699162": 20, "0170424": 20, "01709175": 20, "0171173": 20, "01713431": 20, "01719594": 20, "0172386": 20, "01727939": 20, "0172919": 20, "0173173": 20, "0173297": 20, "0173445": 20, "0173862": 20, "01742125": 20, "01748013": 20, "01755834": 20, "01757395": 20, "01766813": 20, "0176847": 20, "01865": 22, "019159e": 23, "01t00": 23, "02": [5, 18, 20, 21, 22, 23], "025": [9, 11], "02521323": 23, "02698113": 23, "02997164e": 21, "029993": 22, "02arrai": 23, "02t00": 23, "02t04": [20, 22], "03": [7, 16, 18, 20, 21, 22, 23], "030000": 18, "03008106": 23, "031322": 22, "03169049e": 21, "03318795": 23, "03448276": 14, "034894": 18, "03531027": 23, "03576453": 13, "03737484": 23, "03741839": 23, "03811793": 13, "038165": 20, "0383828": 20, "0386322": 20, "0388296": 20, "038916e": 23, "0389647": 20, "038e": 20, "0390673": 20, "039428": 18, "039894": 23, "03arrai": 23, "03standard_nam": 23, "03t00": 23, "03unit": 23, "03xarrai": 23, "04": [7, 16, 18, 20, 21, 22, 23], "042742": 22, "0429": 23, "042e": 20, "043zgeospatial_lat_min": 23, "04514872": 23, "045269e": 23, "04673850e": 21, "04724036": 15, "0494263": 20, "0494475": 20, "0494578": 20, "0495107": 20, "0495603": 20, "049596": 20, "04e": 20, "04t00": 23, "04t23": 23, "05": [5, 7, 9, 14, 18, 20, 21, 22, 23, 49], "0500": 28, "051622e": 23, "051643": 22, "05282372": 13, "052e": 23, "053625": 22, "05421647e": 21, "05467373e": 21, "05528466e": 21, "05531947e": 21, "057854": 22, "05791578e": 21, "05830934": 23, "059557": 22, "059725": 18, "05984232": 13, "05arrai": [20, 23], "05t00": 23, "06": [5, 7, 18, 20, 21, 22], "060708": 23, "061314": 22, "06230118": 23, "063004": 18, "06352220e": 21, "063814": 18, "0642793": 20, "0644639": 20, "0646174": 20, "064733": 20, "0648024": 20, "0648358": 20, "06543740e": 21, "06595218e": 21, "065e": 20, "066883": 22, "06689993e": 21, "06699408": 23, "067299": 22, "06743424": 23, "06837841": 23, "06859236": 23, "06892246e": 21, "06896552": 14, "06954335": 13, "06976361": 23, "07": [5, 7, 16, 18, 20, 21, 22, 23], "070000": 18, "07040211e": 21, "07106781e": 14, "071379e": 23, "07199963": 13, "07401505e": 21, "07572989": 13, "07627581e": 21, "07629059": 13, "07677966101695": 18, "076780": 18, "07713979": 23, "077732e": 23, "077e": 20, "078": 23, "08": [18, 20, 21, 22, 23], "08085452": 23, "081787109375": 23, "0832636": 20, "08328324": 23, "08345653e": 21, "0834875": 20, "08359511e": 21, "08370890e": 21, "0837412": 20, "0839543": 20, "08398": 23, "08406243": 23, "084085e": 23, "0841148": 20, "0842566": 20, "084e": 23, "085205078125": 23, "0859375": 23, "086039": 22, "08613936": 23, "08700949e": 21, "08716762e": 21, "088e": 20, "09": [7, 18, 20, 21, 22, 28], "090641e": 23, "09095729e": 21, "09153294": 23, "09161988e": 21, "091969": 23, "09308323": 15, "09396623e": 21, "094604": 22, "09533591": 13, "09552107": 13, "09599544": 13, "09798171e": 21, "09859197e": 21, "09958323": 15, "0_coordinatetransformtyp": 23, "0arrai": 23, "0branch_time_in_par": [20, 22], "0case_id": [20, 22], "0long_nam": 22, "0x7f003cb648c0": 3, "0x7f004cd08ad0": 3, "0x7f07e48a40e0": 9, "0x7f5055a98d40": 23, "0x7f5055ad1be0": 23, "0x7f505db3d9d0": 23, "0xarrai": 23, "1": [3, 5, 7, 9, 11, 13, 14, 15, 18, 20, 21, 22, 23, 31, 34, 37, 42, 45, 47], "10": [1, 3, 5, 7, 9, 11, 13, 14, 15, 18, 20, 21, 22, 23, 26, 42, 45, 49], "100": [5, 10, 13, 14, 15, 21, 22, 23, 32, 45], "1000": [5, 9, 11, 15, 21, 23, 42], "100000": 18, "1001": 23, "1002": 23, "100246": 22, "1003": 23, "1004": 23, "1005": 23, "1006": 23, "100644": [28, 37], "1007": 23, "1009": 23, "100_coordinateaxistyp": 23, "100grib1_level_desc": 23, "100x50": 13, "101": [5, 13, 21], "1012": 23, "102": [11, 13, 23], "10255586": 15, "10271": 22, "10344828": 14, "103842e": 23, "104733": 22, "105": [5, 11, 23], "10549575": 13, "105arrai": 23, "106": 21, "10635524": 14, "107": 23, "108": 11, "109": 23, "10933": 23, "10cell_method": 22, "10lon": 22, "10m": 3, "11": [3, 13, 14, 15, 18, 20, 21, 22, 23, 28, 45], "110": [11, 23], "110195e": 23, "11020096": 23, "110m": 3, "111": 11, "112194": 23, "11235988": 23, "11344716": 13, "114": 11, "11490009": 15, "115000": 18, "116548e": 23, "11664000": [20, 22], "116751e": 23, "116b": 23, "117": [11, 21], "11791423e": 21, "117e": 23, "118896": 22, "119": 23, "119303": 22, "11976794": 13, "11978830e": 21, "119x": 23, "11_l100": 23, "11_l100grib1_cent": 23, "11grib1_level_typ": 23, "11realm": [20, 22], "12": [5, 7, 13, 14, 15, 18, 20, 21, 22, 23], "120": [11, 22, 23], "12000189": 21, "120b": 20, "120w": 22, "123": 11, "12323400e": 14, "12414095": 23, "12465225e": 21, "125": [14, 23], "126": 11, "128kb": 23, "129": 11, "12arrai": 20, "12lat": 20, "12xarrai": 20, "13": [5, 7, 13, 14, 15, 18, 20, 21, 22, 23, 28], "130": 11, "13037": 23, "131": 23, "131generating_process_or_model": 23, "131grib1_paramet": 23, "132": 11, "13333333": 15, "13410458e": 21, "1341411": 13, "13464039": 23, "135": [11, 14], "136305e": 23, "136517": 22, "137": [15, 21], "137907": 22, "13793103": 14, "138": 11, "13standard_nam": 23, "13t00": 23, "14": [7, 13, 15, 18, 20, 21, 22, 28, 32, 45], "140": 3, "140000": 18, "140859e": 23, "141": 11, "14100": [20, 22], "1415926": 7, "14159265": 14, "141592653589793": 14, "142658e": 23, "142861e": 23, "1435589": 13, "144": [11, 33], "14435689e": 21, "145": 33, "1450": 23, "1450km": 23, "14584888": 23, "147": 11, "1476": 14, "14818369": 15, "14853765": 15, "14987726e": 21, "15": [3, 5, 7, 9, 10, 13, 14, 15, 18, 20, 21, 22, 23, 28, 32, 35, 39], "150": [5, 11, 23], "150000": 18, "150390625": 23, "1504": 23, "15062271e": 21, "15167985e": 21, "15175649": 13, "152500": 18, "15299831": 23, "153": [5, 11, 23], "15551677e": 21, "15576171875": 23, "15595587": 15, "15599074": 23, "156": [11, 33], "157152": 22, "157590": 18, "15772": 22, "15838308e": 21, "158524": 22, "15881672": 23, "158993": 22, "159": 11, "1591796875": 23, "1599731445312": 23, "15998672": 23, "15grib1_tablevers": 23, "15lat": 20, "15mb": 23, "16": [5, 7, 9, 11, 13, 14, 15, 18, 20, 21, 22, 23, 45], "160000": 18, "16039623e": 21, "16062611": 15, "160896": 22, "160b": 22, "162": 11, "16238302e": 21, "16337354e": 21, "16394984": 23, "16615351": 15, "16652571": 13, "166970e": 23, "167": 18, "168768e": 23, "168971e": 23, "16b": 23, "16h": 7, "17": [5, 7, 13, 14, 15, 18, 20, 21, 22, 24, 28], "170w": 22, "17129937e": 21, "17158": 22, "1716229655": 7, "17213341": 23, "17241379": 14, "175": [15, 23], "175121e": 23, "17521323": 23, "176163": 22, "17773618": 13, "17841121e": 21, "17856": 22, "18": [5, 7, 9, 13, 15, 18, 20, 21, 22, 23], "180": [3, 14, 20, 21, 22], "1806": 20, "180d2": [20, 22], "180dask": 21, "180lat": [20, 21], "180lon": [20, 21, 22], "180x360": [20, 22], "181": 3, "182": 23, "18216": 23, "182km": 23, "183": 21, "184": 7, "1850": [20, 22], "1876712": 20, "1879027": 20, "1881146": 20, "1883302": 20, "1885312": 20, "188714": 20, "18911136e": 21, "18m": 7, "19": [5, 13, 15, 18, 20, 21, 22, 23], "190": [20, 21, 22], "190000": 18, "19012654e": 21, "191": 22, "19197578e": 21, "192": [20, 22], "19295739": 23, "193": 22, "193079e": 23, "19310927e": 21, "194": 22, "19422355": 23, "195": 22, "1950": 22, "195081e": 23, "19514872": 23, "19572063": 13, "195834": 23, "196": [18, 22], "19635361": 23, "19683": 14, "197": 22, "1970": 7, "1979": 22, "19793004": 13, "198": 22, "19815861": 15, "1982": 18, "1983": 18, "1984": 18, "1985": 18, "1986": 18, "19862342e": 21, "1987": 18, "1988": 18, "1989": 18, "199": 22, "1990": 18, "1991": 18, "1992": 18, "1993": [18, 23], "1994": 18, "1995": 18, "1996": 18, "1997": 18, "19971009": 15, "1998": 18, "1999": 18, "19990503": 13, "1d": 10, "1d7b": [20, 22], "1descript": 23, "1e": [20, 21, 22, 23], "1f": 10, "1frequenc": [20, 22], "1institut": [20, 22], "1isobaric1": 23, "1kb": [20, 21, 22, 23], "1mb": [22, 23], "1product": [20, 22], "1standard_nam": 23, "1x1": [11, 20, 21, 22], "1y": [18, 23], "2": [3, 5, 7, 9, 11, 13, 14, 15, 18, 20, 21, 22, 30, 31, 32, 34, 37, 42, 45, 49], "20": [5, 7, 10, 13, 14, 15, 16, 18, 20, 21, 22, 24, 40, 41, 46], "200": [9, 10, 21, 22, 23], "2000": [15, 18, 20, 21, 22, 28], "2001": [18, 20, 21, 22], "2002": [18, 20, 21, 22], "2003": [18, 20, 21, 22], "2004": [18, 20, 21, 22], "2005": [16, 18, 20, 21, 22], "2006": [18, 20, 21, 22], "2007": [7, 18, 20, 21, 22], "2008": [18, 20, 21, 22], "2008125275": 5, "2009": [18, 20, 21, 22], "201": [20, 22], "2010": [18, 20, 21, 22], "2011": [18, 20, 21, 22], "2012": [18, 20, 21, 22], "201231e": 23, "2013": [18, 20, 21, 22], "2014": [18, 20, 21, 22], "2015": [16, 18, 22], "2016": [7, 18], "2017": [18, 20, 22], "2018": [18, 23], "2019": [5, 18, 20, 22], "202": 22, "2020": 18, "2021": [7, 18], "2022": 28, "2023": 49, "2024": [5, 7], "203": 22, "2032912": 20, "203617": 20, "203904": 20, "204": 22, "2041442": 20, "2043478": 20, "2045207": 20, "205": 22, "205000": 18, "205938": 22, "206": 22, "20689655": 14, "207": [21, 22], "207584e": 23, "208": 22, "20830934": 23, "209": 22, "209619": 18, "20th": [20, 22], "21": [5, 7, 13, 15, 18, 20, 21, 22, 23], "210": 22, "21042327e": 21, "211": 22, "212": [15, 22], "212313": 22, "212325": 23, "21237877": 23, "213": 22, "21393458e": 21, "214": 22, "214586": 22, "2147483647": 5, "21494821e": 21, "215": [22, 23], "216": [22, 23], "217": [22, 23], "217098": 22, "21743424": 23, "218": 22, "21839195e": 21, "21898060e": 21, "219": [22, 23], "219000": [20, 22], "219189e": 23, "21956182": 23, "21976361": 23, "22": [5, 13, 15, 18, 20, 21, 22], "220": 22, "2200": 5, "220537": 20, "2209656": 20, "221": 22, "221191e": 23, "2213385": 20, "2216525": 20, "221913": 20, "222": 22, "2221622": 20, "223": 22, "224": [22, 23], "224152": 23, "22455684e": 21, "2246": 23, "224609375": 23, "22464680e": 14, "22467": 23, "225": [14, 22, 23], "22502093e": 21, "226": 22, "227": 22, "22713979": 23, "22752": 22, "22757785e": 21, "2279": 23, "228": [21, 22, 23], "229": 22, "229736328125": 23, "23": [5, 13, 15, 18, 20, 21, 22], "230": 22, "231": 22, "232": 22, "23247920e": 21, "23271986e": 22, "23292344e": 21, "233": 22, "233154296875": 23, "233158901": 18, "23328324": 23, "23351938": 13, "23353464e": 21, "233694e": 23, "2339477539062": 23, "233e": 22, "234": [22, 23], "23422552e": 22, "2342439358": 5, "235": 22, "2352104": 23, "236": 22, "236293e": 23, "237": 22, "238": [22, 23], "239": 22, "24": [3, 5, 7, 9, 13, 14, 15, 18, 20, 21, 22], "240": [20, 22], "240047e": 23, "240423": 22, "24056526": 15, "24073197": 13, "24137931": 14, "2418856": 23, "242": 23, "242203": 22, "243": 23, "24365962e": 21, "245299e": 23, "24560049e": 21, "246": 23, "247301e": 23, "249": 23, "24979480e": 21, "24b": 23, "25": [5, 7, 10, 11, 13, 14, 15, 18, 20, 21, 22, 23, 45], "250": [5, 10, 15, 23], "2500": 10, "250171": 20, "25186164": 13, "25255": 22, "253": [21, 23], "253191": 22, "253344": 22, "254429": 23, "255": 21, "255kb": 23, "256025": 22, "256308e": 23, "25668992": 13, "257": [11, 23], "257241": 23, "259": 23, "25998651": 23, "259kb": [20, 21], "25arrai": 20, "26": [5, 7, 13, 14, 18, 20, 21, 22], "260": [11, 23], "26020096": 23, "2604716": 15, "262": 23, "262194": 23, "26309922": 23, "263966": 23, "264": 23, "26468701": 13, "265177": 22, "266": 23, "266157e": 23, "26636": 23, "26666667": 15, "268": 23, "268coordin": 23, "269": 23, "27": [5, 7, 13, 14, 15, 16, 18, 20, 21, 22], "270": 14, "270000": 18, "27098062e": 21, "271": [20, 23], "271409e": 23, "272": 23, "272510e": 23, "27253366": 15, "273": [18, 20, 23], "273411e": 23, "27350814": 13, "27369636": 13, "274": 23, "27414095": 23, "27430604e": 21, "27494489": 15, "275": [14, 23], "27586207": 14, "276": 23, "27662304": 13, "27673576": 23, "277": 23, "27770663": 23, "278": 23, "2782352": 23, "279": 23, "2797517": 13, "27pm": 7, "28": [5, 13, 15, 18, 20, 21, 22], "280": 23, "28051357": 15, "281": 23, "28181189e": 21, "282": 23, "2824": 23, "283": 23, "28318531": 14, "28351337e": 21, "284": 23, "28464039": 23, "285": [11, 23], "28521396e": 21, "2856": 23, "286": [20, 21, 22, 23], "287": [11, 15, 23], "28764634e": 21, "288": [11, 20, 22, 23], "28803017": 23, "28873531": 15, "2889": 23, "289": [11, 23], "28949319e": 21, "29": [5, 13, 18, 20, 21, 22, 23, 28], "290": [11, 23], "29006234e": 21, "291": [11, 23], "29100": 23, "292": [11, 23], "29206897e": 21, "2921": 23, "29215": 23, "29294158": 23, "292e": 23, "293": 11, "29328477": 15, "29361272": 13, "29435897": 23, "295": 11, "2954": 23, "296": 11, "297": 18, "297519e": 23, "2975ffd3": [20, 22], "298": [18, 23], "2986": 23, "298620e": 23, "298828125": 23, "29897771": 23, "299": [11, 18], "299521e": 23, "29experi": [20, 22], "29y": 23, "2activity_id": [20, 22], "2arrai": 23, "2lat": [20, 22], "2lon": 23, "2mb": 22, "2nd": [14, 32], "3": [3, 5, 7, 9, 11, 13, 14, 15, 16, 18, 20, 21, 23, 32, 40, 41, 42, 45], "30": [3, 5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 21, 22, 29, 30, 31, 32, 38], "300": [5, 11, 15, 18, 21, 22, 23], "300000": 18, "301": [11, 18], "3019": 23, "302": [11, 18], "30299831": 23, "303": 11, "3032": 23, "3037109375": 23, "304": 11, "304973e": 23, "305": 11, "3051": 23, "30599074": 23, "306": 11, "3064": 23, "307": 11, "30712526e": 21, "30712890625": 23, "30765026": 15, "3079223632812": 23, "308": [11, 21], "3080495102": 7, "3084": 23, "30885292e": 21, "309": 11, "3097": 23, "31": [5, 13, 14, 15, 18, 20, 21, 22, 28], "310": [11, 20], "31034483": 14, "311": 11, "3116": 23, "31180935": 13, "311e": 23, "312": 11, "3129": 23, "313": 11, "31396290e": 21, "315": [11, 14], "31553768": 23, "316": 11, "31602671": 13, "3162": 23, "31638413e": 21, "316456": 22, "31892": 23, "31937385e": 21, "3194": 23, "32": [5, 13, 15, 18, 20, 21, 22], "320": 11, "320x384": [20, 22], "32197396": 15, "32213341": 23, "322500": 18, "3227": 23, "32479701e": 21, "324e": 23, "325": 15, "32562303e": 21, "32587128e": 21, "3259": 23, "32703387": 23, "3271544": 23, "32840675e": 21, "3292": 23, "32b": 23, "33": [5, 13, 15, 18, 20, 21, 22, 23], "330000": 18, "331083e": 23, "33138908": 23, "3324": 23, "33570903": 23, "337436e": 23, "337622": 22, "33916721": 13, "33_l100grib1_cent": 23, "33f212ea4eb2": [20, 22], "33f212ea4eb2variable_id": [20, 22], "33grib1_level_typ": 23, "34": [5, 13, 14, 15, 18, 20, 21, 22], "343e": 23, "344204": 22, "34422355": 23, "34454636": 23, "34482759": 14, "34603239": 13, "34620461": 13, "346348": 22, "34635361": 23, "34673387e": 21, "34710544e": 21, "34853345e": 21, "349621": 18, "34971928": 13, "34_l100grib1_cent": 23, "34grib1_level_typ": 23, "35": [5, 13, 14, 15, 18, 20, 21, 22, 36], "350": [20, 21, 22, 23], "351": [20, 21, 22], "352": [20, 21, 22], "353": [20, 21, 22], "354": [20, 21, 22], "35480377": 15, "35495": 20, "355": [20, 21, 22], "3551": 20, "3552": 20, "3553": 20, "3554": 20, "356": [20, 21, 22], "35619449": 14, "357": [20, 21, 22], "358": [20, 21, 22], "359": [20, 21, 22], "35986": 20, "35992": 20, "35fcbd9": 28, "35fcbd991f911e170df550db58f74a082ba18b50": 28, "36": [5, 7, 13, 18, 20, 21, 22, 45], "360": [14, 20, 21, 22, 45], "36005": 20, "36014": 20, "36021141": 13, "36023": 20, "360coordin": [20, 22], "360dask": 21, "360kb": 22, "360lat": 21, "360nan": 20, "362": 15, "36237877": 23, "363546e": 23, "3643": 20, "36435": 20, "3644": 20, "36447": 20, "36453": 20, "3646": 20, "36500509e": 21, "36563657": 15, "36620821": 23, "367132": 22, "369899e": 23, "37": [13, 14, 15, 18, 20, 21, 22, 23], "370kb": 22, "372146": 23, "37255859375": 23, "37354": 23, "37356897e": 21, "37389473": 15, "374152": 23, "375": 14, "37573713": 13, "37759899": 13, "37931034": 14, "38": [7, 13, 15, 18, 20, 21, 22], "380000": 18, "3804": 18, "38047716": 15, "3805": 18, "3806": 18, "3807": 18, "3808": 18, "3809": 18, "3810": 18, "3811": 18, "381103515625": 23, "3812": 18, "3813": 18, "3814": 18, "3815": 18, "3816": 18, "3817": 18, "3819580078125": 23, "3827597": 23, "3833453": 23, "384x320": [20, 22], "38559992e": 21, "38628117e": 21, "38935776e": 21, "38954451": 23, "38955": 22, "39": [13, 15, 18, 20, 21, 22], "39154896": 15, "39160580e": 21, "3938": 20, "39383": 20, "39386": 20, "39392": 20, "394": 20, "39407": 20, "396009e": 23, "39736923": 15, "39853293": 13, "39869986": 23, "399": 21, "39932": 20, "39935": 20, "39938": 20, "39944": 20, "39948": 20, "3dim_2": 23, "3kb": [20, 21, 22], "3km": 5, "3lat": 23, "3lon": 23, "3mb": 20, "3rd": [10, 14, 32], "3x4": 14, "4": [2, 3, 5, 7, 9, 11, 13, 14, 15, 18, 20, 21, 23, 28, 37, 42, 45, 49], "40": [3, 5, 9, 10, 13, 15, 18, 20, 21, 22, 23, 28], "400": [15, 21, 23], "4000": 21, "400b": 22, "40191024e": 21, "402362e": 23, "403": 37, "4037": 20, "40372": 20, "40375": 20, "4067": 20, "40674": 20, "40677": 20, "40683": 20, "4069": 20, "40695": 20, "40846435": 23, "409": 21, "40956705": 23, "40998651": 23, "40b": 23, "41": [13, 14, 15, 18, 20, 21, 22, 23, 32], "410": 23, "4100": 18, "4101": 18, "4102": 18, "41024552e": 21, "4103": 18, "4104": 18, "41093": 22, "41293": 20, "41296": 20, "413": 20, "41306": 20, "4137931": 14, "415271e": 23, "41766": 20, "4177": 20, "41772": 20, "41788174": 23, "42": [5, 13, 15, 18, 20, 21, 22, 23], "421": 23, "42110462": 23, "422": 14, "42277612": 13, "423113": 22, "423643": 22, "424": 23, "424km": 23, "425608": 22, "4262014": 23, "42673576": 23, "42683512e": 21, "42796381": 13, "428": 21, "42815157": 23, "4282": 23, "42823121e": 21, "4283": 23, "428472e": 23, "42945122": 15, "43": [13, 15, 18, 20, 21, 22], "430000": 18, "431522": 18, "43329229": 13, "43333333": 15, "434825e": 23, "43544201e": 21, "437": 15, "43714744": 23, "44": [13, 14, 15, 18, 20, 21, 22], "44121771e": 21, "441381e": 23, "44173395e": 21, "44298507": 23, "44379078": 15, "44432682": 15, "44435897": 23, "444496717": 21, "44677734375": 23, "447067": 22, "44807": 23, "44827586": 14, "44927684": 13, "44929360e": 14, "45": [3, 13, 14, 15, 18, 20, 21, 22, 23, 28], "450": 23, "45044934e": 21, "450716": 22, "45143802e": 21, "4516497": 23, "45240262e": 21, "45312843e": 21, "45316175": 13, "454": 23, "45709": 22, "45710973e": 21, "45775806": 13, "4585206": 23, "46": [13, 18, 20, 21, 22, 23], "46048995": 13, "460935e": 23, "461096": 22, "46129523e": 21, "46173535": 23, "46576463": 13, "467": 18, "467288e": 23, "46746782e": 21, "467491e": 23, "468": [18, 21], "46838159": 15, "469": 18, "47": [13, 18, 20, 21, 22, 23, 32], "470": 18, "4707": 23, "470703125": 23, "471": 18, "471653": 22, "472": 18, "472462": 23, "475": [14, 15], "47526551": 23, "47630616e": 21, "476b": 23, "47703387": 23, "4771544": 23, "47831671": 23, "47888344": 23, "47998158": 13, "47e3": [20, 22], "47mb": [20, 21, 22], "48": [13, 14, 18, 20, 21, 22], "480b": 23, "48138908": 23, "48219268e": 21, "482593e": 23, "48275862": 14, "48326876e": 21, "485212": 22, "48534750e": 21, "486": 23, "48608715": 13, "48780379": 23, "49": [13, 18, 20, 21, 22, 28, 45], "491600e": 23, "493398e": 23, "493601e": 23, "49497791": 13, "49574616": 15, "49576423": 15, "49778714": 14, "49866491": 23, "49905207": 13, "499751e": 23, "4arrai": [20, 23], "4b": [20, 22, 23], "4bc074c": 28, "4c": 22, "4coordin": 23, "4e7": 45, "4kb": 22, "4mb": [20, 23], "5": [1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 21, 22, 23, 33, 37, 42, 45], "50": [3, 5, 7, 13, 15, 16, 18, 20, 21, 22, 23, 42], "500": [5, 15, 16, 21, 22, 23], "500000000000001": 45, "50053106e": 21, "50076397e": 21, "502608e": 23, "50323808e": 21, "50332158": 15, "5050": 23, "5065": [20, 22], "5083": 23, "509": 21, "50coordin": 22, "50m": 3, "51": [13, 14, 18, 20, 21, 22], "51055071": 23, "5107226": 23, "511": 23, "5115": 23, "512": 15, "512500": 18, "51431397e": 21, "51474577": 13, "5148": 23, "515000": 18, "51639367": 23, "51641586": 13, "51724138": 14, "517709e": 23, "51784389": 13, "5180": 23, "518036": 22, "518108": 22, "51829518": 13, "518kb": [20, 22], "519": 23, "51955058e": 21, "519711e": 23, "5198": 23, "52": [5, 13, 15, 18, 20, 21, 22], "52068086e": 21, "5213": 23, "52285356e": 21, "522951": 22, "52313905": 13, "5245": 23, "52571008e": 21, "525861e": 23, "5278": 23, "5281": 49, "52819725e": 21, "5283": 23, "52985255e": 21, "53": [13, 15, 18, 20, 21, 22], "53070256": 13, "5310": 23, "5311": 14, "532214e": 23, "5343": 23, "537773": 22, "53999203": 23, "54": [13, 15, 18, 20, 21, 22], "54034678": 13, "541596450": 18, "542961": 22, "543820e": 23, "544677734375": 23, "5447": 23, "545821e": 23, "54718": 23, "54749823": 15, "548095703125": 23, "55": [13, 14, 15, 18, 20, 21, 22, 23], "550": [15, 23], "551": 23, "55111512e": 14, "55172414": 14, "55270469": 23, "556413": 23, "558324e": 23, "56": [13, 15, 18, 20, 21, 22, 23], "560463": 22, "56121359e": 21, "56128856": 15, "56212": 22, "564677e": 23, "565000": 18, "56519847e": 21, "56709325": 23, "56726594": 23, "56758929": 23, "56788174": 23, "5693147": 23, "56967086": 13, "569714": 22, "569930e": 23, "57": [13, 15, 18, 20, 21, 22, 23], "570000": 18, "570702": 22, "57079633": 14, "571931e": 23, "572500": 18, "57487222": 15, "57569453": 13, "57644944": 15, "57776779": 23, "57779179": 23, "57815157": 23, "579597": 22, "5798199": 15, "58": [13, 14, 18, 20, 21, 22, 28], "58127846": 23, "582062": 22, "58304993e": 21, "58305895": 23, "583513": 22, "583574": 22, "584": 23, "58568845e": 21, "5862069": 14, "587": 15, "58714744": 23, "589234": 20, "58zdata_specs_vers": [20, 22], "59": [13, 15, 18, 20, 21, 22], "590082": 20, "59037269": 13, "590507": 20, "590787e": 23, "591869": 20, "591908": 20, "591917": 20, "592048": 20, "59247997": 23, "592894": 20, "593736": 20, "593815": 20, "59386363": 15, "594002": 20, "594081": 20, "594477": 20, "594949": 20, "595119": 20, "595245": 20, "595638": 20, "595716": 20, "595841": 20, "595944": 20, "596039e": 23, "596162": 20, "5968518": 15, "596858": 20, "596950": 20, "597140e": 23, "597189": 20, "597519": 20, "597807": 20, "597825": 20, "59798128e": 21, "59798385e": 21, "598041e": 23, "598177": 20, "598365": 20, "598850": 20, "598867": 20, "598896": 20, "598927": 20, "598995": 20, "599011": 20, "599373": 20, "599465": 20, "599490": 20, "599838": 20, "599917": 20, "599944": 20, "59997513e": 21, "5arrai": 21, "5axi": [20, 21, 22], "5dim_1": 23, "5lat": 23, "5n": 22, "5xarrai": [20, 21], "6": [5, 7, 11, 13, 14, 15, 18, 20, 21, 22, 23, 28, 37, 45], "60": [13, 15, 18, 20, 21, 22, 23, 34, 37], "600": [21, 23], "600000": 18, "600134": 20, "600215": 20, "600334": 20, "600490": 20, "600670": 20, "600784": 20, "600801": 20, "600808": 20, "600898": 20, "600970": 20, "601205": 20, "601256": 20, "601372": 20, "601706": 20, "601735": 20, "601754": 20, "602013": 20, "602034": 20, "602108": 20, "602155": 20, "602329": 20, "602349": 20, "60250603e": 21, "602514": 20, "602786": 20, "602821": 20, "602942": 20, "603077": 20, "603142": 20, "603380": 20, "603471": 20, "603527": 20, "603724": 20, "603727": 20, "603767": 20, "603790": 20, "603876": 20, "603930": 20, "603976": 20, "604": 23, "604046": 20, "604124": 22, "604144": 20, "604249": 20, "604386": 20, "60441922": 23, "604685": 20, "604733": 20, "604798": 20, "604814": 20, "604928": 20, "605144": 20, "605349": 20, "605376": 20, "605399": 20, "605488": 20, "605606": 20, "605644": 20, "605734": 20, "605750": 20, "605954": 20, "605970": 20, "606126": 20, "606152": 20, "606259": 20, "606303": 20, "606310": 20, "606512": 20, "606868": 20, "607196": 20, "607285": 20, "607379": 20, "607701": 20, "607702": 20, "607848": 20, "607942": 20, "6079996": 15, "608094": 20, "608588": 20, "608730": 20, "608737": 20, "608777": 20, "608906": 20, "609151": 20, "609220": 20, "609225": 20, "609250": 20, "609438": 20, "609509": 20, "609562": 20, "609645": 20, "609680": 20, "609764": 20, "609765": 20, "609922": 20, "61": [13, 18, 20, 21, 22], "610": 21, "610048": 20, "610105": 20, "610112": 20, "610190": 20, "610257": 20, "610375": 20, "610844": 20, "611091": 20, "611327": 20, "611434": 20, "611463": 20, "611722": 20, "611735": 20, "611808": 20, "611878": 20, "611881": 20, "611886": 20, "611901": 20, "612033": 20, "612056": 20, "612424": 20, "612615": 20, "612655": 20, "612935": 20, "613050": 20, "613369": 20, "613692": 20, "614213": 20, "614420": 20, "614610": 20, "614671": 20, "61524077e": 21, "615665": 20, "615765": 20, "615895": 20, "616": 23, "616295": 20, "616360": 20, "616563": 20, "616853": 20, "6172": 7, "617450": 20, "61865234375": 23, "618686": 20, "619367": 20, "619794": 20, "619830": 20, "619949": 20, "62": [13, 14, 18, 20, 21, 22], "620000": 18, "62068966": 14, "62146961e": 21, "6214702": 23, "6220703125": 23, "622149e": 23, "6224378": 23, "62285885": 23, "6229248046875": 23, "623085": 20, "623250e": 23, "623508": 20, "623783": 20, "624151e": 23, "625": [14, 15], "625064": 18, "626036": 20, "62616": 22, "626368": 22, "627005": 22, "62829465e": 21, "62831671": 23, "62933592e": 21, "629603e": 23, "62arrai": 23, "63": [13, 18, 20, 21, 22], "630000": 18, "63136928e": 21, "63192464": 23, "63274760e": 21, "63294478e": 21, "63517992e": 21, "6367470": 23, "6371000": 5, "63780379": 23, "63944660e": 21, "63cell_measur": 22, "64": [13, 18, 20, 21, 22, 45], "64103118e": 21, "64461": 22, "645485": 22, "64576884e": 21, "64611557e": 21, "64800": [20, 22], "649": 23, "65": [3, 13, 14, 18, 20, 21, 22], "650": 23, "65409572e": 21, "65517241": 14, "655407": 22, "65544128e": 21, "655713e": 23, "65980228e": 21, "66": [13, 18, 20, 21, 22], "66118": 23, "66141598e": 21, "662": 15, "662066e": 23, "66309": 23, "66387696e": 21, "66521063": 23, "666108129242815": 23, "666108129242815xarrai": 23, "66620159": 23, "66639367": 23, "66655665e": 21, "66666667": 14, "66725294": 23, "66731583e": 21, "66815": 23, "669386": 22, "67": [5, 13, 18, 20, 21, 22], "670000": 18, "67081374e": 21, "672": 20, "6723493": 20, "6724195": 20, "6724887": 20, "672563": 20, "6726688": 20, "6727766": 20, "672arrai": 20, "673963": 23, "674": 23, "674885": [20, 22], "67658285": 13, "6771463": 20, "6773272": 20, "677492": 20, "6776317": 20, "6777302": 20, "6778082": 20, "67783854e": 21, "678553": 22, "67856563": 23, "67897242e": 21, "679721": 23, "67977225e": 21, "68": [13, 14, 18, 20, 21, 22], "681": 23, "68191728e": 21, "685179": 22, "6859775": 23, "686": 23, "6865997": 23, "68722": 22, "6874666": 20, "6875": 23, "6876906": 20, "6879102": 20, "6880217": 20, "688121": 20, "6881752": 20, "688176e": 23, "6883243": 20, "6883289": 20, "6884427": 20, "6885366": 20, "6885542": 20, "6886654": 20, "6889572": 20, "6890831": 20, "68919305e": 21, "6892204": 20, "6893266": 20, "6893964": 20, "6894479": 20, "6895409": 20, "68965517": 14, "6899008": 20, "68999203": 23, "69": [13, 18, 20, 21, 22], "6902231": 20, "6905178": 20, "6907759": 20, "6910189": 20, "69162bc": 37, "692626953125": 23, "69354087e": 21, "69409241": 15, "694529e": 23, "69583703": 13, "6962890625": 23, "6969604492188": 23, "69863249e": 21, "6histori": 23, "6kb": [20, 22], "6x6": 14, "7": [5, 10, 11, 13, 14, 15, 18, 20, 21, 22, 23, 32, 45], "70": [3, 13, 18, 20, 21, 22, 23], "700": [5, 15, 23], "701273": 22, "70161686e": 21, "702488": 22, "70363045e": 21, "70429144e": 21, "70545887e": 21, "70577531": 23, "70607173e": 21, "707": 14, "70710678e": 14, "707312": 22, "7081": 18, "70826448": 13, "7088237": 23, "7089": 18, "709401": 18, "70955729": 23, "71": [3, 13, 18, 20, 21, 22, 23], "71035679": 23, "711": 21, "711385": 5, "71238898": 14, "712500": 18, "714": 23, "71446177e": 21, "71709325": 23, "71726594": 23, "71758929": 23, "718281828459045": 14, "71828204": 13, "72": [13, 14, 18, 20, 21, 22], "720": [20, 22], "720639e": 23, "720b": 20, "72166924": 13, "722328": 23, "723951": 22, "72413793": 14, "7247376": 23, "725": 23, "72664825": 23, "72695544": 15, "726992e": 23, "727234": 22, "728104": 22, "72814762": 13, "728893e": 23, "72914515": 23, "7293599": 15, "72981031e": 21, "73": [5, 13, 18, 20, 21, 22], "73121995": 23, "73198892": 23, "732275": 20, "732279": 20, "732295": 20, "732309": 20, "73479162e": 21, "73507883": 15, "736985": 20, "737": 15, "73702": 20, "737043": 20, "737051": 20, "737165": 22, "737336773": 18, "7381277": 20, "7381679": 20, "7382039": 20, "7382454": 20, "7382846": 20, "73828667": 13, "7383199": 20, "739": 7, "739901e": 23, "74": [13, 18, 20, 21, 22], "7424251": 20, "7424612": 20, "74247997": 23, "7424874": 20, "7425116": 20, "7425283": 20, "742536": 20, "745": 23, "745023": 23, "7453367": 13, "746": 20, "7462606": 20, "746261": 20, "7462667": 20, "746267": 20, "7462697": 20, "74627": 20, "7462848": 20, "746285": 20, "746299": 20, "746309": 20, "7463093": 20, "746756": 22, "746arrai": 20, "746cell_measur": 20, "7471": 23, "7474008": 20, "7474264": 20, "7474308": 20, "7474365": 20, "7474419": 20, "7474445": 20, "747778": 22, "748089": 22, "748907e": 23, "7490736": 20, "749148": 20, "7492163": 20, "7492864": 20, "7493519": 20, "7494118": 20, "75": [3, 5, 13, 14, 18, 20, 21, 22], "750": 23, "750508": 20, "7505083": 20, "750561": 20, "7506049": 20, "750605": 20, "7506379": 20, "750638": 20, "7506577": 20, "750658": 20, "750667": 20, "7506672": 20, "751": 23, "75130014": 23, "75257028e": 21, "753102e": 23, "753308882144761": 23, "753308882144761geospatial_lat_max": 23, "75347366e": 21, "7535168": 20, "753602": 20, "7536805": 20, "7537591": 20, "753833": 20, "753901": 20, "754": 20, "7542422": 20, "7543424": 20, "75441922": 23, "7544289": 20, "7545002": 20, "754559": 20, "754608": 20, "754arrai": 20, "755422": 18, "755922": 20, "7559224": 20, "755986": 20, "7559862": 20, "756058": 20, "7560585": 20, "756119": 20, "7561191": 20, "7561648": 20, "756165": 20, "756205": 20, "7562052": 20, "75639983e": 21, "75826196e": 21, "75833692e": 21, "75862069": 14, "7588665": 20, "7589546": 20, "7590305": 20, "759095": 20, "7591486": 20, "7591925": 20, "7593384": 20, "7594113": 20, "759455e": 23, "759478": 20, "759547": 20, "7596117": 20, "7596704": 20, "75971416": 23, "76": [13, 18, 20, 21, 22], "760000": 18, "7602725": 20, "76027493e": 21, "760397": 20, "7605033": 20, "7605885": 20, "7606541": 20, "760718": 20, "76171875": 23, "7646879": 20, "7647004": 20, "7647841": 20, "7648032": 20, "7648666": 20, "7648907": 20, "7649331": 20, "7649589": 20, "7649865": 20, "7650102": 20, "7650299": 20, "7650614": 20, "76572964e": 21, "766011e": 23, "76645046e": 21, "7666015625": 23, "76695309": 13, "76844508e": 21, "7690051": 20, "7690798": 20, "7691481": 20, "7692182": 20, "7692844": 20, "7693441": 20, "76935": 23, "769499": 22, "76arrai": 20, "77": [13, 18, 20, 21, 22], "770263671875": 23, "7709350585938": 23, "7709653": 20, "7710832": 20, "7711828": 20, "7712607": 20, "7713183": 20, "7713748": 20, "77157080e": 21, "77179678": 13, "77285885": 23, "77376901e": 21, "7743237": 20, "7744204": 20, "7745041": 20, "7745715": 20, "774626": 20, "77465751e": 21, "77467": 20, "775": [15, 23], "77563013e": 21, "77648": 22, "77777778": 14, "77789358": 13, "7793583": 23, "77980233": 13, "78": [13, 18, 20, 21, 22], "780058": 22, "7805718": 20, "780688": 20, "780786": 20, "7808627": 20, "7809197": 20, "7809757": 20, "78192464": 23, "78196653": 23, "78200880e": 21, "7821493": 23, "784": 23, "78414516": 23, "78503": 23, "78539816": 14, "78547": 20, "785529": 20, "785565e": 23, "78559": 20, "785646": 20, "7866629": 23, "787766": 22, "78821": 22, "7884571": 49, "7884572": 49, "78903343e": 21, "78915946e": 21, "789865": 20, "789945": 20, "79": [13, 14, 18, 20, 21, 22], "790012": 20, "790069": 20, "790609": 20, "79065": 20, "790694": 20, "790736": 20, "791918e": 23, "792121e": 23, "792500": 18, "793085": 22, "79310345": 14, "794727": 20, "794789": 20, "794837": 20, "794875": 20, "79598426e": 21, "7983514": 20, "7983989": 20, "7984415": 20, "7984871": 20, "7985296": 20, "7985678": 20, "798arrai": 20, "799": 20, "7_l100grib1_cent": 23, "7dca0292467e4bbd73643556f83fd1c52b5c113c": 28, "7grib1_level_typ": 23, "7grib1_subcent": 23, "8": [3, 5, 7, 9, 11, 13, 14, 15, 18, 20, 21, 22, 23, 37, 42, 45], "80": [3, 13, 18, 20, 21, 22, 23], "800": 23, "80034882e": 21, "800b": 22, "8024155": 20, "8024837": 20, "8025414": 20, "80258125e": 21, "8025846": 20, "8026177": 20, "8026428": 20, "80296541e": 21, "80305": [20, 22], "80518627": 23, "80576": 23, "8082187": 20, "8083031": 20, "8083605": 20, "80838596": 23, "8083915": 20, "8083944": 20, "8083988": 20, "80b": 22, "80f": 13, "81": [13, 18, 20, 21, 22, 45], "812": [15, 21], "816229e": 23, "818028e": 23, "818231e": 23, "819756": 22, "82": [13, 14, 18, 20, 21, 22], "82138": 23, "82214294e": 21, "82321": 22, "824381e": 23, "824416": 23, "825": [14, 23], "82584007e": 21, "82663": 23, "82758621": 14, "82856563": 23, "83": [13, 18, 20, 21, 22], "8308828962289": 23, "8308828962289geospatial_lon_min": 23, "83092031": 23, "83149822": 23, "83232515e": 21, "83487": 23, "83544921875": 23, "83571708": 13, "83593609": 13, "83697020e": 14, "83778599e": 21, "83850877": 23, "83926237e": 21, "84": [13, 18, 20, 21, 22], "840393": 22, "84142338e": 21, "842339e": 23, "84272747": 13, "8436452": 22, "84423828125": 23, "844341e": 23, "8449401855469": 23, "844arrai": 22, "84580454": 13, "846294": 23, "84808895": 23, "84827794": 13, "849726": 22, "84995": 23, "85": [13, 18, 20, 21, 22], "850": [5, 15, 23], "850000": 18, "850491e": 23, "85269149": 13, "853286": 23, "85481585": 14, "856844e": 23, "85935120e": 21, "85955729": 23, "86": [13, 14, 18, 20, 21, 22], "86002966": 23, "860712": 22, "86206897": 14, "86666667": [14, 15], "86764079e": 21, "868449e": 23, "86970157e": 21, "86979291": 15, "87": [13, 18, 20, 21, 22], "870000": 18, "870451e": 23, "87151534": 13, "873777": 22, "875": [14, 23], "87536782e": 21, "87557425": 13, "87698113": 23, "87914515": 23, "88": [7, 13, 18, 20, 21, 22], "88153598e": 21, "88186192e": 21, "88242040519995": 23, "88242040519995geospatial_lon_max": 23, "88258643": 13, "882954e": 23, "883": 23, "88318795": 23, "883371": 23, "885000": 18, "88531027": 23, "887": 15, "88701": 23, "88737484": 23, "88766073e": 21, "88876481e": 21, "889307e": 23, "89": [13, 14, 18, 20, 21, 22], "89247115e": 21, "89258446e": 21, "89295232": 15, "894559e": 23, "89636361": 15, "89655172": 14, "896561e": 23, "898": 7, "898000": 7, "89825854": 13, "89825854468695": 13, "89905823e": 21, "8arrai": 23, "8b": [20, 21, 23], "8kb": 22, "8unit": 23, "8x3": 15, "8xarrai": 23, "9": [5, 7, 10, 11, 13, 14, 15, 18, 20, 21, 22, 23, 45], "90": [3, 13, 14, 18, 21], "900": 23, "90000": 22, "90028363": 13, "90886909": 15, "90966796875": 23, "90971416": 23, "91": [3, 13, 18], "91122156": 15, "91153322": 15, "913": 21, "91360137": 15, "91468564": 13, "91513049": 13, "915417e": 23, "91634965e": 21, "91699408": 23, "918253": 22, "91837841": 23, "91859236": 23, "9189453125": 23, "92": [13, 18, 21], "920669e": 23, "921770e": 23, "92218768": 14, "922671e": 23, "92335907e": 21, "92456108e": 21, "924868": 23, "925": [5, 14, 15, 23], "92699082": 14, "92759677e": 21, "92807871": 23, "93": [11, 13, 14, 18, 21], "93083913": 15, "93103448": 14, "93188567e": 21, "93380275": 13, "93406243": 23, "93414516": 23, "93613936": 23, "936568": 18, "9366629": 23, "936979": 23, "93868945e": 21, "93888": 23, "93939394": 14, "94": [13, 18, 20, 21], "940416": 22, "94104791e": 21, "94115754": 13, "94158743": 23, "9439774": 7, "946779e": 23, "947252": 22, "94755069e": 21, "947880e": 23, "947936": 18, "94807689": 15, "948781e": 23, "94957057e": 21, "95": [11, 13, 18, 21], "950": 23, "950000": 18, "95065202": 13, "95300592e": 21, "954233e": 23, "95687899": 23, "95696914": 13, "95814392": 13, "95867406e": 21, "95971516": 13, "95998607": 15, "96": [11, 13, 14, 18, 21], "961a": [20, 22], "962": 15, "962500": 18, "96531466": 15, "965464": 18, "96551724": 14, "9657": 22, "96868460e": 21, "969209968386869e": 5, "96b": [20, 23], "97": [5, 13, 18, 33], "972": [20, 22], "972139": 23, "972262": 23, "97239185e": 21, "972arrai": 23, "972cesm_casenam": [20, 22], "974416": 23, "975": 23, "97505745": 13, "97675": 23, "97751472e": 21, "97955": 23, "98": [9, 13, 18, 21, 33], "980000": 18, "980343e": 23, "98042558": 23, "98073488e": 21, "981418": 7, "981452": 7, "98255242": 15, "9833984375": 23, "98364": 23, "98514687": 23, "985646": 7, "98660716e": 21, "986696e": 23, "98850877": 23, "99": [11, 13, 18, 21], "990": 23, "990km": 23, "991": 23, "992": 23, "993": 23, "994": 23, "99403256": 13, "99574973": 15, "99584888": 23, "99586742": 13, "996": 23, "99637726e": 21, "99683836": 13, "996878": 7, "997": 23, "998": 23, "99808895": 23, "999": 23, "99902": 23, "9999": 5, "9999999999999996": 14, "9h_61hxcdui": 21, "9x1": [20, 22], "A": [5, 9, 11, 14, 15, 18, 20, 21, 22, 24, 26, 30, 33, 34, 35, 37, 38, 39, 42, 44, 49, 50], "AND": 30, "AS": 20, "And": [1, 14, 28, 30, 34, 42, 45, 46, 47], "As": [0, 1, 3, 5, 7, 9, 11, 15, 16, 18, 20, 21, 22, 23, 28, 29, 33, 35, 38, 39], "At": [5, 18, 30, 37, 50], "BY": 49, "Be": [3, 32, 42], "But": [28, 37, 45, 50], "By": [5, 9, 11, 13, 15, 18, 21, 22, 23, 28, 29, 32, 33, 38], "For": [1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 27, 28, 29, 30, 33, 35, 36, 37, 38, 39, 40, 42, 47, 50], "INTO": 30, "If": [0, 1, 5, 7, 8, 9, 10, 11, 13, 15, 16, 18, 20, 21, 23, 24, 28, 29, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 46, 49, 50], "In": [0, 1, 2, 3, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 22, 23, 26, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 46, 50], "It": [0, 1, 5, 7, 9, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 24, 28, 30, 33, 35, 36, 37, 38, 40, 42, 46, 47], "Its": 23, "NOT": [24, 28, 30, 34, 37], "No": [20, 22], "Not": [16, 37, 47], "OR": 42, "Of": [15, 28, 45], "On": [0, 3, 5, 20, 21, 26, 28, 30, 37, 38, 42, 46], "One": [3, 5, 9, 13, 15, 16, 18, 24, 28, 29, 30, 34, 42], "Or": [1, 13, 28, 41], "Such": [1, 42], "That": [14, 16, 28, 30, 37, 45, 50], "The": [0, 1, 3, 6, 7, 8, 10, 11, 13, 14, 15, 16, 19, 20, 21, 24, 26, 28, 29, 32, 34, 36, 37, 38, 39, 40, 45, 47, 49, 50], "Then": [15, 29, 30, 38, 41, 42, 46, 50], "There": [1, 4, 5, 7, 9, 10, 11, 13, 15, 16, 18, 20, 22, 23, 24, 28, 29, 34, 35, 38, 40, 42, 45, 50], "These": [0, 1, 3, 5, 6, 9, 11, 14, 16, 18, 20, 21, 22, 23, 28, 30, 34, 38, 42, 50], "To": [0, 1, 3, 5, 7, 9, 10, 11, 13, 15, 16, 18, 20, 21, 23, 24, 26, 28, 30, 33, 34, 37, 38, 39, 40, 41, 42, 45, 50], "With": [5, 13, 15, 18, 38, 39, 41, 42], "_": 42, "_2": 42, "__getitem__": 18, "__resample_dim__": 20, "_build": 0, "_check_indexing_error": 18, "_coordinateaxistyp": 23, "_coordinatezisposit": 23, "_engin": 18, "_fillvalu": 5, "_getitem_multilevel": 18, "_lib": 18, "_netcdf4": 5, "a_221_19930313_0000_000": 23, "aa": 15, "ab": [9, 13, 15], "abbrevi": [7, 18, 23, 39], "abc": 18, "abernathei": 3, "abil": [2, 15, 16, 17, 21, 23, 34, 47], "abl": [5, 7, 11, 13, 16, 34, 36, 37, 50], "about": [0, 1, 5, 9, 13, 15, 16, 18, 20, 21, 22, 23, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 46, 47, 50], "abov": [0, 1, 3, 5, 7, 9, 11, 13, 15, 18, 20, 21, 22, 23, 28, 30, 32, 34, 37, 38, 39, 41, 42, 45, 50], "absolut": [15, 38], "abstract": [7, 23, 47], "accept": [11, 18, 30, 38], "access": [1, 3, 5, 9, 13, 14, 18, 21, 22, 32, 34, 37, 39, 41, 42, 45], "accident": [15, 28], "accomplish": [15, 37, 38], "accord": [13, 14], "account": [0, 9, 25, 28, 30, 32, 35], "accur": [3, 7, 11, 22], "achiev": [16, 18, 21, 37], "acknowledg": [20, 22], "acquir": 38, "across": [9, 11, 13, 14, 15, 16, 20, 22, 23, 26], "action": [28, 29, 32, 33, 35, 37, 38], "activ": [0, 24, 30, 34, 35, 36, 37, 38, 41, 46, 50], "activity_id": [20, 22], "actual": [0, 5, 7, 9, 10, 14, 15, 16, 21, 22, 28, 33], "acut": 28, "ad": [1, 3, 5, 14, 15, 16, 21, 23, 28, 29, 30, 32, 33, 37, 38], "adapt": [7, 21, 23, 35, 47, 49], "add": [1, 5, 7, 10, 11, 15, 23, 28, 29, 30, 32, 34, 35, 37, 41, 42], "add_featur": 3, "add_offset": 5, "addit": [1, 2, 3, 5, 7, 9, 15, 16, 18, 20, 21, 22, 23, 24, 28, 33, 35, 36, 37, 38, 39, 41, 50], "addition": 36, "address": [33, 36, 37, 38, 39], "adjust": 1, "admin_1_states_provinces_lak": 3, "administ": 32, "admonit": 1, "adopt": 25, "advanc": [10, 13, 14, 15, 16, 19, 23, 45], "advantag": [7, 23, 24, 39, 42, 47], "advect": 13, "advent": 39, "advertis": 33, "advic": 28, "aerosol": [20, 22], "affect": [20, 24, 28, 30, 32], "after": [1, 5, 7, 10, 11, 13, 18, 20, 21, 23, 28, 29, 30, 32, 34, 37, 38, 42, 50], "afterward": 30, "ag": 45, "again": [1, 3, 7, 14, 18, 20, 21, 28, 30, 32, 36, 37, 42, 50], "against": [22, 28], "aggreg": 21, "agnost": [19, 23, 24, 40], "agre": 28, "ahead": [30, 34], "aid": 5, "aim": 30, "air": [5, 20, 23], "air_pressur": [5, 23], "air_pressurearrai": 23, "air_pressurexarrai": 23, "air_temperatur": [5, 23], "air_temperaturearrai": 23, "air_temperaturexarrai": 23, "aka": [32, 34], "albani": [5, 28], "alert": 34, "algebra": [12, 14, 16], "algorithm": [14, 20], "alia": [7, 28], "alias": [7, 29], "align": [1, 5, 9], "all": [0, 1, 3, 5, 7, 8, 10, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 28, 30, 33, 34, 35, 36, 37, 38, 39, 42, 44, 45, 47, 49, 50], "allevi": 7, "alloc": 21, "allow": [1, 3, 5, 7, 9, 10, 11, 15, 17, 18, 19, 20, 21, 22, 23, 24, 26, 29, 30, 32, 34, 35, 38, 40, 41, 42, 44, 45, 50], "almost": [7, 9, 15, 45], "alon": 42, "along": [1, 5, 11, 13, 14, 15, 20, 28, 37, 40, 42], "alongsid": [11, 18], "alpha": [3, 22], "alreadi": [0, 5, 7, 18, 20, 21, 23, 28, 29, 30, 34, 37, 39, 40, 47], "also": [0, 1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 45, 47, 50], "alt": 1, "alter": 15, "altern": [22, 40, 41, 42], "although": [3, 7, 18, 21, 23, 39], "altitud": [5, 20, 23], "altogeth": 21, "alwai": [7, 9, 15, 16, 18, 28, 30, 32, 35, 37, 40, 42, 45, 49], "am": 7, "ambigu": 7, "america": 23, "american": [3, 22, 23], "among": [1, 5, 6, 11, 14, 21, 27, 28, 35, 40], "amount": [3, 5, 21, 38], "an": [0, 1, 5, 7, 9, 12, 13, 15, 16, 18, 19, 20, 21, 22, 23, 24, 26, 28, 29, 30, 32, 33, 34, 35, 37, 38, 39, 40, 41, 42, 45, 47, 50], "anaconda": [24, 40, 41, 46], "analog": [21, 22], "analys": [2, 16], "analysi": [16, 17, 19, 20, 21, 23, 24, 40, 47, 50], "analysis_script": 28, "analysis_script_09122021": 28, "analysis_script_09122021_edit": 28, "analysis_script_new": 28, "analysis_script_old": 28, "analyt": 19, "analyz": [5, 7, 15, 16, 20], "andrew": 16, "angel": 28, "ani": [0, 1, 5, 9, 14, 15, 16, 18, 20, 21, 22, 23, 24, 28, 29, 30, 32, 34, 35, 37, 38, 39, 42, 45, 50], "anim": [8, 11], "annot": [5, 8, 10], "announc": 33, "annual": 20, "anomali": 18, "anonym": 39, "anoth": [3, 7, 8, 11, 13, 15, 16, 18, 21, 23, 28, 30, 32, 34, 35, 37, 38, 42, 50], "answer": [8, 38], "anyon": [21, 23, 32, 38, 47], "anyth": [0, 18, 23, 28, 30, 35, 37, 42], "anywher": 36, "aogcm": [20, 22], "apach": 49, "api": 5, "appeal": [9, 21], "appear": [0, 1, 7, 9, 21, 23, 26, 38, 42, 50], "append": [7, 14, 15], "appendix": 0, "appetit": 45, "appl": 45, "appli": [7, 15, 16, 21, 22, 47, 50], "applic": [5, 15, 26, 38, 42], "apppli": 30, "appreci": 38, "approach": [7, 20], "appropri": [1, 3, 23, 37, 49], "approv": [29, 34, 38], "approxim": [1, 15, 21], "ar": [0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 20, 22, 23, 25, 26, 28, 29, 32, 34, 36, 37, 38, 39, 40, 41, 42, 45, 46, 47, 49, 50], "arang": [5, 9, 11, 13, 15], "arbitrari": [7, 23], "archiv": 49, "area": [20, 21, 22, 28, 42], "areacello": [20, 21, 22], "areacelloarrai": 22, "areacellocell_method": [20, 21, 22], "areacelloforcing_index": [20, 22], "areacellolong_nam": [20, 22], "areacelloprov": [20, 22], "areacelloxarrai": 20, "aren": 16, "arg": 13, "argmax": 20, "argmin": [15, 20], "argsort": 13, "arguabl": 39, "argument": [3, 5, 7, 9, 10, 11, 15, 18, 20, 21, 23, 45], "aris": [20, 22], "arithmet": [7, 21, 23, 45], "arm": 16, "around": [11, 14, 28, 40, 45], "arr": 21, "arrai": [5, 9, 10, 11, 12, 15, 16, 18, 19, 20, 22], "arrang": [5, 7], "arriv": 7, "arrow": [9, 29, 34, 42], "art": 16, "as_strid": 15, "ascend": 18, "ascii": 18, "asid": 28, "ask": [8, 11, 16, 30, 33, 37, 38, 39], "aspect": [7, 36, 42, 47], "aspir": 50, "asset": [37, 39], "assign": [5, 13, 18], "assist": [5, 21], "associ": [3, 5, 9, 10, 11, 16, 18, 23, 35, 37], "assort": 12, "assum": [5, 7, 11, 18, 21, 29, 30, 32, 37], "assumpt": 50, "astimezon": 7, "astyp": 21, "atlassian": 37, "atmoschem": [20, 22], "atmospher": [16, 20, 22], "attach": 23, "attempt": [10, 16, 18, 38], "attent": [23, 28], "attr": 23, "attribut": [1, 3, 5, 7, 11, 19, 20, 21, 22], "authent": 26, "author": [1, 28, 30, 37, 38, 50], "authorship": 1, "auto": 42, "autom": [29, 38], "automat": [1, 9, 11, 16, 18, 20, 21, 23, 28, 30, 32, 34, 38, 41, 42], "autopct": 10, "avail": [0, 1, 5, 8, 9, 11, 16, 21, 23, 37, 38, 39, 47, 50], "averag": [15, 18, 20, 22], "avg": 15, "avoid": [1, 7, 16, 18, 23, 28, 36, 37], "awai": 42, "await": 30, "awar": [1, 5, 20, 23], "ax": [9, 10, 20, 22, 23], "ax2": [3, 11], "axdict": 9, "axes_dict": 9, "axhlin": 22, "axi": [5, 10, 11, 13, 14, 15, 20, 21, 22, 23], "axvlin": 22, "azimuth": 15, "b": [7, 9, 13, 14, 15, 20, 21, 22, 28, 37, 42, 49], "b2a3b61": 37, "back": [13, 15, 20, 26, 30, 36, 37, 42, 47], "backend": 8, "background": [33, 42, 50], "backward": 14, "bad": 42, "band": 9, "banihirw": 49, "bar": [16, 21, 37, 42], "base": [7, 9, 11, 15, 16, 18, 20, 21, 23, 24, 26, 28, 32, 34, 36, 37, 39, 40, 42, 45, 47], "basi": 38, "basic": [2, 6, 7, 8, 10, 12, 13, 15, 16, 19, 20, 21, 23, 25, 29, 30, 32, 34, 36, 37, 38, 40, 50], "bb": 15, "bbox": 9, "becaus": [1, 5, 7, 8, 9, 20, 21, 23, 24, 28, 30, 33, 34, 39, 45, 47], "becom": [3, 14, 15, 20, 21, 23, 29, 30, 34, 36, 50], "been": [0, 3, 18, 21, 23, 28, 29, 30, 32, 33, 37, 39, 42], "befor": [1, 2, 5, 7, 9, 14, 15, 18, 20, 21, 22, 23, 28, 29, 30, 34, 37, 38, 39, 42], "begin": [1, 3, 5, 9, 11, 13, 14, 15, 22, 30, 34, 36, 37, 45], "beginn": 28, "behav": [9, 15, 18, 20], "behavior": [10, 15, 18, 20, 21, 23], "behind": [7, 23, 33, 37, 47], "being": [9, 11, 15, 16, 18, 23, 28, 30, 33, 38, 42, 50], "believ": 50, "bell": 40, "below": [1, 3, 5, 7, 9, 10, 13, 15, 16, 18, 21, 22, 23, 24, 28, 32, 33, 35, 36, 37, 38, 41, 42, 45, 50], "benchmark": 7, "benefit": [23, 47, 50], "best": [7, 9, 24, 25, 28, 30, 34, 37, 40, 46], "beta": 1, "better": [1, 9, 18], "between": [2, 7, 9, 11, 13, 14, 20, 21, 23, 26, 28, 37, 40, 42], "beyond": [7, 19, 23], "bf89419": 37, "bgcsub_experi": [20, 22], "bhist": [20, 22], "bigger": [3, 15], "biggest": 40, "bilinear": 11, "billion": [7, 21], "bin": [9, 10, 20], "binari": 7, "binder": [9, 42, 45], "biogeochemistri": [20, 22], "bit": [14, 16, 32], "bitwis": [13, 20], "bitwise_and": 13, "bivari": 11, "black": [3, 9, 11, 18, 22], "blank": 10, "blind": 9, "blink": 42, "blit": 10, "bloat": 15, "block": [7, 9, 10, 11, 14, 45, 50], "block_siz": 15, "blog": 21, "blue": [3, 9, 10, 11, 13, 22, 42], "bodi": [1, 3], "bonu": 16, "book": [1, 8, 18, 20, 21, 22, 29, 30, 35, 40, 44], "boolean": 20, "boost": 38, "border": 3, "borrow": 19, "bot": 29, "both": [1, 5, 9, 10, 11, 15, 20, 21, 23, 30, 32, 37, 41, 42, 43, 50], "bother": 7, "bottom": [1, 9, 42], "boulder": [5, 20, 22, 23], "bound": 23, "boundsunit": [20, 22], "box": [1, 18, 33, 34, 36, 38, 42], "boxstyl": 9, "brace": 45, "bracket": [18, 23, 45], "branch": [20, 22, 25, 29, 32, 33, 38], "branch_method": [20, 22], "branch_time_in_child": [20, 22], "branch_time_in_par": [20, 22], "brancha": [30, 34], "branchb": 30, "brand": [28, 45], "break": [1, 20, 21, 24, 28, 37], "brian": 28, "brief": [1, 23, 40, 44, 50], "briefli": [1, 5, 7, 28, 37], "bring": [23, 30, 33], "broad": [5, 16, 20], "broadcast": [14, 23], "broadli": 50, "broken": [21, 33], "brose": 28, "brought": [30, 48], "brown": 3, "brows": [28, 35, 39], "browser": [0, 10, 26, 32, 37, 38, 39, 40, 41, 42, 50], "bug": [21, 33, 35, 37, 39], "build": [1, 7, 8, 29, 32, 39, 50], "built": [2, 5, 6, 7, 8, 14, 16, 17, 20, 21, 23, 32, 45, 47], "bulk": [14, 20, 47], "bullet": 42, "bunch": 16, "burden": 23, "button": [0, 29, 32, 33, 34, 37, 38, 41, 42], "bwr": 11, "byte": [15, 21], "bytes_per_item": 15, "c": [5, 9, 10, 11, 14, 20, 22, 28, 41, 42, 45, 47], "c1": 9, "c2": 9, "c3": 30, "c4": 30, "cach": [18, 20, 23], "calcul": [13, 16, 18, 20, 23], "calendar": [6, 7, 16, 20, 21, 22], "call": [3, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 23, 24, 28, 29, 30, 32, 33, 35, 38, 41, 42, 45, 46], "callabl": 3, "cam6": [20, 22], "camron": 49, "can": [0, 1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 26, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 45, 46, 47, 49, 50], "cannot": [7, 11, 18, 23, 30, 42], "canva": 3, "capabl": [8, 10, 14, 15, 18, 20, 23, 37, 39], "capit": [10, 47], "captur": [5, 14, 37], "cardiac": 16, "care": [15, 24, 42], "carpentri": [28, 36], "carre": 3, "cartesian": 3, "cartopi": [1, 16, 22, 23], "case": [1, 5, 7, 9, 10, 11, 14, 15, 18, 20, 21, 22, 23, 32, 33, 35, 36, 39, 50], "case_id": [20, 22], "casted_kei": 18, "cat": 45, "categori": 3, "caus": [1, 18, 21, 23, 42], "cbar": 9, "cbcmap": 9, "cc": [9, 49], "ccmap": 9, "ccr": [3, 22], "cd": [30, 32, 37, 46, 50], "cdl": 5, "cdm": 23, "cdot": 13, "ceas": 36, "celebr": 26, "celesti": 7, "cell": [1, 3, 9, 10, 13, 14, 15, 18, 20, 21, 22, 40, 41, 45, 50], "cell_areatime_label": [20, 22], "cell_measur": [20, 21, 22], "cell_method": [20, 21, 22], "celsiu": [5, 18, 20, 23], "center": [9, 12, 15, 20, 22], "centerpiec": 28, "centr": 23, "central": 23, "central_latitud": 3, "central_longitud": [3, 22], "centuri": [20, 22], "certain": [5, 13, 15, 18, 21, 23, 36, 38, 42], "certainli": 15, "cesm2": [20, 22], "cesm2_grid_vari": [20, 22], "cesm2_sst_data": [20, 21, 22], "cesm2parent_time_unit": [20, 22], "cesm2source_typ": [20, 22], "cesm_cmip6": [20, 22], "cf": [20, 22, 23], "cf_role": 5, "cfdm": 5, "cfeatur": 3, "cfgeom": 5, "cfgridwriter2": 23, "cftime": [5, 6, 16, 20, 21, 22], "cftimeindex": [20, 21, 22], "chain": 18, "chanc": 7, "chang": [0, 3, 9, 10, 11, 15, 18, 20, 21, 22, 23, 24, 30, 32, 33, 34, 35, 36, 38, 39, 41, 42, 45, 46, 50], "chapter": [6, 30, 34, 37, 50], "char": 5, "charact": [5, 42], "character": 18, "characterist": 5, "charg": 39, "chart": [8, 11, 16], "cheat": [9, 10, 24], "check": [0, 1, 9, 13, 14, 15, 16, 20, 24, 29, 30, 34, 35, 38], "checkout": [28, 29, 30, 37], "checksum": 28, "choic": [9, 10, 28, 30, 37, 40], "choos": [3, 9, 27, 33, 36], "chose": [28, 40], "chosen": [10, 20, 21, 22, 23, 29, 46], "chrome": 41, "chunksiz": 21, "chunktyp": 21, "cice5": [20, 22], "circl": [11, 38, 42], "cism2": [20, 22], "citat": [1, 20, 22], "clabel": 11, "clarif": [1, 5, 29], "clarifi": 29, "clariti": 5, "class": [3, 5, 18, 23, 42, 45], "classic": [14, 41, 46], "clat": 3, "clean": [14, 28], "clear": [1, 5, 11, 18, 20, 37], "clearer": [15, 18, 23], "clearli": [5, 7, 38], "clever": [13, 15, 18], "click": [0, 9, 23, 29, 32, 33, 34, 36, 37, 38, 41, 42, 45, 50], "climat": [5, 7, 16, 20, 22], "climatolog": 22, "climatologi": 22, "clipboard": 32, "clm5": [20, 22], "clon": 3, "clone": [0, 25, 28, 29, 30, 33, 34, 36, 38, 50], "close": [5, 20, 21, 22, 23, 28, 33, 34, 41, 42], "closer": [3, 42], "closest": [15, 20], "cloud": [7, 27, 32, 45], "cluster": 16, "clutter": 36, "clyne": [37, 49], "cmap": [9, 11, 20, 22], "cmip": [20, 22], "cmip6": [20, 22], "cmip6model_doi_url": [20, 22], "cmip6parent_source_id": [20, 22], "cmipbranch_method": [20, 22], "cmipparent_experiment_id": [20, 22], "co": [3, 9, 13, 14, 20, 22, 23, 50], "co_temp": 23, "coarsen": 20, "coast": 22, "coastlin": [3, 22], "code": [1, 3, 5, 7, 9, 10, 11, 15, 16, 17, 18, 20, 21, 23, 26, 27, 28, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41, 46, 47, 49, 50], "codebas": [28, 30, 47], "codeown": 38, "coder": [20, 21, 22], "cohes": 1, "col": 15, "cold": 22, "colder": 9, "collabor": [25, 28, 30, 32, 33, 34, 35, 37, 38, 39, 44], "collaps": [23, 42], "collect": [9, 23, 24, 35, 37, 45, 48, 50], "collector": 10, "collis": 30, "colon": [14, 45], "color": [3, 9, 10, 18, 22, 45], "colorado": 23, "colorbar": [3, 8, 11], "colormap": [10, 11], "colormap_nam": 9, "colorset": 11, "column": [11, 13, 14, 15, 16], "columnar": 18, "com": [1, 3, 18, 20, 23, 30, 32, 35, 36, 37, 50], "combin": [5, 7, 9, 13, 15, 16, 22, 23, 28, 30], "come": [7, 13, 15, 16, 21, 23, 24, 28, 35, 40], "comfort": [40, 50], "comma": [17, 18], "command": [0, 30, 32, 36, 37, 39, 40, 41, 45, 46, 50], "comment": [0, 1, 5, 9, 20, 21, 29, 33, 34, 37, 38], "commit": [1, 29, 30, 32, 34], "common": [5, 9, 11, 14, 15, 16, 17, 20, 22, 23, 28, 34, 35, 37, 39, 42, 49], "commonli": [4, 5, 7, 10, 11, 18, 20, 23, 37, 38, 47], "commun": [8, 14, 16, 20, 21, 23, 25, 26, 32, 33, 34, 37, 39, 44, 47, 49, 50], "compani": 16, "compar": [7, 9, 13, 15, 29, 30, 34, 37, 42, 47], "comparison": [18, 28], "compartment": 30, "compat": [15, 47, 50], "compet": 30, "compil": 47, "complement": 13, "complet": [1, 5, 7, 13, 18, 20, 21, 28, 29, 32, 33, 37, 42, 50], "complex": [7, 9, 16, 20, 21, 35, 37, 38], "compliant": 5, "complic": [10, 37], "compon": [7, 13, 20, 23, 26, 30, 40, 50], "component_of_wind_isobar": 23, "composit": 9, "comprehens": [6, 8, 11, 45], "compress": [5, 32], "compris": 1, "comput": [7, 12, 16, 19, 23, 26, 28, 29, 30, 32, 35, 36, 37, 40, 42, 44, 45, 47, 50], "computed_d": 21, "con": 36, "concaten": 21, "concept": [1, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 46], "conceptu": [15, 35], "concern": 9, "concis": [1, 19, 20], "concret": 13, "conda": [26, 27, 41, 42, 46, 50], "condit": [13, 18, 22, 45], "conduct": 47, "config": [0, 28], "configur": [1, 25, 28, 30, 32, 34, 37, 50], "confirm": [1, 9, 15, 41], "conflict": [30, 34, 38], "conform": [3, 5, 23], "confus": [5, 7, 20, 30, 38], "congratul": [32, 41, 46], "conic": 5, "connect": 36, "consecut": 5, "consequ": 42, "conserv": [20, 21, 22], "consid": [5, 14, 15, 16, 21, 28, 32, 37, 40, 42], "consist": [5, 7, 11, 18, 20, 21, 22, 26, 32, 34, 37, 38, 39], "constant": [3, 20, 45], "constrained_layout": 9, "construct": [0, 4, 6, 9, 15, 17, 31, 43], "constructor": 9, "consult": [20, 22], "consum": 21, "consumpt": 49, "contact": 1, "contain": [0, 1, 2, 3, 4, 5, 6, 7, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 35, 37, 38, 39, 42, 44, 45, 50], "contempt": 28, "content": [0, 4, 6, 17, 23, 28, 29, 30, 32, 34, 37, 38, 39, 42, 43, 49, 50], "context": [13, 15, 28, 33, 37, 42], "contigu": 14, "continu": [14, 20, 24, 30, 34, 37], "contour": [3, 8, 9, 16], "contourf": [3, 9, 11, 20], "contrast": 23, "contribut": [1, 8, 21, 25, 28, 30, 34, 36, 37, 47], "contributor": [28, 29, 30, 34, 37, 38], "control": [15, 20, 22, 25, 29, 30, 32, 34, 36, 37, 38, 42, 44], "convei": [5, 7, 22, 23], "conveni": [7, 18], "convent": [5, 14, 20, 21, 22, 23], "convers": [5, 7, 9, 18, 33, 34, 35], "convert": [3, 5, 7, 9, 10, 13, 14, 15, 18, 20, 21, 22, 23, 33], "convert_degc_to_kelvin": 18, "cool": 25, "coolwarm": 22, "coord": 23, "coordin": [3, 7, 9, 15, 19, 20, 21, 22], "coordinatestandard_nam": 23, "copi": [1, 11, 13, 15, 28, 30, 32, 34, 35, 37, 42], "copyright": 1, "core": [3, 11, 12, 14, 18, 21, 23, 29, 44, 50], "corner": [11, 42, 50], "correct": [1, 7, 9, 20, 21, 23, 38], "correctli": [7, 9, 41], "correspond": [3, 5, 9, 10, 13, 14, 15, 16, 18, 20, 22, 23, 30, 36], "corrupt": 42, "cos_csum": 14, "cos_sum": 14, "cos_t": 14, "cost": 7, "could": [3, 9, 14, 15, 16, 18, 29, 32, 33, 34, 35, 42], "count": [1, 10, 18, 20, 21, 32, 45], "counterpart": 18, "countri": 3, "coupl": [20, 22, 37], "cours": [15, 28, 45], "cousin": 32, "cover": [1, 3, 5, 6, 7, 9, 10, 11, 14, 18, 20, 21, 22, 23, 24, 28, 30, 32, 34, 35, 38, 39, 40, 41, 42, 46, 48, 50], "coverag": [3, 20, 21, 22], "cowork": 40, "cpu": 21, "cr": [3, 22], "crash": 18, "creat": [1, 7, 8, 10, 13, 15, 16, 18, 20, 22, 25, 26, 32, 34, 35, 36, 38, 40, 41, 42, 45, 46, 50], "createdimens": 5, "createvari": 5, "creation": [2, 30, 36], "creativ": [20, 22, 49], "creativecommon": [20, 22], "creator": 33, "credenti": 36, "credit": [1, 49], "criteria": 36, "criterion": 18, "critic": [23, 28], "crop": 15, "cross": [0, 2, 6, 11, 24, 40, 44], "crucial": 14, "csv": 18, "ctrl": [41, 46], "cultur": 3, "cumbersom": 23, "cumsum": 14, "cumul": 14, "curli": 45, "current": [0, 3, 5, 7, 8, 15, 24, 28, 30, 42, 50], "cursor": 42, "curv": 22, "custom": [1, 8, 22, 42, 47], "customis": 16, "cut": 42, "cutoff": [20, 21, 22], "cv": [28, 39], "cycl": [20, 34], "cyclic": 9, "cyclon": 7, "d": [0, 5, 7, 9, 10, 11, 14, 15, 20, 21, 22, 30, 32, 34, 41, 42, 46, 49], "d2": [20, 22], "d67h1h0vnominal_resolut": [20, 22], "d_2d": 15, "d_3d": 15, "da": 21, "dai": [5, 20, 22, 23, 28, 45], "dark": [18, 42], "darr": 21, "dash": 11, "dashboard": 41, "dask": [16, 19], "data": [1, 2, 6, 10, 13, 16, 17, 19, 22, 24, 26, 35, 42, 47, 50], "data_var": 23, "dataarrai": [20, 21, 22], "dataarraydim_0": 23, "dataarraygroupbi": 20, "dataarraylat": 23, "dataarrayresampl": 20, "dataarraytim": 23, "databas": [17, 18], "dataplot": 3, "dataseri": 18, "dataset": [3, 5, 9, 11, 16, 18, 19, 20, 21, 22, 29], "datasetdimens": [20, 22, 23], "datasetscan": 23, "datatyp": [5, 47], "date": [6, 16, 18, 20, 23, 28, 30, 37, 50], "date2num": 5, "date_rang": 23, "datelin": 22, "datetim": [5, 16, 23], "datetime64": [6, 16, 18, 23], "datetimeaccessor": 20, "datetimeindex": [18, 23], "datetimenoleap": [20, 21, 22], "dawson": 16, "de": [8, 25], "deactiv": [24, 50], "deal": [6, 9, 15, 16, 23], "dealt": 38, "debug": 38, "decemb": 20, "decent": 3, "decept": 7, "decid": [11, 30, 38, 47], "decim": [14, 45], "decis": 45, "declar": [5, 11], "decod": [20, 21, 22], "decreas": [5, 9, 23], "dedic": 37, "deeper": 7, "def": [10, 18], "default": [3, 5, 9, 10, 11, 14, 16, 18, 20, 28, 32, 33, 34, 35, 36, 41, 45], "defer": 21, "defici": 47, "defin": [0, 3, 5, 7, 9, 10, 13, 18, 20, 21, 22, 23, 45], "definit": [2, 3, 9, 21, 22, 42, 45], "deg2rad": [3, 45], "degc": [18, 20, 21], "degcvariable_id": [20, 21, 22], "degre": [3, 7, 14, 18, 20, 21, 23, 45], "degreeparent_activity_id": [20, 22], "degrees_east": [5, 20, 22], "degrees_eastarrai": [20, 21, 22], "degrees_eastlong_nam": 23, "degrees_north": [5, 20, 22], "degrees_northarrai": [20, 21, 22], "degrees_northlong_nam": 23, "delai": [21, 29], "delet": [10, 24, 28, 33, 35], "delta": [15, 32], "delv": [3, 7], "demonstr": [5, 9, 10, 13, 15, 18, 20, 21, 22, 23, 28, 30, 32, 34, 42], "deni": 37, "denot": [30, 45], "densiti": [9, 10], "depend": [3, 5, 11, 20, 21, 24, 28, 29, 30, 33, 34, 37, 41, 46], "deploi": [28, 29], "deploy": 29, "deprec": [5, 7, 18, 20], "deprecationwarn": [5, 7], "depth": [18, 21], "depthli": 30, "deriv": [10, 12], "describ": [1, 5, 7, 9, 10, 11, 13, 15, 18, 20, 21, 23, 28, 29, 30, 37, 38, 50], "descript": [1, 5, 7, 18, 20, 21, 22, 23, 28, 29, 37, 38], "design": [1, 2, 5, 7, 15, 30, 35, 38, 42, 47], "desir": [11, 30, 32, 37], "desktop": [32, 35, 42], "despic": 28, "despit": [7, 9], "destin": [32, 34, 37], "destruct": 28, "detach": 28, "detachedhead": 28, "detail": [1, 3, 5, 7, 9, 10, 18, 20, 21, 23, 25, 27, 28, 33, 34, 38, 39, 41, 42, 44, 45, 50], "determin": [7, 21, 35], "dev": [18, 20, 21, 22, 50], "develop": [16, 19, 21, 24, 26, 28, 30, 33, 37, 39, 40, 47], "deviat": [16, 20, 22, 23], "devic": 21, "devop": 39, "dew": 11, "dewpoint": 11, "dewpoint_1000": 11, "df": 18, "diagnost": 21, "diagram": [9, 11, 14, 35], "dialogu": 42, "dice": [15, 17], "dict": [9, 18], "dictat": 35, "dictionari": [9, 18, 23, 28], "did": [7, 13, 20, 32, 37], "didn": 23, "diff": [7, 28, 37], "differ": [1, 5, 6, 9, 10, 13, 14, 18, 20, 22, 23, 25, 28, 30, 32, 33, 34, 37, 38, 39, 40, 41, 42, 50], "difficult": [15, 20, 21], "dig": 7, "digest": 15, "digit": [37, 39], "dilemma": 33, "dim": [14, 20, 22, 23], "dim_0": 23, "dim_1": 23, "dim_2": 23, "dim_2xarrai": 23, "dimens": [11, 13, 14, 19, 20, 21, 22], "dimension": [5, 14, 16, 18, 19, 21, 23], "direct": [5, 18, 30, 34], "directli": [0, 2, 16, 18, 21, 28, 37, 42], "directori": [3, 28, 32, 37, 41, 42, 46, 50], "directory_nam": 37, "disabl": 36, "disadvantag": [23, 47], "disc": [41, 42], "discard": [28, 37], "disciplin": [16, 50], "discov": 14, "discret": [5, 9, 12], "discuss": [5, 7, 18, 21, 23, 25, 28, 29, 30, 32, 34, 35, 36, 37, 38, 39, 43], "disk": [5, 24], "diskless": 5, "disori": 7, "displac": [20, 22], "displai": [1, 3, 9, 10, 18, 21, 23, 30, 36, 37, 38, 40, 42], "dissemin": 39, "distanc": 9, "distinct": [21, 23], "distinguish": [28, 44], "distribut": [9, 10, 11, 16, 18, 21, 24], "district": 7, "disturb": 37, "dive": [15, 28], "diverg": [9, 37], "divid": [1, 21, 22], "do": [0, 1, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 22, 24, 25, 28, 30, 32, 33, 34, 37, 38, 39, 41, 42, 45, 46, 50], "doc": [3, 5, 13, 20, 21, 22, 30, 45], "docstr": 28, "document": [1, 3, 5, 7, 8, 9, 10, 11, 12, 15, 17, 18, 20, 21, 23, 24, 26, 28, 30, 37, 38, 39, 40, 42], "doe": [1, 5, 7, 10, 13, 15, 16, 21, 23, 26, 28, 37, 38, 39, 42, 45], "doesn": [7, 9, 30, 37, 42], "doi": [20, 22, 49], "domain": [3, 5, 14, 19], "don": [13, 14, 18, 28, 37, 42, 47, 50], "done": [3, 7, 9, 18, 23, 28, 32, 37, 41, 42, 45, 47, 50], "dot": [1, 13, 18, 21, 22, 23, 42], "doubl": [5, 9, 42, 45], "doublearrai": [20, 21, 22], "doubt": 39, "down": [5, 7, 23, 24, 28, 34, 41, 45], "downarrai": 23, "downgrib_level_typ": 23, "download": [0, 3, 18, 20, 23, 28, 32, 36, 39, 40, 50], "downsampl": 20, "downsid": 9, "downward": [20, 22], "downxarrai": 23, "dozen": 26, "draft": 29, "drag": 42, "dramat": 21, "draw": 9, "draw_label": 3, "drive": [20, 22], "driver": 39, "drop": [22, 34, 45], "dropdown": [9, 42], "ds_1000": 23, "dsg": 5, "dstack": 13, "dt": [7, 20], "dtype": [14, 15, 18, 20, 21, 22, 23], "due": [5, 7, 23], "dump": 5, "durat": 7, "dure": [7, 30, 38], "dynam": [20, 22, 45], "e": [1, 5, 7, 9, 10, 11, 13, 14, 15, 16, 17, 18, 20, 22, 26, 28, 30, 32, 35, 37, 38, 39, 42, 46, 49, 50], "e21": [20, 22], "e56ea58071f150ec00904a50341a672456cbcb8f": 28, "each": [1, 3, 5, 9, 10, 13, 14, 15, 16, 18, 20, 21, 23, 24, 28, 30, 35, 36, 37, 39, 40, 42, 45], "eager": 21, "earli": [20, 22], "earlier": [3, 5, 7, 18, 20, 21, 23], "earth": [2, 5, 7, 20], "eas": 9, "easi": [7, 17, 28, 33, 35, 36, 37, 40, 47, 50], "easier": [7, 15, 16, 23], "easili": [5, 7, 9, 13, 18, 21, 23, 36, 38], "east": 16, "ec": 9, "ecosystem": [5, 12, 14, 15, 16, 28, 35, 39, 40, 44, 48, 50], "edc31c0": 28, "edg": 15, "edgecolor": [3, 9], "edit": [0, 1, 5, 28, 30, 32, 37, 38, 42, 46], "editor": [28, 32, 37, 38, 40, 46], "edu": 28, "educ": [48, 50], "educreation_d": [20, 22], "effect": [3, 7, 10, 18, 20, 28, 37, 38, 40, 44, 49, 50], "effici": [6, 15, 16, 18, 19, 38, 47], "effort": [7, 10, 16, 21], "either": [1, 5, 7, 15, 18, 20, 22, 30, 32, 34, 37, 38, 45], "el": [18, 22], "elabor": 18, "element": [1, 3, 5, 11, 13, 14, 15, 16, 20, 23, 38], "elimin": 3, "els": [1, 20, 33, 45], "elsewher": [28, 33, 43], "email": 39, "emb": 1, "embed": 21, "emphas": 45, "emploi": [7, 37], "empti": [3, 10, 15, 21, 30, 42], "enabl": [1, 18, 20, 22, 30, 32, 35, 36, 39, 44, 50], "enclos": 20, "encount": [8, 14, 28], "encourag": [1, 20, 22, 24, 30, 40], "end": [1, 3, 7, 9, 13, 14, 15, 20, 22, 30, 31, 33, 37, 42, 45], "energi": [20, 22], "engin": [21, 26], "england": 7, "english": 7, "enhanc": [15, 28, 42], "enough": [20, 22, 40], "ensembl": [20, 22], "enso": 18, "enso34": 18, "enso_data": 18, "ensur": [3, 5, 9, 20, 22, 24, 29, 37], "enter": [30, 38, 41, 42, 45, 50], "entir": [3, 14, 18, 20, 22, 28, 42], "entireti": [0, 14], "entri": 14, "enumer": [1, 15, 32], "env": [0, 18, 20, 21, 22, 24, 50], "environ": [1, 11, 26, 30, 37, 39, 40, 41, 42, 44, 45, 46, 50], "environment": 23, "eof": 16, "ep": 16, "epoch": 7, "equal": [11, 18, 20, 28], "equat": [1, 10, 13, 15, 21, 26, 42], "equatori": 22, "equival": [1, 3, 7, 14, 18, 20, 42], "eroglu": 49, "err": 18, "errat": 21, "error": [0, 1, 7, 19, 20, 23, 28, 30, 37, 38, 42], "esc": 46, "esd": 5, "esoter": 7, "especi": [0, 1, 3, 9, 18, 36, 39, 41, 47], "essenc": 30, "essenti": [1, 7, 18, 23, 24, 28, 30, 32, 50], "establish": [30, 36, 39, 47], "estat": 42, "estim": [1, 15], "etc": [1, 11, 16, 20, 24, 26, 30, 33, 40, 42], "europ": 3, "even": [3, 7, 9, 10, 13, 14, 15, 18, 33, 34, 36, 37, 40, 42, 50], "evenli": [3, 14], "event": [7, 22, 33, 34], "eventu": [0, 40], "ever": [28, 47], "everi": [5, 7, 13, 14, 20, 23, 24, 28, 34, 37, 38, 47], "everyon": [30, 37, 48], "everyth": [16, 20, 24, 30, 41, 42], "evolv": [20, 22, 37], "ex": 9, "exact": [3, 7, 20, 22, 32], "exactli": 7, "exagger": 3, "examin": [7, 33, 38], "exampl": [5, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 25, 28, 29, 30, 32, 33, 34, 36, 37, 38, 39, 41, 42, 44, 45, 47], "exce": 22, "excel": 37, "except": [1, 3, 5, 10, 18, 23], "excerpt": 5, "exclud": [20, 22], "exclus": [14, 18, 20], "execut": [7, 9, 15, 21, 30, 40, 42, 45, 46, 50], "exercis": 7, "exis": 30, "exist": [1, 5, 7, 16, 18, 20, 21, 23, 30, 32, 33, 35, 37, 38, 42], "exit": [28, 29, 42, 46], "exp": [11, 15], "expand": [13, 14, 18, 23], "expect": [7, 15, 24, 29, 37, 42, 50], "experi": [11, 19, 20, 22, 30, 32, 50], "experienc": 39, "experiment": [7, 28], "experiment_id": [20, 22], "explain": [23, 28, 34], "explan": [9, 26, 35], "explanatori": 40, "explicit": 32, "explicitli": [9, 14, 38, 50], "explod": 10, "explor": [9, 10, 14, 15, 18, 23, 26, 28, 35, 39, 42], "exploratori": 17, "export": 28, "express": [3, 7, 9, 15, 17, 20, 21, 22], "extend": [13, 14, 16, 45], "extens": [8, 13, 29, 42, 43], "extent": [3, 5, 11, 20, 22], "extern": [1, 37], "extra": [1, 5], "extract": [13, 14, 16, 18, 20, 23], "extran": 3, "extrem": [8, 21], "f": [0, 5, 7, 9, 15, 20, 21, 42, 45, 50], "f09_g17": [20, 22], "f98d05e312d19a84b74c45402a2904ab94d86e45": 28, "f_": 15, "f_i": 15, "face": 3, "facecolor": [3, 9], "facil": 16, "facilit": [33, 39], "fact": [3, 7, 8, 15, 18, 23, 28, 34, 35, 38], "facto": [8, 25], "factor": 40, "fail": [21, 37], "fairli": 21, "fake": [9, 11], "fall": 18, "fals": [10, 13, 18, 20, 23, 28, 45], "familiar": [1, 5, 7, 8, 9, 13, 14, 18, 19, 20, 21, 23, 29, 30, 38, 40, 42, 44, 46, 47], "fanci": 9, "far": [5, 16, 21, 42], "fashion": [20, 21, 23], "fast": [12, 17, 18, 34, 45], "fatal": [30, 37], "favorit": [0, 28, 37, 40, 46], "fc": 9, "featur": [2, 5, 7, 8, 9, 11, 16, 17, 18, 21, 22, 23, 30, 32, 33, 39, 42, 44], "feature_artist": 3, "feature_interfac": 3, "featureartist": 3, "featuretyp": [5, 23], "februari": 20, "feed": 10, "feedback": [0, 29, 30, 35, 38, 39], "feel": [0, 1, 9, 37, 38, 42, 45, 50], "fetch": [18, 20, 21, 22, 23, 30, 32, 34, 37], "few": [1, 7, 11, 14, 18, 28, 29, 32, 45, 50], "field": [13, 15, 16, 20, 21, 22, 47], "fieldtitl": [20, 22], "fifth": 13, "fig": [3, 9, 10, 11, 20, 22], "figsiz": [3, 9, 11, 18, 20, 22], "figur": [9, 10, 18, 20, 22, 23, 38, 50], "file": [0, 3, 4, 7, 10, 11, 16, 17, 18, 19, 20, 22, 23, 26, 28, 29, 30, 32, 34, 35, 36, 37, 38, 39, 41, 42, 46, 50], "filepath": [18, 20, 22, 23], "filepath2": [20, 22], "fill": [9, 21, 22, 28, 33, 42, 47], "fill_between": 22, "filler": 5, "filter": [16, 20, 33, 36], "filterwarn": 3, "final": [0, 1, 3, 5, 7, 11, 13, 14, 15, 18, 20, 21, 22, 23, 34, 35, 37, 38, 42], "find": [1, 3, 7, 8, 10, 11, 13, 14, 16, 18, 20, 21, 23, 24, 26, 28, 29, 30, 38, 42, 45], "finish": [1, 28, 34, 38, 40], "finit": [5, 15, 20, 22], "firm": 7, "first": [0, 2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 20, 22, 27, 28, 29, 30, 32, 36, 37, 38, 39, 41, 42, 44, 46, 50], "fit": [15, 20, 22], "five": [18, 28, 32], "fix": [5, 7, 14, 20, 22, 28, 29, 33, 37], "flag": 28, "flat": 3, "flaw": 7, "flexibl": [16, 17, 45], "flip": 14, "float": [5, 7, 9, 10, 14, 20, 21, 22, 47], "float32": [5, 20, 21, 22, 23], "float321": 23, "float32100": 23, "float3228": 22, "float32nan": 20, "float64": [5, 14, 18, 20, 21, 22, 23], "float640": [20, 21, 22], "float641": [22, 23], "float64190": 22, "float6425": 23, "float64283": 23, "flow": 30, "flowchart": 30, "fluffi": 45, "flux": [20, 22], "focu": [15, 23, 38], "focus": [19, 23, 33, 50], "folder": [35, 41, 42], "follow": [0, 1, 3, 5, 7, 9, 10, 11, 14, 15, 18, 20, 21, 22, 23, 24, 26, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 46, 50], "font": 11, "fontsiz": [9, 45], "forc": 50, "ford": 49, "forecast": [5, 11, 23], "forecast_model": 5, "forecast_tim": 5, "foreign": 5, "forget": 14, "forgotten": 42, "fork": [25, 28, 29, 33, 35, 36, 38], "form": [0, 1, 3, 5, 9, 18, 19, 20, 28, 37, 50], "formal": [16, 34], "format": [1, 5, 8, 9, 11, 16, 18, 23, 38, 40, 42, 45, 50], "format_byt": 21, "former": 37, "formerli": 19, "forth": 35, "fortran": [45, 47], "fortun": [20, 33], "forum": [34, 37, 39], "forward": [7, 15, 42], "foss": 28, "foster": 39, "found": [0, 1, 3, 5, 7, 20, 22, 29, 33, 50], "foundat": [1, 2, 8, 16, 29, 33, 35, 41, 44, 46, 49], "four": [9, 21, 26, 34], "fourier": [12, 14], "frac": [9, 42], "fraction": [20, 21, 22], "frame": [10, 18], "framework": 37, "free": [0, 1, 9, 21, 25, 28, 36, 40, 41, 42, 45, 47, 49], "freeli": [28, 39], "french": [3, 7], "freq": [18, 20, 21, 22, 23], "frequenc": [18, 20, 21, 22], "frequent": [0, 7, 15, 23, 24, 28], "fresh": 42, "friend": [7, 28], "friendli": [7, 9, 18], "from": [0, 1, 2, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 26, 28, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 50], "from_list": 9, "front": 1, "frustrat": 7, "fstr": 9, "ftp": 39, "full": [0, 3, 9, 14, 15, 18, 20, 23, 24, 39, 41, 50], "fullest": [20, 22], "fulli": [1, 6, 7, 23, 28], "fun": [19, 37, 45], "function": [3, 5, 7, 9, 11, 13, 15, 16, 18, 19, 21, 22, 23, 24, 32, 35, 38, 42, 45, 47], "fundament": [12, 14, 16, 23, 47, 50], "further": [3, 5, 7, 13, 15, 20, 22, 35], "further_info_url": [20, 22], "furtherinfo": [20, 22], "furthermor": 9, "futur": [5, 7, 18, 20, 30, 47], "futurewarn": [18, 20], "fx": 20, "fxid": [20, 22], "fxing": 28, "g": [5, 7, 9, 11, 15, 16, 17, 18, 20, 22, 26, 28, 32, 35, 38, 39, 46], "gain": 20, "galleri": [9, 11, 16, 23], "gap": 47, "garbag": 10, "garner": 18, "gatewai": 14, "gather": [24, 42], "gaug": 5, "gb": [20, 21, 22], "gca": 9, "gear": 38, "gener": [0, 1, 5, 7, 9, 10, 13, 16, 18, 20, 21, 22, 24, 28, 33, 34, 35, 37, 39, 40, 42], "generating_process_or_model": 23, "geo": [3, 16], "geocat": [3, 9, 11], "geograph": [2, 3, 16, 22, 23], "geoi": 23, "geometri": 5, "geophys": 7, "geopotenti": 23, "geopotential_height_isobar": 23, "georefer": 3, "geoscienc": [4, 7, 16, 19, 23, 25, 50], "geoscientif": [7, 17, 18, 20], "geospati": 2, "geospatial_lat_max": 23, "geospatial_lat_min": 23, "geospatial_lon_max": 23, "geospatial_lon_min": 23, "geox": 23, "geoxarrai": 23, "geoyarrai": 23, "get": [3, 7, 10, 13, 14, 15, 16, 28, 29, 30, 33, 34, 36, 37, 38, 41, 42, 44, 47, 48, 50], "get_item": 18, "get_loc": 18, "getitem": 21, "gf": 11, "gib": 21, "gif": 10, "git": [25, 29, 32, 34, 36, 38, 39, 44], "github": [0, 1, 5, 18, 20, 21, 23, 30, 32, 33, 38, 43, 44, 49, 50], "githubusercont": 50, "give": [1, 11, 13, 18, 21, 28, 35, 37, 43, 49], "given": [14, 15, 16, 20, 21, 28, 37, 42], "gl": 3, "global": [5, 7, 20, 22, 28], "globe": 5, "gmt": 7, "go": [1, 7, 8, 10, 15, 29, 34, 35, 36, 42, 46, 50], "goal": [11, 22, 26, 37], "goddamn": 28, "goe": [23, 42], "gone": 42, "good": [0, 1, 13, 18, 24, 28, 34, 37, 38, 42, 45, 46, 50], "good_heat_index": 13, "googl": [0, 7, 30], "got": 45, "gov": [20, 22], "govern": [20, 22], "gpmdescript": 23, "grab": 13, "grad_vector": 13, "gradient": 13, "gradient_i": 13, "gradient_x": 13, "grai": [3, 18, 42], "graph": [5, 16, 21], "graphic": [8, 21], "grayscal": 9, "grb": 23, "great": [15, 16, 24, 26, 28, 33, 40, 47], "greater": [9, 18, 20, 21, 23, 34, 45], "greatest": 39, "greatli": [1, 14, 16, 20, 23, 28], "green": [9, 10, 11, 32, 34, 38], "greenwich": 7, "gregori": 5, "gregorian": 7, "grei": 9, "grib": [4, 16, 23], "grib1_cent": 23, "grib1_level_desc": 23, "grib1_level_typ": 23, "grib1_paramet": 23, "grib1_subcent": 23, "grib1_tablevers": 23, "grib_level_typ": 23, "grib_table_vers": 23, "grib_variable_id": 23, "gribcollect": 23, "grid": [3, 16, 19, 20, 21, 22, 23, 45], "grid_map": [5, 23], "grid_mapping_nam": [5, 23], "gridhistori": 23, "gridlin": [3, 11, 22], "grinitialization_index": [20, 22], "group": [5, 16, 18, 20, 22, 23, 47, 48], "groupbi": [18, 22], "grover": 49, "grow": [5, 14, 19], "gt": [20, 21, 22, 23], "guarante": 24, "gui": [24, 30, 41], "guid": [1, 6, 13, 14, 15, 18, 20, 29, 32, 33, 35, 37, 40, 42, 50], "guidelin": 0, "gx1v7": [20, 22], "h": [5, 7, 15], "ha": [1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 22, 23, 28, 29, 30, 32, 33, 34, 35, 37, 38, 39, 42, 45, 47], "habit": 36, "had": [33, 34, 39], "half": 14, "hand": [5, 13, 14, 18, 20, 21, 28, 32, 33, 45], "handi": 24, "handl": [7, 15, 16, 22, 23, 38], "hang": 1, "happen": [7, 30, 47], "happili": 7, "hard": 11, "hardbound": 50, "hardcopi": 11, "harken": 47, "has_year_zero": [20, 21, 22], "hashtabl": 18, "hashtable_class_help": 18, "hasn": 42, "have": [0, 1, 2, 3, 5, 9, 10, 11, 13, 14, 15, 16, 18, 19, 20, 21, 23, 24, 26, 28, 29, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 45, 46, 47, 50], "haven": [28, 39], "hdf5": 5, "hdl": [20, 22], "he": [16, 28], "head": [16, 18, 28, 30, 34, 41, 42], "heartbreak": 16, "heat": [11, 13, 20, 22], "heatmap": 11, "heavili": 19, "height": [5, 16, 21, 23], "heightgrid_map": 23, "heights_var": 5, "hello": [1, 30, 32, 37, 41, 42, 45, 46], "help": [1, 5, 7, 9, 11, 13, 15, 16, 18, 20, 23, 24, 26, 28, 30, 32, 33, 36, 37, 38, 40, 41, 42, 46], "helper": 14, "helpfulli": 18, "henc": [14, 23, 37], "henceforth": 39, "here": [0, 1, 3, 5, 7, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 23, 24, 26, 27, 28, 29, 30, 33, 34, 36, 37, 39, 40, 41, 42, 45, 46, 47, 50], "hexadecim": 28, "hfsso": [20, 22], "hh": 7, "hi": 16, "high": [3, 7, 11], "high_tid": 7, "higher": [3, 23, 47], "highest": 13, "highli": [1, 5, 21, 37, 40], "highlight": [22, 42], "hinder": 38, "hist": [10, 18], "hist1": 9, "hist2": 9, "hist2d": [9, 10], "hista": 9, "histb": 9, "histc": 9, "histogram": [8, 9, 11, 18], "histor": [20, 22, 30, 37], "histori": [5, 8, 23, 30, 37], "historicalexternal_vari": [20, 22], "hit": 42, "hold": [5, 7, 14, 21, 23], "home": [3, 18, 20, 21, 22, 23, 50], "hood": [7, 16, 28], "hope": [33, 40], "horizont": [3, 5, 9], "host": [0, 23, 28, 30, 32, 35, 36, 37, 38, 39, 42], "hotter": 9, "hour": [5, 7, 16, 20], "hous": [32, 35, 39], "hover": [0, 45], "how": [0, 3, 4, 5, 9, 11, 13, 14, 15, 18, 20, 21, 23, 24, 25, 26, 28, 29, 30, 33, 35, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47], "howev": [1, 5, 7, 9, 10, 15, 18, 20, 21, 23, 28, 32, 34, 36, 37, 38, 42], "hpa": [5, 11, 16, 23], "hpalong_nam": 23, "hpastandard_nam": 23, "html": [0, 1, 3, 10, 11, 42], "html5": 10, "http": [1, 3, 18, 20, 22, 23, 30, 32, 35, 37, 39, 40, 49, 50], "hub": 42, "hue": 9, "huge": [24, 28], "human": [7, 18, 43], "humid": [13, 15], "hypothet": 5, "i": [0, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 29, 30, 31, 32, 33, 37, 40, 41, 42, 43, 45, 46, 47, 49, 50], "ic": [20, 21, 22], "icon": [32, 36, 38, 41, 42, 45, 50], "id": [18, 20, 21, 24, 32, 35, 36, 38, 39], "idea": [24, 28, 29, 33, 34, 35, 37, 39, 47], "ideal": 32, "ident": [7, 20, 21, 37, 45], "identifi": [5, 15, 18, 38, 45, 47], "idiot": 28, "idl": 47, "ignor": [3, 7, 15], "illustr": [1, 3, 5, 7, 9, 11, 13, 18, 20, 21, 22, 23, 32], "im": 11, "imag": [1, 2, 10, 18, 35, 42], "img": 1, "immedi": [21, 24, 29, 32], "impact": [28, 32, 37], "impati": 27, "imped": 21, "imper": 1, "implement": [5, 10, 21], "impli": [20, 22, 33], "implicit": 42, "implicitli": 38, "import": [0, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 45, 46, 50], "importantli": 14, "impos": [20, 22], "improv": [1, 3, 7, 9, 15, 23, 35, 38], "impuls": 16, "imshow": 11, "inch": [5, 11], "includ": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 30, 32, 33, 35, 37, 38, 39, 41, 42, 45, 46, 47, 50], "inclus": [1, 18, 38], "incompat": 15, "incorpor": [1, 16, 32, 33, 39], "increas": [5, 9, 11, 15, 21], "increasingli": [16, 35], "increment": [9, 32], "ind": [13, 15], "inde": 23, "indent": 45, "independ": [7, 11, 28, 30], "index": [0, 5, 10, 11, 15, 16, 20, 21, 23, 28, 37, 45], "index_col": 18, "index_nino34": 22, "index_nino34_rolling_mean": 22, "indexed_select": 23, "indexengin": 18, "indexerror": 13, "indic": [0, 1, 5, 7, 10, 14, 15, 18, 21, 23, 30, 32, 34, 38, 42], "individu": [5, 7, 9, 10, 11, 14, 15, 16, 18, 20, 21, 23, 35, 39, 50], "industri": [20, 22], "ineffici": 21, "inevit": [1, 7], "influenc": 7, "info": 9, "inform": [0, 1, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 26, 28, 34, 35, 38, 40, 42, 47, 50], "infring": 1, "infti": 42, "ing": 14, "inher": [7, 21], "inherit": [7, 8], "init": [10, 28], "init_func": 10, "initi": [5, 7, 11, 21, 33, 34, 37, 42], "initialis": [20, 22], "inlin": 42, "input": [7, 16, 20, 24, 28, 38, 39, 42], "insert": [1, 37], "insid": [9, 34, 37, 40, 41, 42], "insight": 20, "inspect": [14, 45], "inspir": [1, 19], "instal": [7, 26, 27, 28, 32, 42, 44, 45, 50], "instanc": [5, 13, 15, 16, 20, 41, 42], "instantli": 50, "instead": [1, 3, 5, 10, 15, 18, 20, 21, 23, 36, 42], "institut": [5, 16], "instruct": [1, 24, 26, 27, 30, 41, 42, 46, 50], "instructor": 40, "int": 5, "int32": [5, 15, 23], "int64": [14, 20, 23], "int641": 20, "int6440arrai": 23, "integ": [14, 18], "integr": [14, 16, 19, 20, 22, 23, 24, 34, 40], "intend": [10, 23, 32, 34, 50], "intens": 47, "intent": [18, 30], "intention": 15, "interact": [4, 8, 9, 11, 20, 21, 22, 26, 34, 35, 39, 40, 41, 44], "intercept": 11, "interchang": [18, 21], "interest": [5, 9, 21, 29, 32, 33, 36], "interfac": [2, 3, 9, 10, 11, 21, 23, 24, 26, 32, 36], "intermedi": [14, 15, 23], "intern": [20, 22], "interoper": [5, 24], "interp": 23, "interpol": [9, 11, 16, 20, 22], "interpret": [7, 15], "interspers": [1, 42], "interv": [5, 7, 9, 10, 11, 14], "interweb": 45, "intro": [1, 18], "introduc": [7, 8, 10, 13, 14, 18, 19, 20, 21, 22, 25, 35, 37, 42, 45], "introduct": [5, 8, 15, 20, 21, 22, 50], "introductori": 1, "intuit": [14, 19, 21], "invalid": 15, "invalidindexerror": 18, "invent": 16, "invers": [5, 13], "invert": 23, "investig": 14, "invit": 37, "invok": [7, 42], "involv": [7, 10, 15, 16, 20, 21, 22, 32, 37, 39], "iosp": 23, "ipykernel_2539": 5, "ipykernel_2563": 7, "ipykernel_2746": 18, "ipynb": [0, 26, 29, 41, 42, 50], "ipython": [7, 21, 42], "irregular": 13, "is_integ": 18, "isd": [20, 21, 22], "isel": [20, 21, 22], "isinst": 18, "isn": 42, "isobar": [11, 23], "isobaric1": 23, "isobaric1pandasindexpandasindex": 23, "isol": [24, 37], "isotherm": 15, "issu": [0, 1, 3, 7, 9, 18, 21, 25, 28, 29, 30, 32, 34, 35, 36, 37, 38, 39, 43], "item": [13, 15, 20, 33, 38, 45], "items": 15, "iter": [15, 18, 37, 45], "its": [2, 3, 7, 8, 9, 10, 13, 18, 21, 22, 23, 24, 28, 30, 32, 33, 35, 36, 38, 39, 40, 42, 47], "itself": [14, 18, 35, 38, 39, 42, 50], "j": [15, 49], "jan": [20, 28], "januari": [7, 18, 20, 23], "java": [7, 23], "job": 16, "join": [30, 47], "jonathan": 5, "journei": 12, "jukent": 30, "juli": 16, "julia": 26, "jump": 42, "jupyt": [1, 3, 7, 9, 10, 18, 21, 23, 24, 25, 29, 38, 42, 43, 44, 45, 46], "jupyterhub": 26, "jupyterlab": [1, 24, 26, 29, 41], "just": [3, 5, 10, 11, 13, 14, 15, 18, 23, 26, 28, 29, 30, 33, 34, 36, 37, 39, 40, 41, 42, 45, 46], "k": [9, 23, 49], "ka": 7, "kailyn": 49, "kalb": 5, "kbou": 5, "kdescript": 23, "keep": [1, 5, 7, 8, 11, 16, 20, 24, 28, 33, 36, 37], "kei": [1, 2, 8, 9, 16, 17, 18, 20, 21, 35, 37, 45], "kelvin": [5, 18, 20, 23], "kelvinstandard_nam": 23, "kent": 49, "kernel": [1, 28, 39, 41], "kevin": [28, 30], "keyboard": [41, 42], "keyboardinterrupt": 42, "keyerror": 18, "keyword": [3, 7, 9, 10, 11, 18, 20, 21, 23, 45], "kib": [21, 32], "kind": [37, 42], "km": 5, "km_coordinateaxistyp": 23, "know": [1, 7, 15, 16, 18, 20, 23, 30, 37, 47, 50], "knowledg": [1, 2, 13, 16, 18, 21, 23], "known": [1, 5, 6, 7, 11, 18, 20, 21, 23, 35, 37, 38, 39], "koun": 5, "ktyle": 28, "kwarg": [3, 9], "l": [30, 42, 49], "la": 22, "lab": [1, 41, 50], "label": [3, 9, 10, 15, 16, 17, 18, 19, 20, 23, 28, 30, 33, 36, 42, 45], "laboratori": [20, 22], "lack": [1, 21, 38], "lai": [14, 21], "laid": [1, 3, 11, 14], "lake": 3, "lake_mask": 3, "lambert": [5, 23], "lambert_conformal_con": 5, "lambert_conformal_coniclatitude_of_projection_origin": 23, "lambert_project": 5, "lambertazimuthalequalarea": 3, "lambertconform": 3, "lambertconformal_project": 23, "lambertconformal_projectiongrib_variable_id": 23, "land": [3, 20, 22], "land_mask": 3, "landic": [20, 22], "landscap": 11, "languag": [5, 7, 16, 17, 24, 26, 39, 40, 42, 43, 45, 50], "laptop": [27, 30, 32, 35, 45, 50], "larg": [7, 9, 13, 16, 18, 19, 20, 21, 23, 38, 47], "larger": [10, 15, 21, 34], "last": [3, 7, 10, 13, 14, 15, 18, 20, 28, 30, 37, 42, 45], "lastli": 50, "lat": [3, 5, 20, 21, 22, 23], "lat_0": 5, "lat_1": 5, "lat_bnd": [20, 22], "lat_bndslong_nam": [20, 21, 22], "lat_var": 5, "later": [1, 3, 5, 9, 10, 11, 18, 23, 28, 30, 32, 33, 34, 35, 37, 39, 42, 50], "latest": [0, 3, 24, 30, 32, 49], "latex": [1, 9, 26, 42], "latitud": [3, 5, 16, 20, 22, 23], "latitude_coordinateaxistyp": 23, "latitude_of_projection_origin": 5, "latitudestandard_nam": [20, 21, 22], "latitudeunit": [20, 21, 22], "latn": 3, "latpandasindexpandasindex": [20, 21, 22, 23], "latter": 37, "latxlon": [20, 22], "launch": [26, 41, 42, 50], "launcher": [26, 41, 42], "law": [7, 20, 22], "layer": [3, 13, 20, 21, 22], "layout": [8, 10, 42], "lcc": 5, "lead": [1, 3, 23, 34, 37, 39], "learn": [1, 3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 22, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 46, 47], "learner": [8, 32, 37, 40], "least": [20, 22, 30], "leav": [1, 14, 33], "lectur": [13, 14], "left": [9, 10, 11, 41, 50], "legal": 1, "legend": [9, 11, 20, 22, 45], "len": [14, 15], "length": [5, 7, 10, 14, 18, 20, 21, 22, 23, 42], "lengthi": 1, "less": [3, 10, 16, 19, 20, 21, 24, 47], "lesser": [10, 21], "lesson": [28, 32, 34, 37, 39, 40], "let": [1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 18, 28, 29, 30, 32, 33, 34, 36, 37, 38, 41, 42, 45, 46], "letter": [28, 47], "level": [5, 7, 9, 11, 15, 21, 22, 23, 50], "leverag": [23, 32, 39], "lgtm": 38, "liabil": [20, 22], "liabl": 37, "lib": [15, 18, 20, 21, 22], "librari": [2, 3, 5, 6, 7, 8, 10, 11, 12, 14, 17, 18, 19, 20, 21, 22, 23, 24, 42], "licens": [20, 22, 35, 49], "life": 15, "light": [9, 28], "lightgrei": 9, "like": [0, 1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 19, 20, 21, 24, 28, 29, 30, 32, 33, 34, 37, 38, 41, 42, 43, 45, 46], "limit": [7, 8, 16, 18, 20, 22, 23], "line": [1, 2, 3, 5, 10, 13, 14, 15, 16, 18, 23, 24, 28, 30, 32, 36, 37, 38, 39, 41, 42, 45, 46, 50], "line2d": 23, "linear": [12, 14, 16, 30], "linearli": [9, 45], "linearsegmentedcolormap": 9, "linestyl": [3, 11, 22], "linewidth": [3, 18, 22], "link": [1, 3, 10, 15, 23, 32, 33, 34, 36, 38, 39, 45], "linspac": [5, 9, 10, 13, 15, 23, 45], "linu": [28, 39], "linux": [24, 28, 32, 39, 40, 46], "list": [0, 1, 3, 5, 7, 9, 10, 11, 13, 14, 18, 20, 21, 22, 23, 24, 28, 32, 34, 36, 38, 40, 42, 47], "listedcolormap": 9, "listlik": 18, "liter": 7, "littl": [37, 50], "live": [3, 26, 30, 32, 35, 36, 50], "ll": [1, 3, 5, 7, 9, 10, 13, 15, 18, 30, 32, 34, 37, 39, 42, 50], "llnl": [20, 22], "load": [20, 22, 23, 42, 50], "loc": [11, 16], "local": [3, 7, 18, 28, 29, 30, 32, 34, 35, 36, 37, 38, 42, 45], "locat": [5, 9, 11, 15, 20, 22, 23, 32, 45, 50], "log": [30, 32, 36, 39], "logarithm": 47, "logic": [12, 20, 45], "login": 36, "logist": 9, "logo": [0, 1], "lon": [3, 5, 20, 21, 22, 23], "lon_0": 5, "lon_bnd": [20, 22], "lon_bndslong_nam": [20, 21, 22], "lon_var": 5, "london": 7, "lone": 3, "long": [7, 11, 14, 39, 42, 49], "long_nam": [5, 20, 22, 23], "longer": [3, 5, 24], "longitud": [3, 5, 7, 9, 16, 20, 22, 23], "longitude_coordinateaxistyp": 23, "longitude_of_central_meridian": 5, "longitudestandard_nam": [20, 21, 22], "longitudeunit": [20, 21, 22], "lonpandasindexpandasindex": [20, 21, 22, 23], "lonw": 3, "lonxarrai": 23, "look": [5, 7, 9, 11, 13, 14, 20, 28, 33, 34, 37, 39, 42, 45], "lookup": 15, "loop": 14, "loos": 21, "loss": 1, "lost": [23, 37], "lot": [9, 14, 16, 24, 45], "low": [7, 47], "lower": [1, 11, 47], "lowest": 13, "lt": [20, 21, 22, 23], "lunar": 7, "lunar_dai": 7, "lw": 22, "m": [5, 7, 14, 20, 21, 22, 23, 28, 29, 37, 42, 45, 49], "m2": 20, "m2variable_id": [20, 22], "m_avg": 20, "mac": [28, 32, 42, 46], "machin": [16, 24, 28, 32, 37, 41, 46, 47, 50], "made": [7, 15, 23, 28, 29, 30, 33, 34, 36, 37, 38], "magic": [7, 15], "magma": 9, "magnitud": 7, "mai": [0, 7, 8, 9, 10, 11, 15, 18, 20, 21, 22, 23, 24, 25, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 49, 50], "main": [0, 1, 3, 5, 10, 18, 20, 21, 22, 23, 26, 28, 29, 32, 33, 34, 38, 42, 50], "mainli": [23, 38], "maintain": [32, 33, 34, 37, 39], "major": [14, 23, 45], "make": [1, 2, 5, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 26, 30, 32, 33, 34, 35, 38, 39, 40, 45, 47, 50], "mam4": [20, 22], "manag": [1, 21, 22, 27, 28, 30, 33, 35, 37, 38, 39, 42, 50], "mani": [1, 3, 4, 5, 9, 10, 11, 14, 16, 18, 20, 21, 23, 28, 30, 36, 37, 38, 39, 40, 45, 47, 50], "manipul": [7, 12, 13, 14, 16, 17, 23, 45, 50], "manner": [1, 20, 21, 32, 50], "manual": [1, 14, 15, 23, 42], "manuscript": 37, "map": [1, 2, 5, 9, 11, 16, 22, 23], "marbl": [20, 22], "mark": [1, 33], "markdown": [1, 38, 40, 50], "marker": 11, "markers": 11, "markup": 42, "mask": [12, 13, 22, 29], "masked_sampl": 20, "master": [30, 37], "match": [1, 3, 7, 13, 14, 15, 18, 20, 23, 28, 42], "materi": [0, 1, 7, 23, 29, 38, 44, 49, 50], "math": [7, 13, 42, 50], "mathemat": [9, 12, 14, 23, 47], "mathjax": 1, "mathtext": 9, "matlab": [11, 40, 47], "matplotlib": [2, 9, 10, 13, 16, 18, 20, 22, 23, 39, 50], "matric": 12, "matter": 9, "max": [18, 20], "maxim": 15, "maximum": [16, 20], "mayb": 28, "mb": [11, 20, 21, 22], "md": 28, "mean": [1, 5, 7, 11, 12, 14, 15, 16, 18, 20, 21, 22, 23, 28, 33, 34, 36, 39, 40, 42, 47, 49], "meancom": [20, 21, 22], "meaning": [23, 38], "meant": [38, 42, 45], "meantim": 18, "meantime_titl": [20, 21, 22], "meantitl": [20, 21, 22], "measur": [7, 16, 42], "mechan": [7, 33, 34], "median": 20, "medic": 16, "meet": [9, 13, 18, 28, 36], "member": [20, 22, 29, 37, 38], "memori": [5, 10, 14, 15, 21, 41, 45, 47], "mention": [11, 16, 18, 23, 29, 33, 36, 39], "menu": [1, 38, 42, 45], "mercat": 3, "merchant": [20, 22], "mercuri": 28, "mere": 7, "merg": [9, 20, 22, 28, 29, 32, 33, 34, 37, 38], "merger": 37, "meridian": [3, 7], "merit": 33, "mesa": [20, 22], "meshgrid": [5, 9, 11], "mess": 28, "messag": [0, 1, 28, 30, 34, 37], "meta": 21, "metadata": [1, 5, 16, 23], "meter": 5, "method": [5, 9, 10, 11, 13, 15, 18, 21, 22, 30, 38, 41, 45, 50], "metoffic": 16, "metpi": [5, 14, 36], "mgrid": 3, "mib": [21, 32], "microsecond": [5, 7], "microsoft": 30, "mid": 28, "middl": 9, "might": [5, 6, 11, 14, 16, 25, 28, 29, 30, 33, 39, 40, 41, 47, 50], "millennia": 7, "million": [7, 21], "min": [18, 20], "mind": [28, 33, 35], "miniconda": [24, 41, 46], "miniconda3": [18, 20, 21, 22], "minimum": [15, 18, 20], "minor": 0, "minut": [1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 21, 22, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 46], "mip_era": [20, 22], "miscellan": 9, "misinterpret": 28, "mispronunci": 28, "miss": 5, "missing_valu": 5, "mistak": [1, 28], "mix": [14, 45], "mkdir": [42, 46], "mm": 7, "mode": [29, 37, 46], "model": [5, 7, 19, 20, 21, 22, 23, 29, 37], "modif": 37, "modifi": [5, 11, 13, 15, 20, 21, 23, 24, 28, 32, 37, 46, 50], "modul": [16, 24, 42], "moment": [18, 39, 50], "mon": [20, 21, 28], "monfurther_info_url": [20, 22], "monid": [20, 21, 22], "monitor": 36, "monochrom": 9, "month": [5, 7, 18, 20, 22], "monthli": [18, 20, 22], "monthpandasindexpandasindex": 20, "mood": 28, "more": [1, 3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 22, 24, 26, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 45, 46, 47, 50], "morlei": 49, "most": [0, 1, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 23, 28, 34, 37, 38, 39, 40, 44, 45, 47, 50], "mostli": [9, 18], "motiv": 37, "mountain": 7, "mountaintz": 7, "mous": 50, "move": [11, 20, 22, 28, 30, 34, 42], "movement": 26, "mpl": 3, "mu": 9, "much": [1, 3, 5, 7, 8, 12, 15, 16, 18, 21, 23, 24, 28, 30, 33, 35, 39, 42, 50], "multi": [13, 14, 15, 16, 19], "multi_mask": 13, "multidimension": [12, 13, 15], "multilin": 42, "multipl": [7, 9, 11, 13, 15, 18, 21, 22, 28, 30, 42], "must": [0, 1, 3, 5, 7, 10, 14, 15, 18, 20, 21, 23, 28, 30, 32, 34, 36, 37, 38], "mv": 28, "my": 37, "mylist": 45, "mypet": 45, "mysci": [41, 46], "myweirdlist": 45, "n": [7, 10, 14, 16, 18, 19, 21, 23, 45], "nabla": 13, "name": [1, 3, 5, 7, 9, 10, 11, 18, 20, 21, 22, 24, 28, 29, 30, 32, 33, 37, 38, 41, 42, 45, 46], "named_select": 23, "nan": [13, 20, 21, 22], "nanarrai": 20, "nano": [40, 46], "narr": [1, 23, 26, 40], "narr_19930313_0000": 23, "narrat": 42, "nasa": 5, "nation": [20, 22, 23], "nativ": [5, 17, 20, 21, 22], "natur": [2, 9, 13, 16, 20, 21, 32, 38, 47], "naturalearth": 3, "naturalearthdata": 3, "naturalearthfeatur": 3, "navbar": 1, "navig": [24, 26, 28, 30, 37, 38, 41, 50], "nbin": [9, 10], "nbyte": 21, "nc": [5, 20, 21, 22, 23], "ncar": [3, 20, 22], "ncarlicens": [20, 22], "ncdc": 18, "ncep": 23, "ncl": 47, "ncol": [9, 11, 20], "ndarrai": [13, 14, 18, 21, 23, 45], "ndenumer": 15, "ndim": 14, "nearest": [7, 20], "nearli": [7, 14, 18], "necessari": [1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 21, 22, 23, 24, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 41, 45], "necessarili": [10, 33], "need": [0, 1, 3, 5, 7, 9, 10, 13, 15, 16, 18, 20, 21, 23, 24, 25, 28, 29, 30, 32, 35, 36, 37, 38, 39, 41, 42, 44, 47, 48, 50], "neg": 14, "neglig": [20, 22], "netcdf": [1, 4, 16, 19], "netcdf4": [5, 16, 21], "netcdf4_class": 5, "network": 36, "never": 14, "new": [5, 7, 9, 11, 13, 14, 15, 16, 18, 20, 21, 23, 24, 27, 29, 32, 33, 34, 35, 38, 39, 40, 41, 42, 44, 45, 46, 47, 50], "new_shap": 15, "newaxi": 15, "newbranch": 30, "newli": [7, 15, 20, 32, 37], "next": [0, 9, 21, 22], "next_high_tid": 7, "next_low_tid": 7, "next_slic": 5, "nice": [7, 15, 18], "nicknam": [18, 45], "nino": 18, "nino12": 18, "nino12anom": 18, "nino3": 18, "nino34": 18, "nino34_degk": 18, "nino34_seri": 18, "nino34anom": 18, "nino3anom": 18, "nino4": 18, "nino4anom": 18, "nino_analyzed_output": 18, "ni\u00f1a": 22, "ni\u00f1o": 20, "nldn": 7, "nlevel": 18, "nnn": 37, "noaa": 18, "nois": 18, "noleap": [20, 21, 22], "non": [1, 5, 6, 14, 16, 20, 21, 22, 28, 30, 34, 49], "none": [3, 5, 10, 11, 18, 20, 21, 22, 23, 39], "nonesub_experiment_id": [20, 22], "nonetable_id": [20, 22], "nonetime_titl": [20, 22], "nonlinear": 9, "norm": [9, 22], "normal": [10, 11, 22], "normalized_index_nino34_rolling_mean": 22, "norman": 5, "north": [3, 23], "notat": [9, 14, 18, 23, 28, 45], "note": [0, 1, 2, 5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 21, 22, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 45, 46], "notebook": [2, 3, 5, 7, 9, 10, 11, 13, 14, 18, 19, 21, 23, 29, 38, 45], "noth": [13, 16, 28, 30, 39], "notic": [3, 7, 9, 11, 18, 20, 21, 28, 30, 32, 34, 35, 38, 39, 42], "notif": [25, 32, 37], "notifi": [33, 36], "now": [3, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 23, 28, 29, 30, 32, 33, 34, 35, 36, 37, 42, 46, 50], "nowher": 1, "np": [3, 5, 9, 10, 11, 13, 14, 15, 18, 20, 21, 23, 45], "npt": [9, 10], "nrow": [9, 11], "num": 14, "number": [1, 3, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 28, 33, 35, 37, 40, 42, 47, 50], "numer": [5, 7, 8, 9, 11, 14, 16, 20, 23], "numpi": [2, 3, 5, 6, 7, 9, 10, 16, 18, 19, 20, 35], "nvidia": 39, "ny": 7, "o": [11, 12, 28, 32, 46, 49], "obfusc": 7, "object": [1, 2, 3, 5, 9, 10, 12, 14, 18, 20, 22, 32, 45], "object2000": [20, 21, 22], "object2014": 20, "obs_data": 5, "obscur": 47, "observ": [20, 22, 23, 50], "obtain": [1, 7, 16, 18, 20, 21, 22], "obviou": [5, 21, 37], "obvious": 15, "oc": 15, "occas": 21, "occasion": [9, 16], "occur": [3, 7, 23, 30, 34, 36, 37], "occurr": 7, "ocean": [3, 16, 20, 21, 22], "oceansourc": [20, 22], "oceanstandard_nam": [20, 21, 22], "ocnbgchem": [20, 22], "octocat": 0, "odd": 15, "off": [7, 8, 14, 15, 16, 28, 36], "offer": [7, 10, 16, 21, 24, 35, 37, 39, 40, 42], "offici": [7, 9, 10, 17, 20, 21, 23, 28, 35, 37, 38, 40, 45], "offset": [7, 10], "often": [1, 7, 8, 15, 16, 18, 20, 21, 23, 28, 30, 32, 33, 35, 37, 39], "oftentim": 9, "ofx": [20, 22], "ofxout_nam": [20, 22], "ok": 37, "okai": 33, "old": [5, 33], "oldest": 37, "omit": 14, "omon": [20, 21, 22], "omonout_nam": [20, 21, 22], "omontracking_id": [20, 22], "onc": [1, 3, 9, 11, 18, 20, 23, 24, 29, 30, 32, 34, 36, 37, 42, 50], "one": [0, 3, 5, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 21, 22, 23, 24, 25, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 42, 44, 47, 50], "ones": [5, 35], "onli": [1, 3, 5, 7, 9, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 25, 28, 30, 34, 35, 36, 37, 38, 42, 50], "onlin": [7, 16, 39], "onto": [15, 20, 22, 47], "open": [0, 5, 8, 14, 17, 18, 19, 21, 22, 24, 25, 26, 28, 29, 30, 32, 33, 35, 36, 37, 38, 40, 41, 42, 44, 45, 46, 48, 49, 50], "open_dataset": [20, 21, 22], "opendap": 23, "oper": [6, 7, 8, 12, 13, 14, 15, 16, 21, 28, 32, 37, 42, 47], "operand": [14, 15], "opinion": 38, "opportun": [34, 38], "oppos": [18, 36], "opposit": 7, "opt": [36, 50], "optim": [1, 21, 23], "option": [1, 5, 7, 8, 9, 11, 14, 15, 18, 23, 32, 34, 35, 37, 38, 39, 40, 42, 45, 46], "orang": [9, 45], "order": [0, 1, 2, 5, 7, 9, 10, 11, 13, 15, 16, 18, 20, 21, 23, 28, 29, 30, 36, 37, 39, 42, 44, 45, 50], "ordinari": 23, "org": [3, 20, 22, 35, 49], "organ": [14, 15, 18, 28, 29, 32, 35, 39], "orient": [2, 3, 5, 7, 11, 28], "origin": [3, 9, 11, 13, 15, 18, 20, 22, 23, 28, 29, 30, 32, 34, 35, 37, 39], "original_own": 37, "original_repositori": 37, "originating_or_generating_cent": 23, "originating_or_generating_subcent": 23, "oscil": 18, "other": [1, 2, 3, 5, 6, 7, 8, 10, 11, 13, 14, 15, 16, 18, 21, 23, 24, 26, 30, 32, 33, 35, 37, 38, 39, 41, 42, 43, 47, 50], "otherwis": [18, 23, 28], "our": [0, 3, 5, 7, 9, 10, 11, 13, 14, 15, 17, 18, 20, 21, 22, 23, 29, 30, 32, 34, 37, 41, 42, 45, 46, 50], "ourselv": 33, "out": [0, 1, 3, 6, 7, 9, 11, 13, 14, 16, 18, 20, 21, 23, 26, 29, 33, 35, 38, 42, 44], "outcom": 37, "outlin": 37, "output": [1, 3, 5, 8, 9, 10, 15, 16, 18, 20, 22, 26, 28, 30, 32, 37, 40, 42, 45, 50], "outputrealization_index": [20, 22], "outsid": [1, 7, 20], "over": [0, 14, 18, 20, 22, 23, 28, 37, 39, 42, 45], "overal": [1, 22], "overestim": 1, "overflow": 7, "overlaid": 3, "overlap": [7, 15], "overload": 7, "overwhelm": [36, 38], "overwhelmingli": 28, "overwritten": 5, "own": [3, 9, 13, 14, 16, 18, 24, 28, 30, 32, 34, 35, 36, 37, 38, 39, 42, 44, 45, 50], "owner": [34, 35], "oxford": 16, "p": [7, 14, 15], "pacif": 22, "pack": 32, "packag": [0, 1, 2, 3, 5, 7, 8, 9, 10, 12, 14, 16, 18, 19, 20, 21, 22, 23, 27, 32, 35, 39, 40, 41, 44, 45, 47, 50], "page": [0, 3, 5, 7, 9, 10, 11, 18, 21, 23, 28, 30, 33, 34, 36, 39, 42, 45], "pai": [23, 28], "paid": 39, "pair": [15, 36], "pairwis": 15, "panda": [6, 7, 14, 15, 16, 19, 20, 23], "panel": [11, 41], "pangeo": 48, "paper": 37, "paragraph": 1, "parallel": [3, 16, 19, 37], "paramet": [10, 14, 50], "pare": 24, "parenthes": [13, 20, 45], "parlanc": 23, "parsabl": 5, "parse_d": 18, "part": [0, 1, 3, 5, 7, 9, 10, 15, 18, 23, 32, 34, 35, 42, 50], "parti": [7, 37, 38], "partial": [7, 10], "particip": [21, 25, 36, 39], "particular": [5, 7, 9, 13, 15, 18, 20, 22, 36, 37, 39, 50], "particularli": [16, 19, 28, 30, 39], "pass": [3, 9, 11, 15, 18, 20, 21, 23, 29, 30, 34], "passag": 7, "password": [30, 36, 39], "past": [15, 20, 22, 28, 32, 39, 42], "pat": [30, 36], "patch": 39, "path": [18, 23, 30, 37], "patient": 3, "pattern": [9, 15, 22], "paul": [30, 49], "pc": 50, "pcmdi": [20, 22], "pcolormesh": 23, "pd": [18, 23], "pdf": [9, 16], "peer": 40, "peopl": [1, 9, 28, 30, 38, 40], "per": 5, "percent": [10, 20, 21, 22], "percentag": 10, "perfection": 1, "perfectionist": 1, "perfectli": 38, "perform": [3, 5, 7, 10, 11, 15, 16, 18, 20, 21, 22, 23, 32, 33, 37, 38, 47], "perhap": [33, 37, 39, 40, 47, 50], "period": [22, 23, 37], "perman": 28, "permiss": [25, 32, 34, 37], "permit": [20, 22], "persist": 5, "person": [30, 32, 34, 37], "pertain": [1, 7, 21, 38, 42], "perturb": [20, 22], "physic": 3, "pi": [7, 9, 10, 13, 14], "pick": [9, 28, 33], "picontrolparent_mip_era": [20, 22], "pictur": [18, 26], "pie": 11, "piec": [21, 23, 30, 33, 34], "piechart": 8, "pillow": 10, "pink": [9, 10], "pisecond": 7, "pixel": [3, 11], "piyg": 11, "place": [1, 9, 13, 14, 32, 36, 37, 42, 43], "placehold": [5, 23], "placement": 3, "plagiar": 1, "plai": [13, 45], "plain": [5, 28, 42], "plan": [30, 33, 35], "plate": 3, "platecarre": [3, 22], "platform": [0, 11, 24, 25, 26, 27, 28, 39], "pleas": [0, 1, 2, 3, 10, 15, 18, 20, 23, 38], "plenti": 42, "plot": [2, 8, 9, 10, 13, 16, 20, 22, 26, 45], "plot_temp": 13, "plt": [3, 9, 10, 11, 13, 20, 22, 45], "png": [1, 11, 16], "po": 18, "point": [2, 3, 5, 7, 9, 10, 11, 13, 15, 20, 22, 23, 26, 28, 30, 32, 37, 39, 42, 47], "pointer": 30, "polar": [3, 15], "pole": [3, 20, 22], "polygon": 2, "pop2": [20, 22], "popul": [1, 32, 38, 42], "popular": [8, 11, 16, 18, 19, 20, 23, 26, 38, 39, 40, 42], "portabl": 47, "portion": [5, 18], "posit": [5, 12, 13, 15, 18, 23], "possibl": [1, 5, 7, 15, 18, 20, 21, 22, 28, 32, 38], "post": [35, 36], "potenti": [9, 20, 21, 22, 34, 37, 47], "power": [2, 13, 14, 15, 17, 18, 23, 28, 32, 35, 37, 50], "pr": [29, 30, 33, 34, 37, 38], "practic": [0, 7, 9, 13, 20, 23, 24, 25, 30, 34, 37, 38, 42], "pre": [1, 3, 20, 22, 28], "preambl": 44, "preced": 14, "preceed": 45, "precip": 5, "precip_bucket_bound": 5, "precis": [23, 37, 38], "predefin": 5, "predict": [23, 24], "prefer": [18, 29, 36, 38, 40, 41], "prefix": 1, "premad": 9, "premier": 23, "prepar": 1, "prepend": 15, "present": [5, 19, 20, 26, 40, 42, 50], "preserv": [13, 20], "preset": 20, "press": [5, 28, 33, 42, 45, 46, 50], "press_var": 5, "pressur": [5, 15], "pressure_coordinatezisposit": 23, "pressure_data": 23, "pretti": 16, "prettier": 42, "preval": 35, "preview": [15, 18, 29, 38], "previou": [1, 3, 5, 9, 10, 15, 18, 20, 21, 22, 23, 29, 30, 37], "previous": [20, 30, 32], "primari": [37, 38], "prime": 7, "print": [1, 11, 13, 14, 18, 20, 37, 41, 42, 45, 46], "printout": 17, "prior": [19, 30, 31, 50], "priorit": 38, "privat": 35, "pro": 36, "probabl": [7, 10, 18, 37, 47], "problem": [15, 21, 23, 26, 30, 33], "proced": 42, "process": [1, 2, 7, 10, 15, 16, 18, 20, 21, 23, 28, 29, 32, 34, 37, 38, 42], "prod": 20, "produc": [2, 3, 11, 20, 21, 22, 37, 45, 50], "product": [1, 13, 20, 38], "prof": 23, "profici": [23, 39], "profil": [5, 23], "profile_id": 5, "prognost": [20, 21, 22], "program": [5, 7, 16, 17, 18, 21, 26, 40, 42, 47, 50], "programm": 21, "programmat": 2, "progress": 21, "progressbar": 21, "proj": [2, 5], "proj_var": 5, "project": [0, 2, 5, 16, 18, 19, 21, 22, 23, 24, 25, 26, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 41, 48, 49, 50], "projectgrib_table_vers": 23, "projection_coordinateaxistyp": 23, "projection_x_coordin": 5, "projection_x_coordinateunit": 23, "projection_y_coordin": 5, "projection_y_coordinateunit": 23, "projectpythia": [18, 20, 23, 29, 32, 34, 35, 36, 37, 50], "projla": 3, "projlcc": 3, "projlcceur": 3, "projlccni": 3, "projmol": 3, "projpc": 3, "projstr": 3, "prompt": [11, 33, 42, 46], "prone": 19, "pronounc": 28, "proper": [5, 15, 18, 20, 22, 23, 30], "properli": [1, 3, 5, 7, 23], "properti": 23, "proport": 9, "propos": [29, 33, 34, 35, 38], "proprietari": 39, "protect": 38, "protocol": [32, 36, 39], "prototyp": 47, "provid": [0, 1, 3, 5, 7, 8, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 30, 33, 34, 35, 36, 37, 39, 40, 42, 44, 47], "prudent": 15, "public": [2, 11, 26, 33, 35, 37, 45], "publicli": 39, "publish": [24, 49], "pull": [0, 1, 13, 14, 18, 23, 25, 28, 32, 33, 35, 36, 39], "purpl": [9, 45], "purpos": [10, 16, 20, 21, 22, 23, 32, 37, 38, 50], "push": [28, 29, 30, 32, 34, 36], "put": [13, 37], "pwd": 42, "pxi": 18, "py": [5, 7, 16, 18, 20, 21, 22, 28, 30, 32, 37, 42, 46], "pyao": 16, "pycharm": 40, "pydata": [16, 35], "pyobjecthasht": 18, "pyplot": [3, 9, 10, 11, 13, 20, 22, 45], "pyproj": 5, "pythia": [2, 8, 14, 16, 18, 20, 21, 22, 23, 25, 30, 32, 33, 35, 36, 37, 39, 41, 46, 49], "pythia_dataset": [18, 20, 21, 22, 23], "pythia_foundations_env": [41, 46], "python": [1, 2, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 25, 26, 28, 30, 32, 35, 37, 39, 42, 44, 50], "python3": [18, 20, 21, 22], "pyx": 18, "q": [28, 33], "quadmesh": [9, 23], "qualit": 9, "qualiti": [2, 11, 45], "quantit": 18, "quantiti": 5, "question": [1, 5, 8, 21, 23, 38, 39], "queu": 21, "quick": [7, 15, 20, 23, 28, 42, 45], "quicker": 24, "quickest": 40, "quickli": [0, 7, 13, 18, 21, 24, 38, 40, 42, 47, 50], "quickstart": [7, 14, 18, 27, 35, 37, 40, 44], "quit": [7, 9, 16, 17, 18, 21, 38, 41], "quot": [20, 21, 22, 28, 45], "r": [9, 13, 18, 20, 26, 42, 49], "r11i1p1f1": [20, 22], "r11i1p1f1grid": [20, 22], "r11i1p1f1xarrai": [20, 22], "r1i1p1f1physics_index": [20, 22], "rad2deg": 14, "radar": [15, 16], "radian": 14, "radiat": 16, "rag": 5, "rain": 5, "rais": [10, 18, 28, 42], "ram": 21, "ran": 32, "randn": [5, 13, 15, 23], "random": [5, 9, 10, 12, 13, 14, 15, 21, 28], "randomli": [21, 29], "rang": [5, 7, 9, 14, 15, 18, 23, 42, 45], "rangeindex": 18, "rapid": [9, 47], "rather": [16, 21, 45], "raw": [1, 18, 19, 20, 22, 23, 50], "rc": 10, "rdylgn": 11, "re": [3, 5, 7, 11, 13, 15, 16, 18, 24, 25, 28, 33, 37, 41, 42, 47], "reach": 14, "read": [1, 5, 9, 16, 17, 18, 23, 30, 36, 37, 39, 42, 45, 47, 50], "read_csv": 18, "readabl": [9, 15, 18, 36, 43], "reader": [1, 50], "readi": [15, 24, 28, 29, 30, 34, 37, 38, 42], "readili": 18, "readm": [28, 35], "real": [7, 15, 20, 21, 22, 30, 42, 47, 50], "realiti": 7, "realli": [15, 28, 37], "realm": [20, 21, 22], "realpython": 7, "realunit": [20, 21, 22], "reanalysi": 23, "reason": [8, 18, 24, 28, 30, 40, 45, 47], "recal": [3, 14, 23, 28, 32], "receiv": [32, 36, 37], "recent": [3, 9, 13, 14, 15, 18, 20, 22, 28, 29, 30, 33, 34, 35, 38, 39], "recip": 37, "recogn": [15, 23, 33, 42], "recommend": [1, 5, 18, 24, 28, 29, 30, 32, 34, 36, 37, 38, 40], "record": [20, 22, 33], "red": [9, 10, 11, 13, 22, 38], "redefin": 42, "redirect": [26, 32, 37], "redisplai": 42, "reduc": [9, 10, 15, 18, 20, 30], "reduct": [20, 21], "ref": 31, "refer": [0, 10, 16], "referenc": [1, 2, 3, 6, 44], "reflect": [21, 30, 35], "reformat": 7, "refresh": [9, 30, 42], "regardless": [10, 18, 21, 40, 42], "region": [20, 21, 23], "regist": [32, 36], "regrid": [20, 22], "regriddinggrid_label": [20, 22], "regular": [5, 13, 30], "regularli": [5, 14], "reinforc": 21, "reintroduc": 14, "reject": 34, "rel": [13, 15, 16, 30], "relat": [1, 6, 7, 18, 21, 23, 32, 33, 36, 38, 47], "relationship": 9, "relative_humid": 13, "releas": [16, 24, 49], "relev": [0, 1, 5, 15, 20, 21, 28, 30, 33, 38], "remain": [3, 23, 38], "remark": 37, "rememb": [14, 16, 37, 42, 45], "remind": [13, 28], "remot": [23, 28, 29, 32, 34, 35, 36, 39, 42], "remov": [1, 3, 5, 7, 18, 20, 23, 24, 28, 38], "renam": [14, 30, 32, 41, 42], "render": [1, 3, 10, 18, 38, 42, 50], "reopen": 42, "reorder": 42, "repeat": [3, 7, 15, 30, 37, 45], "repeatedli": 10, "replac": [1, 5, 7, 15, 20, 21, 28, 38], "repo": [5, 28, 29, 32, 34, 35, 36, 37, 38, 39], "report": [5, 7, 20, 21, 22, 33, 35, 39], "repositori": [0, 3, 20, 25, 29, 33, 34, 36, 38, 39, 50], "repository_url": 37, "repres": [3, 5, 7, 9, 10, 13, 14, 15, 18, 20, 22, 23, 30, 39], "represent": [5, 7, 18, 21, 45], "reproduc": [10, 24, 44], "request": [0, 1, 20, 21, 22, 25, 28, 32, 33, 35, 36, 39, 40], "requir": [1, 3, 5, 10, 13, 14, 16, 20, 21, 22, 28, 29, 30, 32, 34, 36, 37, 38, 45, 46, 50], "requisit": 5, "rerun": [37, 42], "resampl": 20, "research": [16, 20, 22, 37], "resembl": [5, 22, 23, 30], "reshap": [13, 14, 15], "resid": [5, 32, 35], "resiz": 42, "resolut": [33, 38], "resolv": [23, 30, 32, 33, 49], "resourc": [16, 33], "respect": 37, "rest": [28, 50], "restart": 1, "restor": [28, 37], "restrict": [3, 11], "result": [3, 11, 13, 14, 15, 18, 20, 23, 28, 41, 42, 50], "retain": [23, 28], "retriev": [18, 20, 21, 23, 28, 42], "return": [7, 9, 10, 13, 15, 18, 20, 23, 37, 42], "reus": [9, 32, 42, 49], "reveal": [14, 23], "revers": [14, 18], "revert": [28, 46], "review": [1, 9, 15, 18, 20, 23, 29, 30, 34, 36, 37], "reviewnb": 38, "revis": [28, 30, 34], "revisit": [28, 42], "rho": 1, "rich": [21, 22, 23], "right": [1, 7, 9, 15, 28, 32, 33, 38, 41, 42, 45, 50], "rigor": 18, "river": 3, "rm": 28, "rmdir": 42, "robinson": 22, "robust": [17, 18, 20, 23, 24, 38], "rock": 37, "rocket": [45, 50], "roll": [20, 22], "room": 28, "root": [5, 42], "rose": [28, 49], "rough": [9, 22], "roughli": 1, "round": [7, 9, 14, 15], "rout": 40, "routin": 12, "row": [1, 7, 11, 13, 14, 15, 16, 18, 32], "rule": [1, 14, 15, 18, 24, 30], "run": [0, 1, 5, 7, 8, 9, 10, 15, 18, 20, 21, 22, 23, 24, 26, 27, 28, 32, 37, 44], "rundown": 40, "runnabl": 26, "runner": [18, 20, 21, 22, 23], "runtim": [7, 15, 42], "ryan": 3, "safe": [28, 30, 32, 37], "safeguard": 38, "sai": [5, 15, 28, 30, 32, 36], "said": 37, "sake": 5, "same": [1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 21, 22, 24, 26, 30, 32, 35, 37, 39, 40, 42], "sampl": [1, 5, 7, 20, 28, 30, 32, 37], "sample_environ": 24, "sandbox": [28, 30, 32, 34, 36, 37], "satisfi": [13, 28, 37, 38], "satur": 9, "save": [3, 11, 14, 16, 18, 21, 28, 29, 42, 46], "saw": [7, 28, 37], "scalabl": 15, "scalar": 5, "scale": [3, 16, 21], "scale_factor": 5, "scatter": 11, "scenario": [9, 22, 32], "scene": 23, "schedul": [5, 7], "school": 32, "scienc": [5, 7, 11, 16, 22, 50], "scientif": [5, 6, 12, 13, 14, 15, 16, 20, 21, 23, 28, 39, 44, 45, 47, 48, 50], "scientist": [16, 26, 40, 50], "scipi": [9, 14, 16, 23], "scitool": 3, "scope": [1, 7], "scratch": 25, "screen": [3, 32, 42], "screencast": 21, "screenshot": [36, 38, 39, 41], "script": [3, 24, 28, 32, 37, 40, 42, 46], "scroll": [34, 36], "sea": [9, 20, 21, 22, 29], "sea_ic": [20, 22], "sea_mask": 3, "sea_surface_temperaturetim": [20, 21, 22], "seaborn": 8, "search": 18, "searchabl": 33, "season": 20, "second": [3, 5, 7, 9, 10, 11, 14, 18, 20, 22, 28, 30, 32, 42, 50], "section": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 15, 16, 17, 18, 19, 20, 21, 23, 25, 28, 29, 30, 32, 34, 35, 36, 37, 38, 40, 42, 43, 44, 50], "secur": [18, 25], "see": [0, 3, 5, 9, 10, 14, 15, 16, 18, 20, 21, 22, 23, 24, 28, 29, 30, 32, 33, 34, 35, 36, 37, 41, 42, 45, 50], "seed": [10, 13], "seem": 3, "seemingli": 7, "seen": [11, 28, 50], "sel": [20, 22], "select": [1, 12, 13, 14, 15, 18, 20, 21, 24, 32, 36, 37, 38, 41, 42, 50], "self": [5, 18, 23], "semi_major_axi": 5, "semicolon": 3, "seminar": [26, 30, 42], "send": [1, 34], "sens": [7, 47, 50], "sensit": 42, "sent": 42, "separ": [1, 5, 10, 11, 13, 15, 17, 18, 21, 28, 32, 37], "sequenc": [14, 34, 37], "sequenti": [1, 9, 18, 37], "ser": 18, "seri": [11, 15, 16, 20, 21, 22, 26, 28, 30, 37, 39, 42], "serializationwarn": [20, 21, 22], "seriou": 1, "serv": [2, 23, 36, 39, 49, 50], "server": [7, 30, 41, 50], "servic": [23, 26, 38, 39], "session": [24, 40, 41, 46], "set": [3, 5, 6, 7, 9, 10, 11, 14, 15, 18, 20, 21, 22, 25, 28, 32, 35, 36, 37, 39, 41, 46, 47], "set_data": 10, "set_ext": 22, "set_facecolor": 3, "set_titl": [3, 11], "set_xlabel": 11, "set_xlim": 10, "set_ylabel": 11, "set_ylim": 10, "sever": [5, 7, 22, 35], "sh": 28, "shade": 11, "shape": [2, 3, 5, 12, 13, 14, 15, 20, 21], "shapefil": 2, "share": [3, 5, 26, 39, 41, 42, 49, 50], "sharealik": [20, 22], "sheet": [9, 10, 24], "shell": [28, 32, 50], "shelv": [20, 21, 22], "shift": [41, 42, 45, 47, 50], "shine": 7, "ship": [45, 50], "short": [1, 11, 35], "shortcom": 23, "shortcut": [7, 18, 41], "shorten": [11, 14, 23], "shorter": 15, "shorthand": 18, "should": [1, 2, 5, 7, 9, 11, 12, 13, 14, 15, 16, 19, 20, 21, 22, 23, 30, 32, 34, 37, 38, 39, 41, 42, 50], "show": [1, 3, 5, 7, 9, 10, 14, 15, 18, 21, 23, 28, 29, 30, 32, 33, 37, 43], "shown": [1, 5, 7, 9, 10, 18, 20, 21, 22, 23, 28, 29, 35, 36, 42], "shut": 41, "shutdown": 41, "side": [10, 42], "sidebar": [1, 38, 41, 50], "sigma": [1, 9], "sign": [36, 39], "signal": 37, "signific": 23, "significantli": 7, "similar": [3, 5, 9, 11, 14, 18, 20, 21, 23, 26, 28, 32, 37, 38, 40, 42], "similarli": [10, 14, 16, 18, 20, 23, 24, 36], "simpl": [5, 8, 11, 16, 18, 19, 20, 21, 28, 29, 30, 33, 37, 38, 43], "simpler": [15, 23, 37], "simplest": [11, 28, 37, 50], "simpli": [0, 3, 5, 7, 9, 15, 18, 21, 23, 28, 30, 33, 35, 36, 37, 38, 39, 45, 46, 50], "simplic": 3, "simplifi": [14, 15, 16, 20, 23, 28, 37, 38], "simul": [12, 20, 22], "simultan": [9, 18, 20, 41, 42], "sin": [3, 9, 10, 13, 14, 45], "sin_t": 14, "sinc": [0, 3, 5, 10, 20, 21, 22, 23, 28, 29, 32, 33, 42], "sine": 10, "sine_integr": 14, "sing": 28, "singl": [1, 8, 10, 11, 13, 15, 18, 20, 21, 22, 23, 30, 34, 35, 37, 40, 42, 45], "sintheta": 45, "sit": 37, "site": [5, 18, 20, 21, 22, 33, 42, 50], "situ": [5, 20, 21, 22], "situat": [1, 7, 38], "six": [5, 7, 22], "size": [1, 3, 5, 9, 10, 11, 13, 14, 15, 20, 21, 22, 23], "skill": [16, 38, 44, 48, 50], "skip": 15, "slang": 28, "sleep": [7, 42], "slice": [15, 17, 21, 22], "slightli": 37, "slope": 11, "slower": [11, 47], "small": [3, 9, 21, 28, 29, 37, 38], "smaller": [9, 18, 21, 30], "smooth": 22, "snapshot": 28, "sneak": 18, "so": [3, 5, 7, 13, 14, 15, 16, 18, 21, 22, 23, 24, 28, 29, 30, 32, 35, 36, 37, 39, 40, 42, 47, 49], "social": 36, "softwar": [1, 5, 26, 28, 32, 35, 37, 42, 44], "solid": [3, 16], "solut": [15, 37], "solv": [15, 21, 26, 30], "some": [1, 5, 8, 10, 11, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 25, 29, 30, 32, 33, 36, 38, 39, 41, 42], "some_equ": 9, "someon": [33, 34, 47], "somepackag": 24, "someth": [13, 14, 24, 28, 32, 33, 37, 42, 45], "sometim": [5, 18, 36, 42, 47, 50], "sometru": 21, "somewhat": [13, 30], "somewher": [13, 28], "sophist": 14, "sort": [12, 13, 18, 21, 33], "sort_valu": 18, "sound": 9, "sourc": [0, 5, 7, 8, 9, 17, 18, 19, 24, 25, 26, 28, 32, 35, 37, 40, 41, 42, 44, 48, 49, 50], "source_id": [20, 22], "south": [16, 22], "southern": 18, "space": [3, 5, 14, 18, 24, 34, 45], "span": 9, "spatial": [3, 5, 20, 23], "spe": 50, "speci": 45, "special": [8, 9, 10, 20], "specif": [1, 5, 7, 9, 10, 13, 14, 18, 20, 21, 23, 24, 25, 26, 28, 30, 33, 34, 35, 37, 38, 40, 44, 49], "specifi": [5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 23, 24, 37, 39], "speed": [13, 14, 15, 18, 21], "speed2": 13, "spell": 38, "spend": 16, "sphere": 32, "spheric": 5, "spit": 42, "split": [21, 30], "sporad": 5, "spreadsheet": [17, 18, 35], "sprung": 39, "spyder": [24, 40], "sqrt": 9, "squar": [3, 15, 20, 23, 42, 45], "ss": 7, "ssh": [39, 40], "sst": [20, 22, 29], "stack": [7, 16, 23, 42, 44], "stackoverflow": 21, "stage": [13, 32, 37], "stai": 30, "stale": 30, "stand": 42, "standard": [1, 5, 6, 7, 8, 16, 20, 22, 23, 25, 26, 38, 42, 45, 50], "standard_nam": [5, 23], "standard_parallel": 5, "standardbranch_time_in_child": [20, 22], "start": [1, 5, 7, 9, 11, 12, 13, 14, 15, 16, 18, 21, 23, 28, 33, 34, 38, 40, 41, 42, 44, 45, 48, 50], "stat": 9, "state": [1, 5, 7, 15, 20, 21, 23, 28, 38, 42], "state_bord": 3, "statement": [1, 7, 15, 18, 23, 37, 38, 42, 45], "static": [8, 16, 34, 50], "statist": [9, 12, 16, 22, 42], "statu": [29, 30, 37, 42], "std": [18, 20, 21, 22, 23], "std_dev": 22, "step": [0, 1, 5, 14, 18, 20, 21, 22, 23, 24, 28, 29, 30, 34, 36, 37, 38, 39, 50], "stereograph": 3, "stid": 5, "stid_var": 5, "still": [3, 5, 9, 28, 30, 37, 39, 42], "stock_img": 3, "stop": [7, 14, 18, 21, 23, 28], "storag": 21, "store": [3, 5, 7, 13, 21, 23, 28, 32, 35, 37, 41, 46], "storm": 7, "str": 5, "str_len": 5, "straight": [3, 40], "straightforward": [5, 21], "strategi": [3, 21], "stream": 21, "streamlin": [16, 23], "strictli": [0, 21], "stride": 15, "stride_trick": 15, "strike_tim": 7, "string": [3, 5, 7, 9, 10, 18, 20, 42, 47], "strongli": [20, 22], "structur": [1, 5, 9, 18, 19, 23, 33, 47], "struggl": 33, "studio": [30, 40], "stupid": 28, "style": [9, 11, 14, 18], "sub": [15, 16], "sub_experiment_id": [20, 22], "subhead": 42, "subject": 7, "submiss": 22, "submit": [20, 22, 29, 32, 34, 37, 38], "submodul": 45, "subplot": [3, 10, 20], "subplot_mosa": 9, "subplot_numb": 11, "subsequ": [3, 5, 7, 28, 37], "subset": [13, 15, 21], "subtract": 22, "subvers": 28, "succe": [21, 37], "success": [10, 37, 39], "successfulli": [1, 5, 34], "succinct": 15, "suddenli": 28, "suffici": 38, "suggest": [0, 13, 15, 16, 30, 33, 34, 38], "suit": [7, 11, 28, 33], "sum": [10, 13, 14, 20, 21, 31, 45, 47], "sum_": 42, "sumcom": [20, 22], "summar": [1, 18, 20], "supercel": 7, "supercomput": [40, 46], "suppli": [7, 20, 22], "support": [3, 5, 8, 10, 16, 20, 21, 26, 32, 36, 37, 39, 40, 50], "suppos": 7, "suppress": 3, "suptitl": 9, "sure": [1, 9, 13, 18, 21, 28, 32, 33, 37, 38, 50], "surfac": [11, 20, 21, 22, 23, 25, 29], "surfaceposit": 23, "surfaceunit": 23, "surfacexarrai": 23, "surg": 7, "surprisingli": 37, "surround": 35, "svg": 11, "svn": 39, "swap": 23, "switch": [28, 37, 38, 42], "sy": [1, 21], "symbol": [20, 21, 23, 42], "sync": [30, 37], "synchron": 35, "syntax": [7, 8, 9, 14, 18, 20, 23, 24, 40, 42], "synthet": 13, "system": [1, 3, 7, 8, 20, 24, 26, 28, 29, 32, 36, 37, 40, 41, 42, 44], "t": [5, 7, 9, 13, 14, 15, 16, 18, 21, 23, 28, 30, 36, 37, 39, 42, 47, 50], "tab": [11, 13, 35, 36, 38, 41, 42], "tabl": [1, 18, 20, 22, 42], "table_id": [20, 22], "tableau": 11, "tabular": [16, 17, 18, 19, 23], "tag": [1, 10, 21, 29], "tail": 18, "tailor": 19, "take": [0, 1, 3, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 23, 24, 28, 29, 32, 33, 34, 37, 38, 39, 42, 45, 47, 50], "taken": [11, 21, 22], "talk": 42, "tarea": 20, "tareadescript": [20, 22], "target": 30, "task": [7, 16, 22, 33, 37, 38], "taught": 40, "tbound": [20, 21, 22], "tbv": 5, "tcp": 39, "team": [1, 30, 34, 37, 38], "teammat": 34, "technic": [10, 21], "techniqu": [1, 9, 11, 15, 18, 21, 22, 23], "technologi": [25, 50], "teleconnect": 18, "tell": [15, 28, 30], "temp": [5, 11, 13, 15, 23], "temp2": 13, "temp_45": 13, "temp_in_celsiu": 23, "temp_slic": 5, "temp_var": 5, "temperatur": [5, 9, 11, 13, 15, 18, 20, 21, 22, 23, 29], "temperature_degc": 18, "temperature_isobar": 23, "temperaturegrid_map": 23, "temperaturemipt": [20, 21, 22], "temperaturetyp": [20, 21, 22], "templat": [0, 33], "tempor": [5, 20, 21, 22, 23], "temporarili": 15, "temps_1000": 11, "temps_strid": 15, "temps_var": 5, "ten_highest": 13, "tend": 47, "tenth": 13, "term": [3, 5, 7, 11, 20, 21, 22, 32, 39, 47], "termin": [24, 26, 30, 32, 34, 38, 41, 50], "termsofus": [20, 22], "test": [7, 20, 32, 39, 40, 41, 42, 46], "text": [1, 3, 5, 13, 18, 26, 28, 29, 32, 33, 37, 38, 40, 45, 46, 50], "textbook": 50, "th": 10, "than": [1, 3, 7, 10, 11, 14, 16, 18, 20, 21, 22, 35, 37, 38, 45, 47, 50], "thank": 1, "thankfulli": 30, "thei": [1, 3, 5, 6, 7, 9, 11, 14, 15, 16, 20, 21, 22, 23, 24, 25, 28, 30, 33, 34, 37, 38, 40, 42, 47, 50], "them": [1, 5, 6, 7, 9, 13, 14, 16, 18, 20, 21, 23, 28, 29, 30, 32, 33, 34, 35, 37, 42, 45, 47, 50], "theme": 42, "therebi": 10, "therefor": [5, 7, 16, 18, 20, 21, 23, 35, 38], "theta": 45, "thi": [0, 2, 3, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 46, 47, 48], "thing": [1, 5, 8, 11, 14, 16, 23, 28, 37, 45], "think": [26, 28, 37], "third": [7, 11, 38, 42], "thorni": 7, "thoroughli": 30, "those": [2, 3, 5, 7, 13, 14, 18, 20, 21, 23, 28, 32, 36, 38, 39], "though": [3, 9, 15, 28, 38, 39, 42], "thought": [22, 26, 33], "thousand": 21, "three": [3, 5, 7, 9, 10, 14, 20, 22, 28, 35, 42], "through": [1, 2, 3, 7, 10, 11, 12, 14, 18, 19, 20, 21, 23, 25, 28, 29, 30, 33, 34, 36, 37, 38, 40, 42, 45, 50], "throughout": [15, 32], "thu": [5, 8, 9, 28, 30, 39], "thumb": 30, "thunderstorm": 7, "ti": [23, 26], "tide_dur": 7, "tide_length": 7, "tightli": 19, "tile": 15, "tim": 5, "time": [0, 1, 3, 5, 6, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 22, 24, 26, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 45, 46, 50], "time1": 23, "time1pandasindexpandasindex": 23, "time_bnd": [20, 22], "time_bndsstandard_nam": [20, 21, 22], "time_bound": 5, "time_coordinateaxistyp": 23, "time_label": [20, 21], "time_titl": [20, 21], "time_unit": 5, "time_v": 5, "time_var": 5, "timearrai": 23, "timedelta": [5, 23], "timeit": [7, 42], "timelong_nam": 23, "timepandasindexpandasindex": [20, 21, 22, 23], "timer": 42, "timescal": 7, "timeseri": [5, 6, 18, 23], "timestamp": [28, 35], "timetime_label": [20, 21, 22], "timetitl": [20, 21, 22], "timetyp": [20, 21, 22], "timezon": [5, 7], "tip": [18, 38], "titl": [1, 5, 9, 10, 20, 21, 22, 33, 34, 37, 45], "tm": 7, "tmp": [5, 7, 18], "to_csv": 18, "todai": 28, "todo": 33, "togeth": [13, 14, 15, 24, 30, 32, 34, 37, 47], "toggl": 36, "toi": 14, "toler": 23, "too": [9, 11, 13, 16, 21, 37, 42], "took": 7, "tool": [5, 8, 10, 15, 17, 18, 24, 28, 35, 37, 38, 39, 40, 41, 44], "toolbar": [41, 42], "toolbox": 8, "toolkit": 16, "toolset": 24, "top": [0, 1, 2, 8, 9, 16, 17, 18, 19, 20, 21, 22, 23, 32, 33, 36, 37, 38, 41, 42, 45, 50], "topic": [1, 6, 9, 13, 14, 15, 18, 20, 22, 23, 25, 32, 33, 35, 36, 38, 50], "topk": 21, "torvald": [28, 39], "tos": [20, 21, 22, 29], "tos_anom": 20, "tos_clim": 20, "tos_nino34": 22, "tos_nino34_anom": 22, "tosarrai": [20, 22], "toslong_nam": [20, 21, 22], "tosprov": [20, 21, 22], "tosvariant_info": [20, 22], "tosxarrai": [20, 21], "total": [1, 13, 20, 21, 22, 32, 45], "touch": [30, 42, 46], "tour": 45, "traceback": [13, 14, 15, 18], "track": [5, 7, 16, 21, 28, 30, 33, 34, 39], "tracker": 28, "tracking_id": [20, 22], "trade": [15, 16], "tradit": 23, "tradition": 16, "train": [7, 23], "trajectori": 5, "transfer": 30, "transform": [2, 3, 12, 14, 20, 22], "translat": 23, "transpar": 21, "transpos": 20, "trapz": 14, "treat": 18, "tree": 28, "trial": [1, 7], "trickier": 28, "trigger": 34, "trivial": 50, "tropic": 7, "truckload": 28, "true": [3, 5, 7, 9, 10, 11, 13, 15, 18, 20, 21, 22, 45], "truli": 42, "try": [1, 5, 7, 11, 13, 15, 16, 18, 20, 23, 28, 30, 37, 38], "tue": 28, "tunnel": 40, "tupl": [9, 15], "turbo": 20, "ture": 1, "turn": [13, 15, 17, 24, 28, 36, 42], "tutori": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 17, 18, 19, 20, 21, 22, 23, 26, 29, 30, 33, 35, 36, 37, 38, 40, 42, 43, 44, 45], "twelv": 5, "two": [5, 7, 9, 13, 14, 16, 18, 20, 21, 22, 23, 24, 28, 29, 30, 32, 33, 34, 36, 37, 42, 45, 50], "txt": [28, 42], "tyle": [28, 49], "type": [1, 3, 5, 7, 8, 9, 10, 11, 14, 15, 18, 20, 21, 23, 24, 29, 30, 32, 33, 36, 38, 39, 41, 42, 46, 47], "typeerror": 18, "typic": [5, 7, 10, 22, 30, 32, 34, 35, 37, 38, 39, 42, 47], "typo": [1, 28, 29, 33], "tzinfo": 7, "u": [3, 7, 13, 14, 15, 17, 18, 20, 21, 23, 27, 28], "u_wind": 23, "ucar": [20, 22], "udunit": 5, "uk": 3, "ultim": [30, 32, 33], "unabl": 37, "unambigu": 7, "unavail": [10, 23], "unawar": 7, "unchang": 38, "uncheck": 36, "unclear": 33, "uncomfort": 24, "uncommon": 9, "under": [0, 3, 4, 6, 7, 16, 17, 20, 22, 28, 31, 34, 37, 38, 41, 43, 45, 49], "underestim": 1, "underli": [1, 14], "underneath": 34, "underpin": 15, "underscor": 42, "understand": [1, 5, 7, 9, 13, 14, 15, 18, 20, 21, 23, 28, 30, 35, 38, 40], "understood": 18, "undo": 28, "undoubtedli": 16, "unfamiliar": [1, 18, 23, 38], "unfortun": [7, 15, 32], "unidata": [5, 7, 23], "unintend": 42, "uniqu": [5, 18, 24, 28, 39], "unit": [5, 7, 20, 21, 23], "univers": [7, 28], "unix": [28, 50], "unknown": 21, "unless": 37, "unlik": [21, 32], "unlimit": 5, "unmask": 20, "unneed": 10, "unord": 9, "unsatisfi": 37, "unsatur": 9, "unsav": 42, "unstag": 28, "unsubscrib": 36, "unsuccess": 7, "until": [1, 15, 21, 28, 30, 37, 38, 50], "untitl": [41, 42], "untrack": 30, "unus": 5, "unwant": 10, "unwatch": 36, "unweight": 20, "unweighted_mean_global_anom": 20, "up": [5, 10, 11, 14, 15, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 32, 33, 34, 36, 37, 39, 41, 45, 46, 47, 50], "updat": [0, 5, 24, 28, 37, 38, 40, 42], "upload": [32, 36, 42], "upon": [7, 11, 16, 23, 28], "upper": [11, 32, 41, 42], "upsampl": 20, "upstream": [30, 32, 34, 35], "url": [26, 29, 32, 36, 37], "us": [0, 2, 4, 5, 6, 7, 8, 9, 14, 16, 17, 19, 22, 25, 27, 29, 30, 32, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 49], "usabl": [5, 23], "usag": [15, 18, 20, 21, 23, 28, 39, 45], "usainstitution_id": [20, 22], "user": [5, 12, 13, 14, 16, 18, 20, 21, 24, 25, 26, 27, 28, 30, 35, 36, 38, 39, 42, 44, 47, 50], "usernam": 30, "usual": [1, 5, 7, 9, 10, 16, 18, 20, 35, 38, 42, 45, 47], "utc": 5, "utcnow": [5, 7], "util": [11, 21, 47], "v": [13, 23, 30, 32, 37, 42], "v2": 20, "v2023": 49, "v3": 23, "v3featuretyp": 23, "val": 15, "vala": 15, "valb": 15, "valid": [5, 13, 18, 20, 21, 23, 32], "valid_max": 5, "valid_min": 5, "valu": [3, 5, 9, 10, 11, 14, 15, 17, 21, 22, 42, 45], "valuabl": [13, 15], "valueerror": [10, 14, 15], "var": [20, 21, 22], "var_7": 23, "vari": [5, 28], "variabl": [7, 10, 11, 20, 21, 22, 28, 40], "variable_id": [20, 21, 22], "variablesmipt": [20, 22], "variablestyp": [20, 22], "varianc": [9, 20], "variant_info": [20, 22], "variant_label": [20, 22], "varieti": [3, 8, 11, 29, 37], "variou": [3, 7, 9, 10, 11, 12, 13, 18, 20, 35, 39], "vast": 45, "vcss": 28, "ve": [0, 3, 10, 15, 16, 28, 30, 32, 34, 42, 45, 46, 47, 50], "vec": 13, "vector": [2, 6, 16, 20], "verbos": 14, "veri": [1, 9, 14, 15, 16, 17, 18, 21, 23, 28, 32, 38, 40, 42, 47, 50], "verif": 38, "verifi": [5, 7, 18, 22], "vernacular": 32, "versa": 33, "version": [0, 1, 3, 5, 7, 18, 20, 21, 24, 25, 29, 30, 32, 34, 36, 37, 38, 41, 42, 44, 49, 50], "vertic": [5, 20, 22, 23], "via": [0, 3, 11, 18, 20, 22, 24, 25, 30, 32, 34, 36, 37, 39, 40, 42], "vice": 33, "vicin": 3, "video": [3, 10, 20, 21, 35, 39], "view": [0, 1, 3, 5, 9, 15, 18, 21, 23, 36, 37, 42, 50], "viewabl": 0, "vim": [40, 46], "viridi": 9, "virtu": 32, "visibl": 37, "visit": [21, 39, 40], "visual": [8, 9, 11, 16, 18, 19, 21, 24, 26, 30, 40, 47, 50], "visualis": 16, "vital": [35, 40], "vmax": [9, 11, 22], "vmin": [9, 11, 22], "vocabulari": 30, "volum": [5, 20, 22], "w": [5, 23], "wa": [1, 3, 7, 9, 16, 18, 20, 21, 22, 23, 28, 30, 33, 37, 42, 45, 50], "wai": [1, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 23, 24, 28, 29, 30, 33, 34, 36, 37, 39, 40, 42, 45, 50], "wait": [21, 29, 30, 34, 37, 42], "walk": [15, 25], "wall": 21, "want": [7, 9, 10, 11, 15, 18, 23, 24, 25, 29, 30, 33, 34, 36, 37, 40, 41, 42, 46, 47, 50], "ward": 16, "warm": 22, "warrant": 18, "warranti": [20, 22], "wasn": 28, "watch": 36, "water": 3, "wave": 10, "we": [1, 3, 5, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 25, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 45, 46, 50], "weather": [5, 7, 16, 23], "web": [0, 26, 28, 32, 37, 38, 40, 41, 42, 50], "webpag": 38, "websit": [2, 19], "wedg": 10, "weight": [20, 22], "weighted_mean_global_anom": 20, "welcom": 14, "well": [1, 3, 5, 7, 8, 9, 13, 14, 15, 17, 18, 20, 21, 26, 28, 29, 32, 33, 35, 38, 40, 42, 50], "were": [5, 8, 15, 19, 21, 26, 28, 30, 33, 37], "what": [25, 29, 47, 50], "whatev": [7, 32, 36], "wheel": 16, "when": [0, 1, 3, 5, 6, 7, 8, 9, 10, 11, 13, 15, 16, 18, 21, 22, 23, 26, 28, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 47, 50], "whenev": [3, 36], "where": [0, 1, 3, 5, 6, 7, 9, 10, 11, 13, 14, 15, 18, 21, 22, 23, 28, 30, 32, 34, 37, 38, 39, 40, 41, 42, 45, 46, 50], "wherea": 42, "wherev": [1, 28], "whet": 45, "whether": [1, 5, 9, 16, 20, 32, 33, 42], "which": [1, 3, 5, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 26, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 47, 50], "while": [0, 3, 16, 20, 21, 22, 28, 30, 32, 33, 35, 36, 37, 38, 39, 42, 45, 49, 50], "whirlwind": 45, "whistl": 40, "white": [9, 42], "whiteak": 5, "who": [35, 40], "wholeheartedli": 38, "whom": [28, 38], "whose": [7, 11, 26], "why": [7, 9, 11, 23, 25, 33, 40, 44], "wide": [11, 19, 28, 37, 47], "wider": [9, 16], "widespread": 47, "width": [9, 21], "wikipedia": 39, "wind": [13, 16, 23], "wind_vector": 13, "windgrid_map": 23, "window": [15, 20, 22, 37, 41, 42, 46, 50], "windspharm": 16, "wise": 13, "wish": [1, 7, 21, 32, 36, 37], "within": [5, 8, 13, 14, 15, 16, 18, 20, 23, 24, 28, 30, 33, 35, 37, 40, 41, 42, 47], "without": [0, 1, 7, 9, 10, 14, 15, 18, 20, 22, 23, 28, 30, 32, 33, 37, 40, 41], "won": [9, 15, 36, 37], "wonder": [8, 9], "word": [5, 10, 15, 20, 21, 28, 30, 32, 35], "worflow": 37, "work": [0, 1, 2, 3, 5, 7, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 30, 32, 33, 34, 35, 36, 38, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50], "workflow": [9, 20, 24, 25, 28, 29, 32, 38, 40, 47, 50], "workhors": [16, 23], "workspac": [42, 46], "world": [1, 3, 14, 15, 22, 41, 42, 45, 46], "worri": [13, 18, 28, 47], "would": [5, 7, 11, 14, 15, 16, 23, 24, 30, 32, 33, 34, 37, 38, 42, 50], "wouldn": 47, "wq": 46, "wrap": [9, 21], "wrapper": [18, 23], "wrf": 5, "write": [9, 14, 15, 16, 17, 23, 26, 28, 32, 34, 36, 37, 42, 47], "writer": 10, "written": [7, 10, 14, 15, 16, 28, 38, 42], "wrong": 28, "wrote": [28, 42], "www": 3, "x": [1, 5, 9, 10, 11, 13, 14, 15, 16, 18, 20, 22, 23, 42, 45, 46], "x2": 9, "x27": [20, 21, 22, 23], "x_ind": 15, "x_var": 5, "xarrai": [2, 5, 6, 7, 14, 15, 16, 18, 29, 35, 39], "xbound": [20, 21, 22], "xdev": [3, 26, 30, 42], "xlabel": [10, 18, 45], "xpandasindexpandasindex": 23, "xr": [20, 21, 22], "xrai": 19, "xtick": 9, "xy": 1, "xz": 1, "y": [1, 5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 23, 42, 45], "y2": 9, "y_ind": 15, "y_var": 5, "yaml": 0, "ybound": [20, 21, 22], "ye": 18, "year": [5, 18, 20, 37, 39], "yearli": 18, "yellow": [9, 10], "yet": [3, 5, 11, 21, 28, 30, 37], "yield": [7, 23], "yincreas": 23, "ylabel": [10, 18], "yml": [0, 50], "you": [0, 1, 2, 3, 5, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 19, 20, 23, 24, 25, 26, 29, 32, 33, 34, 35, 36, 37, 40, 41, 42, 45, 46, 47, 48, 49, 50], "your": [3, 5, 7, 8, 9, 10, 11, 13, 14, 15, 16, 20, 21, 24, 25, 26, 27, 28, 29, 32, 33, 35, 37, 38, 39, 40, 42, 44, 46, 47, 50], "your_axi": 9, "your_fork": 37, "your_usernam": 37, "yourself": [3, 16, 33, 38, 42, 44, 45], "youtub": 21, "youtubevideo": 21, "ypandasindexpandasindex": 23, "ytick": 9, "yup": 37, "z": [1, 5, 9, 11, 15, 21], "z1": 11, "z2": [9, 11], "zacharia": 49, "zenodo": 49, "zero": [7, 9, 11, 15, 27], "zeros_lik": 15, "zip": 14, "zlib": 5, "zonal": 20, "\u211d": 7}, "titles": ["Pythia Foundations Contributor\u2019s Guide", "Project Pythia Notebook Template", "Cartopy", "Introduction to Cartopy", "Data Formats", "NetCDF and CF: The Basics", "Datetime", "Times and Dates in Python", "Matplotlib", "Annotations, Colorbars, and Advanced Layouts", "Histograms, Pie Charts, and Animations", "Matplotlib Basics", "NumPy", "Intermediate NumPy", "NumPy Basics", "NumPy Broadcasting", "Overview", "Pandas", "Introduction to Pandas", "Xarray", "Computations and Masks with Xarray", "Dask Arrays with Xarray", "Calculating ENSO with Xarray", "Introduction to Xarray", "Installing and Managing Python with Conda", "Getting Started with GitHub", "Getting Started with Jupyter", "Getting Started with Python", "Basic Version Control with git", "Contribute to Project Pythia via GitHub", "Git Branches", "Advanced GitHub Topics", "Cloning and Forking a Repository", "Issues and Discussions", "Opening a Pull Request on GitHub", "GitHub Repositories", "Configuring Your GitHub Account", "GitHub Workflows", "Reviewing Pull Requests", "What is GitHub?", "Installing and Running Python", "Python in Jupyter", "JupyterLab", "Formatted Text in the Notebook with Markdown", "Overview", "Quickstart: Zero to Python", "Python in the Terminal", "Why Python?", "Pythia Foundations", "How to Cite This Book", "How to Use This Book"], "titleterms": {"": [0, 1, 3, 5, 7, 10, 11, 13, 14, 15, 18, 20, 21, 23, 24, 26, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 46], "1": 10, "2": [10, 23], "2nd": 15, "3": [10, 22], "4": 22, "A": [1, 3, 7, 28, 45, 48], "In": 8, "No": 39, "One": 23, "The": [5, 9, 18, 22, 23, 30, 42], "about": 28, "access": [23, 36], "account": [36, 39], "across": 28, "ad": [9, 11], "add": [3, 9], "add_subplot": 11, "addit": 10, "advanc": [9, 31], "aggreg": [20, 23], "ahead": 15, "algorithm": 21, "all": 11, "along": 23, "an": [3, 10, 11, 14, 36], "analysi": 18, "anim": 10, "annot": 9, "anomali": [20, 22], "anoth": 1, "appli": [18, 20], "approxim": 23, "ar": [21, 24, 30, 33, 35], "arang": 14, "area": 3, "arithmet": [14, 20], "around": 9, "arrai": [13, 14, 21, 23, 45], "assign": 23, "attempt": 23, "attribut": 23, "auxiliari": 5, "avoid": 15, "awar": 7, "ax": [3, 11, 13], "azimuth": 3, "back": 28, "background": 3, "base": 48, "basic": [3, 5, 9, 11, 14, 18, 28, 45], "begin": 18, "behind": 15, "between": 15, "bigger": 21, "binder": 50, "block": [15, 21], "book": [0, 49, 50], "boolean": 13, "bound": 5, "boundari": 11, "box": 9, "branch": [28, 30, 34, 37], "broadcast": 15, "browser": 45, "build": 0, "calcul": [7, 14, 15, 21, 22], "care": 28, "cartograph": 3, "cartopi": [2, 3], "cell": [5, 42], "center": 3, "cf": 5, "chang": [28, 29, 37], "charact": 45, "chart": 10, "check": 28, "choos": 40, "chunk": 21, "cite": 49, "class": [7, 9, 21], "climatologi": 20, "clone": [32, 37], "cloud": 50, "coastal": 7, "code": [42, 45], "collect": 21, "color": 11, "colorbar": 9, "colormap": 9, "column": 18, "combin": 20, "command": [24, 28, 42], "commit": [0, 28, 37], "commun": 48, "compar": 28, "comparison": 13, "complet": [23, 30], "comput": [20, 21, 22, 48], "concept": 3, "conda": [0, 24, 40], "condit": 20, "configur": 36, "consider": 9, "consol": 42, "constant": 14, "contain": [21, 23], "content": [1, 31], "contour": 11, "contribut": [0, 29], "contributor": 0, "control": [7, 11, 28, 39, 45], "coordin": [5, 23], "core": [7, 16], "creat": [0, 3, 5, 9, 11, 14, 21, 23, 24, 28, 29, 30, 37], "creation": [5, 23], "custom": [9, 11, 18, 20, 23], "d": 23, "dai": 7, "danger": [1, 5, 18, 42], "dask": 21, "data": [3, 4, 5, 7, 9, 11, 14, 15, 18, 20, 21, 23, 45], "dataarrai": 23, "datafram": 18, "dataset": 23, "date": [0, 7], "datetim": [6, 7, 18], "deal": 7, "delet": 30, "demonstr": 1, "deriv": 15, "dev": 0, "dice": 18, "dict": 45, "dictionari": 45, "did": [38, 39], "differ": [3, 7, 11, 15, 21], "dimens": [5, 15, 23], "discuss": 33, "displai": 11, "distribut": [28, 35], "domain": 16, "down": 42, "draft": 34, "each": 11, "earth": 3, "edit": 29, "editor": 42, "either": 36, "elaps": 7, "email": 36, "end": 18, "enso": 22, "environ": [0, 24], "equal": 3, "equat": 9, "exampl": [1, 3, 7, 35, 50], "execut": 26, "exercis": 21, "exit": 41, "experi": 39, "explicit": 15, "explor": 3, "exploratori": 18, "extend": [3, 15, 18], "extrem": 18, "fanci": 3, "featur": [3, 28, 34, 37], "field": 5, "figur": [3, 11], "file": 5, "fill": [5, 11, 20], "find": 15, "fine": 36, "first": [1, 21, 23, 45], "float": 45, "flow": 45, "fork": [30, 32, 34, 37], "format": [4, 7, 43], "foss": 39, "foundat": [0, 48, 50], "free": 39, "from": [3, 45], "full": 7, "funcanim": 10, "function": [10, 14, 20], "further": 1, "gener": [11, 14, 23, 36], "geoax": 3, "georeferenc": 3, "geoscienc": 48, "get": [18, 25, 26, 27], "git": [28, 30, 37], "github": [25, 28, 29, 31, 34, 35, 36, 37, 39], "give": 15, "global": 3, "go": 28, "graphic": 45, "grid": [5, 11], "groupbi": 20, "guid": 0, "have": [7, 30], "header": 1, "high": [16, 20, 47], "higher": 15, "histogram": 10, "histori": 28, "hook": 0, "how": [1, 7, 49, 50], "http": 36, "hub": 26, "i": [1, 7, 15, 28, 34, 35, 36, 38, 39], "id": [5, 40], "iloc": 18, "imag": [3, 11], "implicitli": 15, "import": [1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 21, 22, 23], "index": [13, 14, 18, 22], "indic": 13, "info": [1, 3, 5, 7, 11, 13, 14, 18, 20, 23, 42], "inform": 5, "initi": [10, 23], "inspect": 28, "instal": [0, 24, 40, 41, 46], "int": 45, "integ": 45, "interact": 50, "interfac": 42, "intermedi": 13, "internet": 39, "interpol": 23, "interpret": 47, "introduc": 23, "introduct": [3, 18, 23], "investig": 18, "issu": [23, 33], "jupyt": [0, 26, 40, 41, 50], "jupyterlab": 42, "just": 7, "keep": 0, "kei": 36, "kernel": [26, 42], "keypair": 36, "know": [28, 38, 39], "lab": 26, "label": 11, "lambert": 3, "languag": 47, "last": 1, "layout": 9, "lazi": 21, "learn": [21, 48], "left": 42, "level": [1, 16, 20, 47], "librari": 16, "lightn": 7, "like": 23, "limit": 11, "line": 11, "linspac": 14, "list": 45, "littl": 28, "ll": 28, "loc": [18, 23], "local": [0, 26, 50], "log": 28, "look": [15, 18, 38], "loop": [15, 45], "lower": 3, "magic": 42, "main": [30, 37], "make": [23, 28, 29, 37], "manag": [24, 40], "mani": 7, "manipul": 21, "map": 3, "markdown": [42, 43], "mask": 20, "math": 14, "matplotlib": [3, 8, 11, 45], "max": 15, "me": 36, "merg": 30, "method": [3, 7, 20, 23], "min": 15, "mini": 28, "mode": 42, "model": 26, "modul": 7, "mollweid": 3, "more": [21, 23], "mosaic": [3, 9], "multidimension": 14, "multipl": 20, "naiv": 7, "name": 23, "natur": 3, "navig": 34, "nearest": 23, "necessari": 39, "neighbor": 23, "neq": 39, "netcdf": [5, 23], "new": [0, 1, 3, 28, 30, 37], "next": [1, 3, 5, 7, 10, 11, 13, 14, 15, 18, 20, 23, 24, 26, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 46], "ni\u00f1o": 22, "nomenclatur": 28, "normal": 9, "note": 3, "notebook": [0, 1, 26, 40, 41, 42, 43, 50], "notif": 36, "now": 45, "number": 45, "numpi": [11, 12, 13, 14, 15, 21, 23, 45], "object": [7, 11, 21, 23, 47], "observ": 5, "often": 3, "one": 20, "open": [23, 34, 39, 47], "open_dataset": 23, "oper": [18, 20, 23], "organ": 50, "orient": 47, "other": [9, 20, 28, 40], "our": 28, "out": 28, "output": 7, "over": [3, 15], "overview": [1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 16, 18, 20, 22, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 46], "packag": 24, "page": 1, "panda": [17, 18], "parallel": 21, "pars": 7, "perform": 14, "person": 36, "pie": 10, "platform": 40, "plot": [3, 11, 18, 23], "point": 45, "pre": 0, "preambl": 50, "predefin": 3, "prerequisit": [1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 21, 22, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 46], "preserv": 23, "pressur": 23, "previou": 28, "print": 7, "privat": 36, "program": 45, "progress": 10, "project": [1, 3, 29], "provid": 38, "public": 36, "pull": [29, 30, 34, 37, 38], "push": 37, "put": 11, "pythia": [0, 1, 29, 48, 50], "python": [7, 24, 27, 40, 41, 45, 46, 47, 48], "pytz": 7, "queri": 7, "quick": [1, 18], "quickstart": 45, "random": 23, "raw": 42, "read": [7, 21], "refer": [1, 3, 5, 7, 9, 11, 13, 14, 15, 18, 20, 21, 22, 23, 24, 26, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 45, 46], "region": [3, 22], "regist": 39, "remot": [26, 30, 37], "render": 9, "replac": 13, "repositori": [28, 30, 32, 35, 37], "request": [29, 30, 34, 37, 38], "resampl": 18, "resolut": 3, "resourc": [1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 21, 22, 23, 24, 26, 30, 38, 40, 41, 42, 45, 46, 48], "restart": 42, "result": 21, "review": 38, "room": 15, "run": [40, 41, 42, 45, 46, 50], "safeti": 37, "same": 23, "sampl": [9, 23], "satellit": 3, "save": [10, 41], "scatterplot": 11, "second": 1, "section": [1, 8, 31], "secur": 36, "see": 7, "sel": 23, "select": [22, 23], "seri": 18, "set": [1, 23, 30, 42], "set_ext": 3, "set_xlim": 11, "set_ylim": 11, "setup": [5, 20], "shapefil": 3, "share": [9, 11, 23], "sharei": 11, "sharex": 11, "shell": 42, "shortcom": 21, "shortcut": 42, "should": 28, "shut": 42, "sidebar": 42, "simpl": [7, 23], "sinc": 7, "site": 0, "slice": [13, 14, 18, 23], "softwar": 39, "some": [3, 7, 9, 28, 35, 45], "sourc": [39, 47], "space": 23, "spam": 36, "special": 42, "specif": 16, "specifi": [3, 21], "split": 20, "ssh": 36, "stage": 28, "stai": 39, "start": [25, 26, 27, 37], "state": [3, 10], "station": 5, "statist": 18, "statu": 28, "step": 10, "stop": [36, 42], "str": 45, "strftime": 7, "strike": 7, "string": 45, "strptime": 7, "structur": 21, "subplot": [9, 11], "subsect": 1, "subset": [14, 18, 23], "success": 1, "suggest": 29, "summari": [1, 3, 5, 7, 9, 10, 11, 13, 14, 15, 18, 20, 21, 22, 23, 24, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 46], "support": 7, "switch": [30, 34], "synchron": 37, "system": [5, 39], "templat": 1, "termin": [40, 42, 46], "terminologi": 7, "test": [11, 21], "text": [9, 42, 43], "thi": [1, 8, 11, 28, 45, 49, 50], "thing": [32, 35], "tide": 7, "time": [7, 23, 28], "timedelta": 7, "timestamp": 7, "tip": [35, 36, 37], "titl": 11, "togeth": 11, "token": 36, "topic": [27, 31, 44], "try": [32, 35], "tune": 39, "tutori": [16, 28], "two": [3, 11], "type": 45, "unix": 7, "up": [0, 1, 30, 42], "updat": 30, "upstream": 37, "us": [1, 3, 10, 11, 13, 15, 18, 20, 21, 23, 24, 28, 50], "usag": 7, "user": 32, "utc": 7, "v": 36, "valu": [13, 18, 20, 23], "variabl": [5, 23, 42], "vc": [28, 39], "vector": 15, "veri": 45, "version": [28, 39], "versu": 7, "via": [29, 50], "view": [28, 38], "visual": [22, 23], "wai": 38, "want": 28, "warn": [1, 3, 13, 14, 18, 42], "we": 28, "web": 39, "what": [1, 3, 5, 7, 10, 11, 13, 14, 15, 18, 20, 21, 23, 24, 26, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 45, 46], "when": 38, "where": 20, "why": [8, 21, 28, 47], "window": 32, "within": 11, "work": 37, "workflow": [30, 34, 37], "would": 21, "wrap": 23, "write": [5, 7], "xarrai": [19, 20, 21, 22, 23], "xr": 23, "year": 7, "york": 3, "you": [21, 28, 30, 38, 39], "your": [0, 1, 18, 30, 34, 36, 41, 45], "zero": 45, "zone": 7}})
\ No newline at end of file
@@ -905,7 +905,7 @@
+ dtype='float32', name='x', length=268))
+ dtype='float32', name='isobaric1'))