pynetcf


Namepynetcf JSON
Version 0.5.0 PyPI version JSON
download
home_pagehttp://geo.tuwien.ac.at/
SummaryReading and writing netCDF files according to CF conventions
upload_time2023-05-08 08:12:18
maintainer
docs_urlNone
authorTU Wien
requires_python>=3.8
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. image:: https://github.com/TUW-GEO/pynetcf/workflows/ubuntu/badge.svg
   :target: https://github.com/TUW-GEO/pynetcf/actions/workflows/ubuntu.yml

.. image:: https://github.com/TUW-GEO/pynetcf/workflows/windows/badge.svg
   :target: https://github.com/TUW-GEO/pynetcf/actions/workflows/windows.yml

.. image:: https://coveralls.io/repos/github/TUW-GEO/pynetcf/badge.svg?branch=master
   :target: https://coveralls.io/github/TUW-GEO/pynetcf?branch=master

.. image:: https://badge.fury.io/py/pynetcf.svg
    :target: https://badge.fury.io/py/pynetcf

.. image:: https://readthedocs.org/projects/pynetcf/badge/?version=latest
   :target: http://pynetcf.readthedocs.org/

|

=======
pynetcf
=======

Basic python classes that map to netCDF files on disk written according to the `Climate and Forecast metadata conventions`_

