Skip to main content

Tools for climate data wrangling

Project description

==================
climate_toolbox
==================


.. image:: https://img.shields.io/pypi/v/climate_toolbox.svg
:target: https://pypi.python.org/pypi/climate_toolbox

.. image:: https://img.shields.io/travis/ClimateImpactLab/climate_toolbox.svg
:target: https://travis-ci.org/ClimateImpactLab/climate_toolbox

.. image:: https://readthedocs.org/projects/climate-toolbox/badge/?version=latest
:target: https://climate-toolbox.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status

.. image:: https://pyup.io/repos/github/ClimateImpactLab/climate_toolbox/shield.svg
:target: https://pyup.io/repos/github/ClimateImpactLab/climate_toolbox/
:alt: Updates


Tools for climate data wrangling


* Free software: MIT license
* Documentation: https://climate-toolbox.readthedocs.io.



Setting up this package
-----------------------

*Justin Simcock: complete these instructions and then remove this section from
the readme.*

1. Create a matching repository on github if you haven't already:

a. go to https://github.com/organizations/ClimateImpactLab/repositories/new
b. enter the following information:

owner
ClimateImpactLab

Repository Name
climate_toolbox

Description
Tools for climate data wrangling

Privacy
Public

**Do not initialize the repo with a readme, license, or gitignore!**

c. Press the big green buttton

2. Execute the following commands in this directory:

.. code-block:: bash

git init
git add .
git commit -m "initial commit"
git remote add origin git@github.com:ClimateImpactLab/climate_toolbox.git
git push -u origin master

3. Set up automated testing, coverage, updates, and docs:

a. Set up testing

i. go to https://travis-ci.org/ and sign in/sign up with github.
Make sure travis has access to the repositories on your github
account *and* those owned by the ClimateImpactLab by enabling
access in your account settings.
ii. Next to "My Repositories" click the '+' icon
iii. Flip the switch on ClimateImpactLab/climate_toolbox. If
you don't see it in the list, click 'Sync account', and make
sure you are looking at the ClimateImpactLab repositories.
iv. Push a change to your package (for example, you could delete
this section). You should see tests start running on travis
automatically.
v. Start writing tests for your code in the
``climate_toolbox/tests`` folder. There are some
examples already in there to get you started.

b. Set up docs

i. go to https://readthedocs.io and sign in/sign up with github.
Same deal - make sure readthedocs has access to your github
account and ClimateImpactLab.
ii. click 'Import a project', go to ClimateImpactLab, and refresh.
iii. click the '+' icon next to
ClimateImpactLab/climate_toolbox. Pick a name for your
project. The name has to be globally unique (not just within
the ClimateImpactLab), so if you chose something with a common
name you may have to rename the docs.
iv. next time you push code to master, docs should build
automatically. You can view them at
https://climate_toolbox.readthedocs.io/en/latest/
(substitute whatever name you chose).


c. Set up updates

i. go to https://pyup.io. you know the drill.
ii. Go to your account, and click '+ Add Repo'. Sync.
iii. Add ClimateImpactLab/climate_toolbox
with "Dependency Updates" and "SafetyCI" turned on. Leave
"Update Schedules" off.

d. Set up test coverage monitoring

i. next up: https://coveralls.io. you got this.

e. Breathe easy. The next time you push code, these should all update for
you! Now that wasn't so bad, was it?

4. Develop with github:

a. In general, it's best to file an issue when you want to change something
or when you've found a bug, then write tests which test a-priori
assertions about desired behavior, and then write the minimum amount of
code required to pass these tests. See the contributing docs for more
workflow suggestions.

To run all tests on your local machine:

.. code-block:: bash

make test

5. Deploy

a. Set up deployment by registering the package on the python package index
(PyPI):

i. Create an account on PyPI: https://pypi.python.org/pypi
ii. Register the package:

.. code-block:: bash

python setup.py register

iii. Encrypt & package your credentials so travis can deploy for you:

.. code-block:: bash

python travis_pypi_setup.py

b. When you're ready to deploy this package, make sure all your changes are
committed. Then run:

.. code-block:: bash

bumpversion patch # (or minor or major)
git push
git push --tags

As soon as this new tagged commit passes tests, travis will deploy for
you




c. Anyone (in the world) should now be able to install your package with

.. code-block:: bash

pip install [package-name]

Features
--------

* TODO

Credits
---------

This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage



=======
History
=======

0.1.4 (current version)
-----------------------

* Support vectorized indexing for xarray >= 0.10 in :py:func:`climate_toolbox.climate_toolbox._reindex_spatial_data_to_regions` (:issue:`10`)
* Support iteratively increasing bounding box in :py:func:`~climate_toolbox.climate_toolbox._fill_holes_xr` (:issue:`11`).
* Support multiple interpolation methods (linear and cubic) in :py:func:`~climate_toolbox.climate_toolbox._fill_holes_xr` (:issue:`12`).
* Fix bug causing tests to pass no matter what

0.1.3 (2017-08-04)
------------------

* Support passing a dataset (not just a filepath) into ``load_baseline`` and ``load_bcsd`` (:issue:`4`)

0.1.2 (2017-07-25)
------------------

* merge in bug fixes

0.1.1 (2017-07-25)
-----------------------

* Various bug fixes (see :issue:`2`)


0.1.0 (2017-07-24)
------------------

* First release on PyPI.


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

climate_toolbox-0.1.4.tar.gz (21.1 kB view details)

Uploaded Source

Built Distribution

climate_toolbox-0.1.4-py2.py3-none-any.whl (12.0 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file climate_toolbox-0.1.4.tar.gz.

File metadata

File hashes

Hashes for climate_toolbox-0.1.4.tar.gz
Algorithm Hash digest
SHA256 0481a25e69b47e5511adc9a2f3afa8ab1342b4f31c20058946d841cc8c388515
MD5 6f8886b001d258a11566a3d8bef7ded4
BLAKE2b-256 cce1f66eba4a8db34d331a8b0f06d235959b30d72459deb78f7776944db8cf66

See more details on using hashes here.

File details

Details for the file climate_toolbox-0.1.4-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for climate_toolbox-0.1.4-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 2b2dd390924971498fc390abfe67aa064217d81a1af078bb8c96d73617a7e9c4
MD5 6744e7295d88af9b15823ee0688ec008
BLAKE2b-256 d8f57c6618a3b5717e70b5ef2a7cad00f2e94492180de0e6a1f2cf311cf7949f

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page