pygeogrids


Namepygeogrids JSON
Version 0.5.0 PyPI version JSON
download
home_pagehttps://github.com/TUW-GEO/pygeogrids/
SummaryModule for creation and handling of discrete global grids
upload_time2023-11-21 11:06:17
maintainer
docs_urlNone
authorTU Wien
requires_python>=3.6
licensemit
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            ==========
pygeogrids
==========

.. image:: https://github.com/TUW-GEO/pygeogrids/workflows/test/badge.svg
   :target: https://github.com/TUW-GEO/pygeogrids/actions?query=test

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

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

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


This is a package for creation and handling of Discrete Global Grids or Point
collections. We hope extend the interface also to projected grids(images) in the
future.

Citation
========

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

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.596401 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 pygeogrids

Features
========

For now the main features are:

-  Creation of grids
-  Nearest neighbor search
-  conversion of grid piont indices to lat, lon
-  Storage of grids and loading grids from CF-compatible netCDF files
-  Calculation of lookup tables between grids
-  Support for different Geodetic Datums using pyproj.

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 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 ``pygeogrids``
environment which you can activate by using ``source activate pygeogrids``.

Guidelines
----------

If you want to contribute please follow these steps:

- Fork the pygeogrids repository to your account
- Clone the repository
- make a new feature branch from the pygeogrids 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

Note
====

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

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/TUW-GEO/pygeogrids/",
    "name": "pygeogrids",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "",
    "author": "TU Wien",
    "author_email": "remote.sensing@geo.tuwien.ac.at",
    "download_url": "https://files.pythonhosted.org/packages/6a/49/e849f39aee8f3e5c607f51999956d5a55807a1b577d374c6a38b02d41c17/pygeogrids-0.5.0.tar.gz",
    "platform": "any",
    "description": "==========\r\npygeogrids\r\n==========\r\n\r\n.. image:: https://github.com/TUW-GEO/pygeogrids/workflows/test/badge.svg\r\n   :target: https://github.com/TUW-GEO/pygeogrids/actions?query=test\r\n\r\n.. image:: https://coveralls.io/repos/TUW-GEO/pygeogrids/badge.svg?branch=master\r\n   :target: https://coveralls.io/r/TUW-GEO/pygeogrids?branch=master\r\n\r\n.. image:: https://badge.fury.io/py/pygeogrids.svg\r\n    :target: https://badge.fury.io/py/pygeogrids\r\n\r\n.. image:: https://readthedocs.org/projects/pygeogrids/badge/?version=latest\r\n   :target: http://pygeogrids.readthedocs.org/\r\n\r\n\r\nThis is a package for creation and handling of Discrete Global Grids or Point\r\ncollections. We hope extend the interface also to projected grids(images) in the\r\nfuture.\r\n\r\nCitation\r\n========\r\n\r\n.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.596401.svg\r\n   :target: https://doi.org/10.5281/zenodo.596401\r\n\r\nIf you use the software in a publication then please cite it using the Zenodo DOI.\r\nBe aware that this badge links to the latest package version.\r\n\r\nPlease select your specific version at https://doi.org/10.5281/zenodo.596401 to get the DOI of that version.\r\nYou should normally always use the DOI for the specific version of your record in citations.\r\nThis is to ensure that other researchers can access the exact research artefact you used for reproducibility.\r\n\r\nYou can find additional information regarding DOI versioning at http://help.zenodo.org/#versioning\r\n\r\nInstallation\r\n============\r\n\r\nThis package should be installable through pip:\r\n\r\n.. code::\r\n\r\n    pip install pygeogrids\r\n\r\nFeatures\r\n========\r\n\r\nFor now the main features are:\r\n\r\n-  Creation of grids\r\n-  Nearest neighbor search\r\n-  conversion of grid piont indices to lat, lon\r\n-  Storage of grids and loading grids from CF-compatible netCDF files\r\n-  Calculation of lookup tables between grids\r\n-  Support for different Geodetic Datums using pyproj.\r\n\r\nContribute\r\n==========\r\n\r\nWe are happy if you want to contribute. Please raise an issue explaining what\r\nis missing or if you find a bug. We will also gladly accept pull requests\r\nagainst our master branch for new features or bug fixes.\r\n\r\nDevelopment setup\r\n-----------------\r\n\r\nFor Development we recommend a ``conda`` environment. You can create one\r\nincluding test dependencies and debugger by running\r\n``conda env create -f environment.yml``. This will create a new ``pygeogrids``\r\nenvironment which you can activate by using ``source activate pygeogrids``.\r\n\r\nGuidelines\r\n----------\r\n\r\nIf you want to contribute please follow these steps:\r\n\r\n- Fork the pygeogrids repository to your account\r\n- Clone the repository\r\n- make a new feature branch from the pygeogrids master branch\r\n- Add your feature\r\n- Please include tests for your contributions in one of the test directories.\r\n  We use py.test so a simple function called test_my_feature is enough\r\n- submit a pull request to our master branch\r\n\r\nNote\r\n====\r\n\r\nThis project has been set up using PyScaffold 3.2.3. For details and usage\r\ninformation on PyScaffold see https://pyscaffold.org/.\r\n",
    "bugtrack_url": null,
    "license": "mit",
    "summary": "Module for creation and handling of discrete global grids",
    "version": "0.5.0",
    "project_urls": {
        "Documentation": "http://pygeogrids.readthedocs.org/",
        "Homepage": "https://github.com/TUW-GEO/pygeogrids/"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7479096870c56cc72018379eefeb026bd03c9c42f9948854b06132de9e698ca",
                "md5": "b9e4f254f8cbeab51185b0240171f630",
                "sha256": "f26d15e1977907d5810f3922adf7d90a1fe9a2c242463b16a6c4ded40d0a81b6"
            },
            "downloads": -1,
            "filename": "pygeogrids-0.5.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b9e4f254f8cbeab51185b0240171f630",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.6",
            "size": 222089,
            "upload_time": "2023-11-21T11:06:15",
            "upload_time_iso_8601": "2023-11-21T11:06:15.257238Z",
            "url": "https://files.pythonhosted.org/packages/b7/47/9096870c56cc72018379eefeb026bd03c9c42f9948854b06132de9e698ca/pygeogrids-0.5.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a49e849f39aee8f3e5c607f51999956d5a55807a1b577d374c6a38b02d41c17",
                "md5": "367d406a3ff9b6469263e1c7c9098db7",
                "sha256": "ba689b42e751e6a5816f801c67470edfc16354413a7a86754f95a43afea0fe92"
            },
            "downloads": -1,
            "filename": "pygeogrids-0.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "367d406a3ff9b6469263e1c7c9098db7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 259195,
            "upload_time": "2023-11-21T11:06:17",
            "upload_time_iso_8601": "2023-11-21T11:06:17.506148Z",
            "url": "https://files.pythonhosted.org/packages/6a/49/e849f39aee8f3e5c607f51999956d5a55807a1b577d374c6a38b02d41c17/pygeogrids-0.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-21 11:06:17",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "TUW-GEO",
    "github_project": "pygeogrids",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "pygeogrids"
}
        
Elapsed time: 0.17563s