1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492
|
Version 1.3.2 - 21 September 2016
---------------------------------
* Added --build-id to LDFLAGS in umread Makefile, for sake of RPM
builds (otherwise fails when building debuginfo RPM). Pull request
#16, thanks to Klaus Zimmerman.
* Improved test handling. Pull request #21, thanks to Klaus
Zimmerman.
* Removed udunits2 database. This removes the modified version of
the udunits2 database in order to avoid redundancies, possible
version incompatibilities, and license questions. The
modifications are instead carried out programmatically in
units.py. Pull request #20, thanks to Klaus Zimmerman.
Version 1.3.1 - 09 September 2016
---------------------------------
* New method: cf.Field.unlimited, and new 'unlimited' parameter to
cf.write and cfa
Version 1.3 - 05 September 2016
-------------------------------
* Removed asreftime, asdatetime and dtvarray methods
* New method: convert_reference_time for converting reference time
data values to have new units.
Version 1.2.3 - 23 August 2016
------------------------------
* Fixed bug in Data.equals
Version 1.2.2 - 22 August 2016
------------------------------
* Fixed bug in binary operations to do with the setting of
Partition.part
* Added TimeDuration functionality to get_bounds cellsizes
parameter. Also new parameter flt ("fraction less than") to
position the coordinate within the cell.
Version 1.2 - 05 July 2016
--------------------------
* Added HDF_chunks methods
Version 1.1.11 - 01 July 2016
-----------------------------
* Added cellsize option to cf.Coordinate.get_bounds, and fixed bugs
* Added variable_attributes option to cf.write
* Added cf.ENVIRONMENT method
Version 1.1.10 - 23 June 2016
-----------------------------
* Added reference_datetime option to cf.write
* Fixed bug in cf.um.read.read which incorrectly ordered vertical
coordinates
ersion 1.1.9 - 17 June 2016
----------------------------
* New methods cf.Variable.files and cf.Data.files, cf.Field.files
which report which files are referenced by the data array.
* Fix to stop partitions return numpy.bool_ instead of
numy.ndarray
* Fix to determining cyclicity of regridded fields.
* Functionality to recursively read directories in
cf.read, cfa and cfump
* Print warning but carry on when ESMF import fails
* Fixed bug in cf.Field.subspace when accessing axes derived
from UM format files
Version 1.1.8 - 18 May 2016
---------------------------
* Slightly changed the compression API to cf.write
* Added compression support to the cfa command line script
* Added functionality to change data type on writing to cf.write
and cfa - both in general and for with extra convienience for the
common case of double to single (and vice versa).
* Removed annoying debug print statements from cf.um.read.read
Version 1.1.7 - 04 May 2016
---------------------------
* Added fix for change in numpy behaviour (numpy.number types do
not support assingment)
* Added capability to load in a user STASH to standard name table:
cf.um.read.load_stash2standard_name
Version 1.1.6 - 27 April 2016
-----------------------------
* Added --reference_datetime option to cfa
* Bug fix to cf.Field.collapse when providing cf.Query objects via
the group parameter
* Added auto regridding method, which is now the default
Version 1.1.5 - 03 March 2016
-----------------------------
* Bug fix in cf.Field.where() when using cf.masked
* conda installation (with thanks to Andy Heaps)
* Bug fix for type casting in cf.Field.collapse
* Dispay long_name if it exists and there is no standard_name
* Fix for compiling the UM C code on certiain OSs (with thanks to Simon Wilson)
* Fixed incorrect assignment of cyclicity in cf.Field.regrids
* Nearest neighbour regridding in cf.Field.regrids
Version 1.1.4 - 09 February 2016
--------------------------------
* Bug fix to cf.Field.autocyclic
* Bug fix to cf.Field.clip - now works when limit units are supplied
* New methods: cf.Data.round, cf.Field.Round
* Added lbtim as a Field property when reading UM files
* Fixed coordinate creation for UM atmosphere_hybrid_height_coordinate
* Bug fix to handling of cyclic fields by cf.Field.regrids
* Added nearest neighbour field regridding
* Changed keyword ignore_dst_mask in regrids to use_dst_mask, which is
false by default
Version 1.1.3 - 10 December 2015
--------------------------------
* Bug fixes to cf.Field.collapse when the "group" parameter is
used
* Correct setting of cyclic axes on regridded fields
* Updates to STASH_to_CF.txt table: 3209, 3210
Version 1.1.2 - 01 December 2015
--------------------------------
* Updates to STASH_to_CF.txt table
* Fixed bug in decoding UM version in cf.um.read.read
* Fixed bug in cf.units.Utime.num2date
* Fixed go-slow behaviour for silly BZX, BDX in PP and fields file
lookup headers
Version 1.1.1 - 05 November 2015
--------------------------------
* Fixed bug in decoding UM version in cf.read
Version 1.1 - 28 October 2015
-----------------------------
* Fixed bug in cf.Units.conform
* Changed cf.Field.__init__ so that it works with just a data object
* Added cf.Field.regrids for lat-lon regridding using ESMF library
* Removed support for netCDF4-python versions < 1.1.1
* Fixed bug which made certain types of coordinate bounds
non-contiguous after transpose
* Fixed bug with i=True in cf.Field.where and in
cf.Field.mask_invalid
* cyclic methods now return a set, rather than a list
* Fixed bug in _write_attributes which might have slowed down some
writes to netCDF files.
* Reduced annoying redirection in the documentation
* Added cf.Field.field method and added top_level keyword to
cf.read
* Fixed bug in calculation of standard deviation and
variance (the bug caused occasional crashes - no incorrect results
were calculated)
* In items method (and friends), removed strict_axes keyword and
added axes_all, axes_superset and axes_subset keywords
Version 1.0.3 - 23 June 2015
----------------------------
* Added default keyword to fill_value() and fixed bugs when doing
delattr on _fillValue and missinge_value properties.
Version 1.0.2 - 05 June 2015
----------------------------
* PyPI release
Version 1.0.1 - 01 June 2015
----------------------------
* Fixed bug in when using the select keyword to cf.read
Version 1.0 - 27 May 2015
-------------------------
* Max OS support
* Limited Nd funtionality to Field.indices
* Correct treatment of add_offset and scale_factor
* Replaced -a with -x in cfa and cfdump scripts
* added ncvar_identities parameter to cf.aggregate
* Performance improvements to field subspacing
* Documentation
* Improved API to match, select, items, axes, etc.
* Reads UM fields files
* Optimised readin PP and UM fields files
* cf.collapse replaced by cf.Field.collapse
* cf.Field.collapse includes CF climatological time statistics
Version 0.9.9.1 - 09 January 2015
---------------------------------
* Fixed bug for changes to netCDF4-python library versions >= 1.1.2
* Miscellaneous bug fixes
Version 0.9.9 - 05 January 2015
-------------------------------
* Added netCDF4 compression options to cf.write.
* Added __mod__, __imod__, __rmod__, ceil, floor, trunc, rint
methods to cf.Data and cf.Variable
* Added ceil, floor, trunc, rint to cf.Data and cf.Variable
* Fixed bug in which array cf.Data.array sometimes behaved like
cf.Data.varray
* Fixed bug in cf.netcdf.read.read which affected reading fields
with formula_terms.
* Refactored the test suite to use the unittest package
* Cyclic axes functionality
* Documentation updates
Version 0.9.8.3 - 14 July 2014
------------------------------
* Implemented multiple grid_mappings (CF trac ticket #70)
* Improved functionality and speed of field aggregation and cfa
and cfdump command line utilities.
* Collapse methods on cf.Data object (min, max, mean, var, sd,
sum, range, mid_range).
* Improved match/select functionality
Version 0.9.8.2 - 13 March 2014
-------------------------------
* Copes with PP fields with 365_day calendars
* Revamped CFA files in line with the evolving standard. CFA files
from PP data created with a previous version will no longer work.
Version 0.9.8.1 - December 2013
--------------------------------
Version 0.9.8 - 06 December 2013
--------------------------------
* Improved API.
* Plenty of speed and memory optimizations.
* A proper treatment of datetimes.
* WGDOS-packed PP fields are now unpacked on demand.
* Fixed bug in functions.py for numpy v1.7. Fixed bug when deleting
the 'id' attribute.
* Assign a standard name to aggregated PP fields after aggregation
rather than before (because some stash codes are too similar,
e.g. 407 and 408).
* New subclasses of cf.Coordinate: cf.DimensionCoordinate and
cf.AuxiliaryCoordinate.
* A cf.Units object is now immutable.
Version 0.9.7.1 - 26 April 2013
-------------------------------
* Fixed endian bug in CFA-netCDF files referring to PP files
* Changed default output format to NETCDF3_CLASSIC and trap error when
when writing unsigned integer types and the 64-bit integer type to
file formats other than NETCDF4.
* Changed unhelpful history created when aggregating
Version 0.9.7 - 24 April 2013
-----------------------------
* Read and write CFA-netCDF files
* Field creation interface
* New command line utilities: cfa, cfdump
* Redesigned repr, str and dump() output (which is shared with cfa and
cfdump)
* Removed superceded (by cfa) command line utilities pp2cf, cf2cf
* Renamed the 'subset' method to 'select'
* Now needs netCDF4-python 0.9.7 or later (and numpy 1.6 or later)
Version 0.9.6.2 - 27 March 2013
-------------------------------
* Fixed bug in cf/pp.py which caused the creation of incorrect
latitude coordinate arrays.
Version 0.9.6.1 - 20 February 2013
----------------------------------
* Fixed bug in cf/netcdf.py which caused a failure when a file with
badly formatted units was encountered.
Version 0.9.6 - 27 November 2012
--------------------------------
* Assignment to a field's data array with metadata-aware broadcasting,
assigning to subspaces, assignment where data meets conditions,
assignment to unmasked elements, etc. (setitem method)
* Proper treatment of the missing data mask, including metadata-aware
assignment (setmask method)
* Proper treatment of ancillary data.
* Ancillary data and transforms are subspaced with their parent field.
* Much faster aggregation algorithm (with thanks to Jonathan
Gregory). Also aggregates fields transforms, ancillary variables and
flags.
Version 0.9.5 - 01 October 2012
-------------------------------
* Restructured documentation and package code files.
* Large Amounts of Massive Arrays (LAMA) functionality.
* Metadata-aware field manipulation and combination with
metadata-aware broadcasting.
* Better treatment of cell measures.
* Slightly faster aggregation algorithm (a much improved one is in
development).
* API changes for clarity.
* Bug fixes.
* Added 'TEMPDIR' to the cf.CONSTANTS dictionary
* This is a snapshot of the trunk at revision r195.
Version 0.9.5.dev - 19 September 2012
-------------------------------------
* Loads of exciting improvements - mainly LAMA functionality,
metadata-aware field manipulation and documentation.
* This is a snapshot of the trunk at revision r185. A proper vn0.9.5
release is imminent.
Version 0.9.4.2 - 17 April 2012
-------------------------------
* General bug fixes and code restructure
Version 0.9.4 - 15 March 2012
-----------------------------
* A proper treatment of units using the Udunits C library and the
extra time functionality provided by the netCDF4 package.
* A command line script to do CF-netCDF to CF-netCDF via cf-python.
Version 0.9.3.3 - 08 February 2012
----------------------------------
* Objects renamed in line with the CF data model: 'Space' becomes
'Field' and 'Grid' becomes 'Space'.
* Field aggregation using the CF aggregation rules is available when
reading fields from disk and on fields in memory. The data of a
field resulting from aggregation are stored as a collection of the
data from the component fields and so, as before, may be file
pointers, arrays in memory or a mixture of these two forms.
* Units, missing data flags, dimension order, dimension direction and
packing flags may all be different between data components and are
conformed at the time of data access.
* Files in UK Met Office PP format may now be read into CF fields.
* A command line script for PP to CF-netCDF file conversion is
provided.
Version 0.9.3 - 05 January 2012
-------------------------------
* A more consistent treatment of spaces and lists of spaces (Space and
SpaceList objects respectively).
* A corrected treatment of scalar or 1-d, size 1 dimensions in the
space and its grid.
* Data stored in Data objects which contain metadata need to correctly
interpret and manipulate the data. This will be particularly useful
when data arrays spanning many files/arrays is implemented
Version 0.9.2 - 26 August 2011
-------------------------------
* Created a setup.py script for easier installation (with thanks to
Jeff Whitaker).
* Added support for reading OPeNDAP-hosted datasets given by URLs.
* Restructured the documentation.
* Created a test directory with scripts and sample output.
* No longer fails for unknown calendar types (such as '360d').
Version 0.9.1 - 06 August 2011
------------------------------
* First release.
|