Skip to content

Commit

Permalink
release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
bekozi committed Feb 1, 2013
1 parent 2b8b0da commit 6483a85
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 4 deletions.
22 changes: 20 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Current Release Notes #

## v0.04b ##

### What's New ###
1. RequestDataset and RequestDatasetCollection objects to replace old dataset dictionary in OcgOperations.
* Time and level ranges subset arguments merged into RequestDataset.
2. Documentation on GitHub: http:https://ncpp.github.com/ocgis/
3. A "setup.py" module and installation instructions: http:https://ncpp.github.com/ocgis/install.html
4. Improvements to ShpCabinet adding ability to load all or no attributes.
5. Alpha implementation of URL-to-OcgOperations (and vice versa) capability.
6. Changes to naming conventions of "env" variables.
7. Usage examples in documentation pages: http:https://ncpp.github.com/ocgis/examples.html.

### Additional Notes ###
1. NetCDF output for calculations not working.
2. Code optimization is behind the multi-dataset implementation.
4. Datasets with projections currently require customizations.
5. "setup.py" uninstall not working.

# Previous Release Notes #

## v0.03a ##

### What's New ###
Expand All @@ -17,6 +37,4 @@
3. Code optimization is behind the multi-dataset implementation.
4. Datasets with projections currently require customizations.

# Previous Release Notes #

...
4 changes: 2 additions & 2 deletions src/ocgis/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__VER__ = '0.03'
__RELEASE__ = '0.03a'
__VER__ = '0.04'
__RELEASE__ = '0.04b'

from api import OcgOperations
from util.shp_cabinet import ShpCabinet
Expand Down
3 changes: 3 additions & 0 deletions src/ocgis/api/definition.py
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,10 @@ def __init__(self,uri,variable,alias=None,time_range=None,level_range=None,
self.t_calendar = self._str_format_(t_calendar)

self.ocg_dataset = None

## used for keyed iteratory to avoid writing duplicate identifiers.
self._use_for_id = []

self._format_()

def inspect(self):
Expand Down

0 comments on commit 6483a85

Please sign in to comment.