File tree 4 files changed +40
-1
lines changed
4 files changed +40
-1
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -85,6 +85,38 @@ Requires optional ``geopandas`` and ``fiona`` dependencies.
85
85
86
86
Antarctic subglacial lake delineations from `Fricker et al. (2007) <https://doi.org/10.1126/science.1136897 >`_
87
87
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
+
88
120
Calculate Area Averages
89
121
#######################
90
122
Original file line number Diff line number Diff line change 1
- 0.0.7
1
+ 0.0.8
You can’t perform that action at this time.
0 commit comments