Duncan Watson-Parris
Duncan Watson-Parris
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...
There are some exceptions which aren't used and some which are pretty pointless (FileFormatError), they need tidying up.
This originated here: https://jira.ceh.ac.uk/browse/JASCIS-305 One way to speed up collocation (and perhaps other operations) is to output the set of values as a ragged array, then perform the kernel as...
Would there be interest in adding a 'cookbook' section to the docs a-la [Pandas](http://pandas.pydata.org/pandas-docs/stable/cookbook.html)? The current Recipes section might then be better renamed as Gallery? It's useful for the kind...