ACT icon indicating copy to clipboard operation
ACT copied to clipboard

Atmospheric data Community Toolkit - A python based toolkit for exploring and analyzing time series atmospheric datasets

Results 41 ACT issues
Sort by recently updated
recently updated
newest added

- [x] Tests added - [x] Documentation reflects changes - [ ] PEP8 Standards or use of linter - [ ] Xarray Dataset or DataArray variable naming follows 'ds' or...

It may be beneficial to look at how we could implement functionality to plot up uncertainty ranges/error bars with time series and time/height plots. https://matplotlib.org/stable/gallery/lines_bars_and_markers/errorbar_limits_simple.html#sphx-glr-gallery-lines-bars-and-markers-errorbar-limits-simple-py

enhancement
good first issue

``` def test_io_mpldataset(): mpl_ds = act.io.mpl.read_sigma_mplv5(act.tests.EXAMPLE_SIGMA_MPLV5) # Tests fields assert 'channel_1' in mpl_ds.variables.keys() assert 'temp_0' in mpl_ds.variables.keys() assert mpl_ds.channel_1.values.shape == (102, 1000) # Tests coordinates assert 'time' in mpl_ds.coords.keys() assert...

bug

* ACT version: 2.1.3 * Python version: 3.11 * Operating System: MacOS Ventura 13.6.9 ### Description Currently, ARM Data Validator (ADV) takes an argument of either a filename string or...

enhancement

It was noted in #952 that the SMPS datastream has multiple ancillary QC variabiles that are related to QC checks from various machine learning algorithms. Therefore, I have added a...

More of a place holder for myself to highlight ACT's contribution to CROCUS and BSEC in a blog post. Maybe this is 2 blogs.

blog-post

**Describe the bug** The ARM data product, houmergedsmpsapsmlM1.c1, has 3 ancillary QC variables for one of the variables, merged_dN_dlogDp. Two of these QC variables are only indexed by time and...

Currently, there is functionality to add shading in plots to data points where QC is tripped (#207). This works for displaying where _any_ QC bit is tripped, but having the...

enhancement