cis icon indicating copy to clipboard operation
cis copied to clipboard

Home of the Community Intercomparison Suite.

Results 19 cis issues
Sort by recently updated
recently updated
newest added

[In "Maintenance and Development](https://cis.readthedocs.io/en/stable/maintenance_and_development.html). `conda build` should be replaced with `conda-build` and the instruction `conda install conda-build` should be added. Also, the link to `conda/build` is broken. Would you like...

I am using a .hdf file obtained from AERIS/ICARE and the filename is _DARDAR-CLOUD_v2.1.1_2017002114852_56830.hdf_ **dardar = cis.read_data(filename, variable)** In the above the variable is _DARMASK_Simplified_Categorization_ The above command gives the...

Currently, variables to be written by cis are not including string. This modifies data_io/ungridded_data.py and data_io/write_netcdf.py

Using read_data to access the day_night flag for a CALIOP level 2 swath like this: `test_dn = cis.read_data(some_file, 'Day_Night_Flag')` throws this: `ValueError Traceback (most recent call last) in ----> 1...

Link to the GMD paper: https://gmd.copernicus.org/articles/9/3093/2016/gmd-9-3093-2016.html

When plotting a time-series with all the data-points masked matplotlib throws an error about the date conversion: ``` ... File "/Users/watson-parris/miniconda3/envs/cis_env3/lib/python3.7/site-packages/cis/plotting/plot.py", line 126, in format_datetime date_time = num2date(x) File "/Users/watson-parris/miniconda3/envs/cis_env3/lib/python3.7/site-packages/matplotlib/dates.py",...

Given a cube with a decreasing latitude (Dim) coordinate Gridded to Ungridded collocation gives incorrect values. The following can reproduce this: ``` clwc=cis.read_data('test.nc', 'clwc') points = hyperpoint.HyperPointList([hyperpoint.HyperPoint(lat=-25.8, lon=-19,val=0)]) res_cis =...

Latitude, longitude and time coordinates are all checked for consistency before collocation, but the units of the vertical coordinate aren't. CIS should check the units are the same, and if...

I am trying to read a HDF file using the cis.read_data() function in Python. `import cis` `import iris` `from cis import read_data` `from mpl_toolkits.basemap import Basemap` `import matplotlib.pyplot as plt`...