Skip to content

Commit 346a912

Browse files
authored
chore: bump version to 0.0.8 (#41)
docs: add area average example to recipes
1 parent f835fe1 commit 346a912

File tree

4 files changed

+40
-1
lines changed

4 files changed

+40
-1
lines changed

doc/source/_assets/nwgreenland.png

24 KB
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
##################
2+
`Release v0.0.8`__
3+
##################
4+
5+
* ``feat``: create single row with both map and control widgets (`#40 <https://github.com/tsutterley/IS2view/pull/40>`_)
6+
7+
.. __: https://github.com/tsutterley/IS2view/releases/tag/0.0.8

doc/source/user_guide/Recipes.rst

+32
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,38 @@ Requires optional ``geopandas`` and ``fiona`` dependencies.
8585

8686
Antarctic subglacial lake delineations from `Fricker et al. (2007) <https://doi.org/10.1126/science.1136897>`_
8787

88+
Plot an Area Average
89+
####################
90+
91+
Requires optional ``geopandas`` dependency.
92+
93+
.. code-block:: python
94+
95+
import geopandas
96+
import matplotlib.pyplot as plt
97+
# read Greenland basins
98+
gdf = geopandas.read_file('Greenland_Basins_PS_v1.4.2.zip')
99+
# reduce to NW region
100+
subregion = 'NW'
101+
region = gdf[gdf['SUBREGION1'] == subregion].dissolve(by='SUBREGION1')
102+
region['NAME'] = f'{subregion} Greenland'
103+
# add geodataframe
104+
m.add_geodataframe(region)
105+
# iterate over features
106+
for feature in m.geometries['features']:
107+
ds.timeseries.plot(feature, legend=True,
108+
variable=IS2widgets.variable.value,
109+
color='mediumseagreen'
110+
)
111+
# show average plot
112+
plt.show()
113+
114+
.. figure:: ../_assets/nwgreenland.png
115+
:width: 400
116+
:align: center
117+
118+
Greenland drainage basins from `Mouginot and Rignot (2019) <https://doi.org/10.7280/D1WT11>`_
119+
88120
Calculate Area Averages
89121
#######################
90122

version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.7
1+
0.0.8

0 commit comments

Comments
 (0)