Skip to content

Commit

Permalink
Merge pull request #46 from NCAR/devel
Browse files Browse the repository at this point in the history
Merge for new release
  • Loading branch information
Kevin Paul authored Apr 30, 2018
2 parents bcf66a1 + 2d52ad6 commit f9c87fa
Show file tree
Hide file tree
Showing 48 changed files with 13,813 additions and 1,474 deletions.
11 changes: 11 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ PyReshaper Change Log
Copyright 2017, University Corporation for Atmospheric Research
See the LICENSE.rst file for details

VERSION 1.0.6
-------------

- Cleaning up testing framework for serial execution
- Renabled PyNIO option as a backend. Works with PyNIO 1.5.0.
- Adding feature to impose `least_significant_digit` option to NetCDF4-python,
which saves the data to file using compression and "bit truncation" (i.e.,
lossy compression)
- Adding ability to set the read and write chunk-sizes separately
- Adding feature to ignore specific time-invariable metadata

VERSION 1.0.5
-------------

Expand Down
6 changes: 6 additions & 0 deletions docs/_sources/manual.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,7 @@ format.
specifier.output_file_prefix = "/path/to/outfile_prefix."
specifier.output_file_suffix = ".000101-001012.nc"
specifier.time_variant_metadata = ["time", "time_bounds"]
specifier.exclude_list = ['HKSAT','ZLAKE']
# Create the PyReshaper object
rshpr = reshaper.create_reshaper(specifier,
Expand Down Expand Up @@ -460,6 +461,11 @@ can include the full, absolute path information for the output
and writing NetCDF files. The default backend is ``'netCDF4'``, but
the user can alternatively specify ``'Nio'`` to use PyNIO.

- ``exclude_list``: If set to a list of string time invariant variable names,
these variables will not be included in each of the timeseries files.
**NOTE: Setting this attribute can leave data untransformed from time-slice
to time-series format! DO NOT DELETE YOUR OLD TIME-SLICE FILES!**

Specifier Object Methods
~~~~~~~~~~~~~~~~~~~~~~~~

Expand Down
32 changes: 29 additions & 3 deletions docs/_static/basic.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* Sphinx stylesheet -- basic theme.
*
* :copyright: Copyright 2007-2017 by the Sphinx team, see AUTHORS.
* :copyright: Copyright 2007-2018 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/
Expand Down Expand Up @@ -82,9 +82,21 @@ div.sphinxsidebar input {
}

div.sphinxsidebar #searchbox input[type="text"] {
width: 170px;
float: left;
width: 80%;
padding: 0.25em;
box-sizing: border-box;
}

div.sphinxsidebar #searchbox input[type="submit"] {
float: left;
width: 20%;
border-left: none;
padding: 0.25em;
box-sizing: border-box;
}


img {
border: 0;
max-width: 100%;
Expand Down Expand Up @@ -199,6 +211,11 @@ table.modindextable td {

/* -- general body styles --------------------------------------------------- */

div.body {
min-width: 450px;
max-width: 800px;
}

div.body p, div.body dd, div.body li, div.body blockquote {
-moz-hyphens: auto;
-ms-hyphens: auto;
Expand Down Expand Up @@ -332,6 +349,11 @@ table.docutils {
border-collapse: collapse;
}

table.align-center {
margin-left: auto;
margin-right: auto;
}

table caption span.caption-number {
font-style: italic;
}
Expand Down Expand Up @@ -445,10 +467,14 @@ dd {
margin-left: 30px;
}

dt:target, .highlighted {
dt:target, span.highlighted {
background-color: #fbe54e;
}

rect.highlighted {
fill: #fbe54e;
}

dl.glossary dt {
font-weight: bold;
font-size: 1.1em;
Expand Down
3 changes: 1 addition & 2 deletions docs/_static/css/badge_only.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f9c87fa

Please sign in to comment.