Skip to content

Commit

Permalink
Update content/xarray.rst
Browse files Browse the repository at this point in the history
Co-authored-by: Marijn van Vliet <[email protected]>
  • Loading branch information
gregordecristoforo and wmvanvliet authored Oct 23, 2024
1 parent 13197f4 commit f09bb39
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion content/xarray.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ The following image shows the structure of this particular Xarray Dataset:
Accessing and manipulating data in Xarray
-----------------------------------------

We can select a Data variable from the dataset using a dictionary-like syntax: ::
An xarray ``Dataset`` typically consists of multiple ``DataArrays``. Our example dataset has 7 of them (``u-component_of_wind_isobaric``, ``LambertConformal_Projection``, ``lat``, ``lon``, `Geopotential_height_isobaric``, ``v-component_of_wind_isobaric``, ``Temperature_isobaric``).
We can select a single ``DataArray`` from the dataset using a dictionary-like syntax: ::

>>> temperature_data = ds['Temperature_isobaric']
>>> temperature_data
Expand Down

0 comments on commit f09bb39

Please sign in to comment.