.. _Climate and Forecast metadata conventions: (http://cfconventions.org/Data/cf-conventions/cf-conventions-1.6/build/cf-conventions.html)

This is a first draft which has a lot of room for improvements, this is especially true for the time series based representations.

Citation
========

.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.846767.svg
   :target: https://doi.org/10.5281/zenodo.846767

If you use the software in a publication then please cite it using the Zenodo DOI.
Be aware that this badge links to the latest package version.

Please select your specific version at https://doi.org/10.5281/zenodo.846767 to get the DOI of that version.
You should normally always use the DOI for the specific version of your record in citations.
This is to ensure that other researchers can access the exact research artefact you used for reproducibility.

You can find additional information regarding DOI versioning at http://help.zenodo.org/#versioning

Installation
============

This package should be installable through pip:

.. code::

    pip install pynetcf

Contribute
==========

We are happy if you want to contribute. Please raise an issue explaining what
is missing or if you find a bug. We will also gladly accept pull requests
against our master branch for new features or bug fixes.

Development setup
-----------------

For Development we also recommend a ``conda`` environment. You can create one
including test dependencies and debugger by running
``conda env create -f environment.yml``. This will create a new ``pynetcf``
environment which you can activate by using ``source activate pynetcf``.

Guidelines
----------

If you want to contribute please follow these steps:

- Fork the pynetcf repository to your account
- make a new feature branch from the pynetcf master branch
- Add your feature
- Please include tests for your contributions in one of the test directories.
  We use py.test so a simple function called test_my_feature is enough
- submit a pull request to our master branch

.. _pyscaffold-notes:

Note
====

This project has been set up using PyScaffold 4.2.3. For details and usage
information on PyScaffold see https://pyscaffold.org/.

            

Raw data

            {
    "_id": null,
    "home_page": "http://geo.tuwien.ac.at/",
    "name": "pynetcf",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "",
    "author": "TU Wien",
    "author_email": "remote.sensing@geo.tuwien.ac.at",
    "download_url": "https://files.pythonhosted.org/packages/87/bb/a921b1985b5169b0129bc11981fcd29d9e7dc0016285974b54bc497dd328/pynetcf-0.5.0.tar.gz",
    "platform": "any",
    "description": ".. image:: https://github.com/TUW-GEO/pynetcf/workflows/ubuntu/badge.svg\n   :target: https://github.com/TUW-GEO/pynetcf/actions/workflows/ubuntu.yml\n\n.. image:: https://github.com/TUW-GEO/pynetcf/workflows/windows/badge.svg\n   :target: https://github.com/TUW-GEO/pynetcf/actions/workflows/windows.yml\n\n.. image:: https://coveralls.io/repos/github/TUW-GEO/pynetcf/badge.svg?branch=master\n   :target: https://coveralls.io/github/TUW-GEO/pynetcf?branch=master\n\n.. image:: https://badge.fury.io/py/pynetcf.svg\n    :target: https://badge.fury.io/py/pynetcf\n\n.. image:: https://readthedocs.org/projects/pynetcf/badge/?version=latest\n   :target: http://pynetcf.readthedocs.org/\n\n|\n\n=======\npynetcf\n=======\n\nBasic python classes that map to netCDF files on disk written according to the `Climate and Forecast metadata conventions`_\n\n.. _Climate and Forecast metadata conventions: (http://cfconventions.org/Data/cf-conventions/cf-conventions-1.6/build/cf-conventions.html)\n\nThis is a first draft which has a lot of room for improvements, this is especially true for the time series based representations.\n\nCitation\n========\n\n.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.846767.svg\n   :target: https://doi.org/10.5281/zenodo.846767\n\nIf you use the software in a publication then please cite it using the Zenodo DOI.\nBe aware that this badge links to the latest package version.\n\nPlease select your specific version at https://doi.org/10.5281/zenodo.846767 to get the DOI of that version.\nYou should normally always use the DOI for the specific version of your record in citations.\nThis is to ensure that other researchers can access the exact research artefact you used for reproducibility.\n\nYou can find additional information regarding DOI versioning at http://help.zenodo.org/#versioning\n\nInstallation\n============\n\nThis package should be installable through pip:\n\n.. code::\n\n    pip install pynetcf\n\nContribute\n==========\n\nWe are happy if you want to contribute. Please raise an issue explaining what\nis missing or if you find a bug. We will also gladly accept pull requests\nagainst our master branch for new features or bug fixes.\n\nDevelopment setup\n-----------------\n\nFor Development we also recommend a ``conda`` environment. You can create one\nincluding test dependencies and debugger by running\n``conda env create -f environment.yml``. This will create a new ``pynetcf``\nenvironment which you can activate by using ``source activate pynetcf``.\n\nGuidelines\n----------\n\nIf you want to contribute please follow these steps:\n\n- Fork the pynetcf repository to your account\n- make a new feature branch from the pynetcf master branch\n- Add your feature\n- Please include tests for your contributions in one of the test directories.\n  We use py.test so a simple function called test_my_feature is enough\n- submit a pull request to our master branch\n\n.. _pyscaffold-notes:\n\nNote\n====\n\nThis project has been set up using PyScaffold 4.2.3. For details and usage\ninformation on PyScaffold see https://pyscaffold.org/.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Reading and writing netCDF files according to CF conventions",
    "version": "0.5.0",
    "project_urls": {
        "Documentation": "http://pynetcf.readthedocs.org/",
        "Homepage": "http://geo.tuwien.ac.at/"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54018edb79ff2988b0f2ebcb3cd00767b53250d7d708405e1a6d173cf4985972",
                "md5": "39e4605442505a971d8914c259fba238",
                "sha256": "2cde47851f41970c4796f9b128b0f3a46adfda98bd2cd9417ff35fa370597a85"
            },
            "downloads": -1,
            "filename": "pynetcf-0.5.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "39e4605442505a971d8914c259fba238",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 25815,
            "upload_time": "2023-05-08T08:12:16",
            "upload_time_iso_8601": "2023-05-08T08:12:16.424103Z",
            "url": "https://files.pythonhosted.org/packages/54/01/8edb79ff2988b0f2ebcb3cd00767b53250d7d708405e1a6d173cf4985972/pynetcf-0.5.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "87bba921b1985b5169b0129bc11981fcd29d9e7dc0016285974b54bc497dd328",
                "md5": "b9e9cb97c9fda8ffc07ed17078383030",
                "sha256": "38189d854f19877f9c6a4f91f31118b7c9f82d4d5688611b63ff2bc1019e849e"
            },
            "downloads": -1,
            "filename": "pynetcf-0.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "b9e9cb97c9fda8ffc07ed17078383030",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 41115,
            "upload_time": "2023-05-08T08:12:18",
            "upload_time_iso_8601": "2023-05-08T08:12:18.159032Z",
            "url": "https://files.pythonhosted.org/packages/87/bb/a921b1985b5169b0129bc11981fcd29d9e7dc0016285974b54bc497dd328/pynetcf-0.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-08 08:12:18",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "pynetcf"
}
        
Elapsed time: 0.05777s