Skip to content

Commit

Permalink
MulEnsGeoSeries stackplot (#599)
Browse files Browse the repository at this point in the history
* include label in ensgeoseries init

* create stackplot for mulensgeoseries

* tests for megs.stackplot

* Update mulensgeoseries.py

* update see also

* add additional docstring example for style

* new example + bugfix

* change style to plot_style

* add style unit test

* minor typo fix

---------

Co-authored-by: CommonClimate <[email protected]>
  • Loading branch information
alexkjames and CommonClimate authored Jul 16, 2024
1 parent 98a1566 commit 75fc911
Show file tree
Hide file tree
Showing 3 changed files with 462 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyleoclim/core/ensemblegeoseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ class EnsembleGeoSeries(EnsembleSeries):
units of the depth axis, e.g. 'cm'
'''
def __init__(self, series_list,lat=None,lon=None,elevation=None,archiveType=None,control_archiveType = False,
def __init__(self, series_list,label=None,lat=None,lon=None,elevation=None,archiveType=None,control_archiveType = False,
sensorType = None, observationType = None, depth = None, depth_name = None, depth_unit= None):

super().__init__(series_list)
super().__init__(series_list,label)

if lat is None:
# check that all components are GeoSeries
Expand Down
Loading

0 comments on commit 75fc911

Please sign in to comment.