pyacs.gts.Sgts_methods.plot_data_sum module

pyacs.gts.Sgts_methods.plot_data_sum.plot_data_sum(self, period=None)[source]

generate an interactive plot showing available/missing data

param period: period used to checkk data availability. Uses pandas syntax. See examples. return self .. rubric:: Examples

ts.plot_data_sum(period=’2008’) willl show a summary for the whole year 2008 ts.plot_data_sum(period=[‘2008-01-15’,’2011-01-01’]) willl show a summary for the period Dispay will include all time series in ts. Combine with ts selection to obtain more specific behaviour. ts.sub(linclude=[‘XXXX’,’YYYY’]).plot_data_sum(period=’2008’) will plot data availability only for ‘XXXX’ and ‘YYYY’ ts.sel_radius(‘XXXX’,[0,50]).sel_period([2008,2015],min_data=1000).plot_data_sum(period=’2008’) will show data availability for year 2008, only for sites less than 50 km from XXXX and having a minimum of 1000 days between 2008 and 2015.