pygaul


Namepygaul JSON
Version 0.3.2 PyPI version JSON
download
home_page
SummaryEasy access to administrative boundary defined by FAO GAUL from a Python script.
upload_time2023-09-21 16:24:31
maintainer
docs_urlNone
author
requires_python>=3.7
licenseMIT
keywords skeleton python
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
pyGAUL
======

.. image:: https://img.shields.io/badge/License-MIT-yellow.svg?logo=opensourceinitiative&logoColor=white
    :target: LICENSE
    :alt: License: MIT

.. image:: https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg?logo=git&logoColor=white
   :target: https://conventionalcommits.org
   :alt: conventional commit

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
   :target: https://github.com/psf/black
   :alt: Black badge

.. image:: https://img.shields.io/badge/code_style-prettier-ff69b4.svg?logo=prettier&logoColor=white
   :target: https://github.com/prettier/prettier
   :alt: prettier badge

.. image:: https://img.shields.io/badge/pre--commit-active-yellow?logo=pre-commit&logoColor=white
    :target: https://pre-commit.com/
    :alt: pre-commit

.. image:: https://img.shields.io/pypi/v/pygaul?color=blue&logo=pypi&logoColor=white
    :target: https://pypi.org/project/pygaul/
    :alt: PyPI version

.. image:: https://img.shields.io/conda/vn/conda-forge/pygaul?logo=condaforge&logoColor=white&color=orange
    :target: https://anaconda.org/conda-forge/pygaul
    :alt: conda distrib

.. image:: https://img.shields.io/github/actions/workflow/status/12rambau/pygaul/unit.yaml?logo=github&logoColor=white
    :target: https://github.com/12rambau/pygaul/actions/workflows/unit.yaml
    :alt: build

.. image:: https://img.shields.io/codecov/c/github/gee-community/pygaul?logo=codecov&logoColor=white
    :target: https://codecov.io/gh/gee-community/pygaul
    :alt: Test Coverage

.. image:: https://img.shields.io/readthedocs/pygaul?logo=readthedocs&logoColor=white
    :target: https://pygaul.readthedocs.io/en/latest/
    :alt: Documentation Status

Overview
--------

Easy access to administrative boundary defined by FAO GAUL 2015 from Python scripts.

This lib provides access to FAO GAUL 2015 datasets from a Python script. it is the best boundary dataset available for GEE at this point. We provide access to The current version (2015) administrative areas till level 2.

.. note::

   the dataset was generated in 2015 by the Food and Alimentation Organization (FAO). It has not been updated on Google Earthengine since then. Use with caution on disputed territories.

install it using either ``pip`` or ``conda``:

.. code-block:: console

   pip install pygaul

and then request area of interest from their name or GADM Id:

.. code-block:: python

   import pygaul

   gdf = pygaul.AdmItems(name="Singapore", content_level=1)

Credits
-------

This package was created with `Cookiecutter <https://github.com/cookiecutter/cookiecutter>`__ and the `12rambau/pypackage <https://github.com/12rambau/pypackage>`__ project template.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pygaul",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "skeleton,Python",
    "author": "",
    "author_email": "Pierrick Rambaud <pierrick.rambaud49@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/01/ae/223f71167feed698b65aadb61a2fd5906fb2a5f1c12b2d85fd620812db33/pygaul-0.3.2.tar.gz",
    "platform": null,
    "description": "\npyGAUL\n======\n\n.. image:: https://img.shields.io/badge/License-MIT-yellow.svg?logo=opensourceinitiative&logoColor=white\n    :target: LICENSE\n    :alt: License: MIT\n\n.. image:: https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg?logo=git&logoColor=white\n   :target: https://conventionalcommits.org\n   :alt: conventional commit\n\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n   :target: https://github.com/psf/black\n   :alt: Black badge\n\n.. image:: https://img.shields.io/badge/code_style-prettier-ff69b4.svg?logo=prettier&logoColor=white\n   :target: https://github.com/prettier/prettier\n   :alt: prettier badge\n\n.. image:: https://img.shields.io/badge/pre--commit-active-yellow?logo=pre-commit&logoColor=white\n    :target: https://pre-commit.com/\n    :alt: pre-commit\n\n.. image:: https://img.shields.io/pypi/v/pygaul?color=blue&logo=pypi&logoColor=white\n    :target: https://pypi.org/project/pygaul/\n    :alt: PyPI version\n\n.. image:: https://img.shields.io/conda/vn/conda-forge/pygaul?logo=condaforge&logoColor=white&color=orange\n    :target: https://anaconda.org/conda-forge/pygaul\n    :alt: conda distrib\n\n.. image:: https://img.shields.io/github/actions/workflow/status/12rambau/pygaul/unit.yaml?logo=github&logoColor=white\n    :target: https://github.com/12rambau/pygaul/actions/workflows/unit.yaml\n    :alt: build\n\n.. image:: https://img.shields.io/codecov/c/github/gee-community/pygaul?logo=codecov&logoColor=white\n    :target: https://codecov.io/gh/gee-community/pygaul\n    :alt: Test Coverage\n\n.. image:: https://img.shields.io/readthedocs/pygaul?logo=readthedocs&logoColor=white\n    :target: https://pygaul.readthedocs.io/en/latest/\n    :alt: Documentation Status\n\nOverview\n--------\n\nEasy access to administrative boundary defined by FAO GAUL 2015 from Python scripts.\n\nThis lib provides access to FAO GAUL 2015 datasets from a Python script. it is the best boundary dataset available for GEE at this point. We provide access to The current version (2015) administrative areas till level 2.\n\n.. note::\n\n   the dataset was generated in 2015 by the Food and Alimentation Organization (FAO). It has not been updated on Google Earthengine since then. Use with caution on disputed territories.\n\ninstall it using either ``pip`` or ``conda``:\n\n.. code-block:: console\n\n   pip install pygaul\n\nand then request area of interest from their name or GADM Id:\n\n.. code-block:: python\n\n   import pygaul\n\n   gdf = pygaul.AdmItems(name=\"Singapore\", content_level=1)\n\nCredits\n-------\n\nThis package was created with `Cookiecutter <https://github.com/cookiecutter/cookiecutter>`__ and the `12rambau/pypackage <https://github.com/12rambau/pypackage>`__ project template.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Easy access to administrative boundary defined by FAO GAUL from a Python script.",
    "version": "0.3.2",
    "project_urls": {
        "Homepage": "https://github.com/12rambau/pygaul"
    },
    "split_keywords": [
        "skeleton",
        "python"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "083229538472873a104e380b7f6b8090b12478554d39916f4848ef6e9765aca1",
                "md5": "621d4a9c3aead15d718cb0161d2d6415",
                "sha256": "e6e78cd95e4024b6a3492303ca1157f4a0343eb242155be9d6fefa1531c7c046"
            },
            "downloads": -1,
            "filename": "pygaul-0.3.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "621d4a9c3aead15d718cb0161d2d6415",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 553705,
            "upload_time": "2023-09-21T16:24:28",
            "upload_time_iso_8601": "2023-09-21T16:24:28.910963Z",
            "url": "https://files.pythonhosted.org/packages/08/32/29538472873a104e380b7f6b8090b12478554d39916f4848ef6e9765aca1/pygaul-0.3.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01ae223f71167feed698b65aadb61a2fd5906fb2a5f1c12b2d85fd620812db33",
                "md5": "6ff8efe498d57bf4ac19598baf22c588",
                "sha256": "240d0cf0ef311015eb836e984795632b709048bf411ad9735732def0130f1716"
            },
            "downloads": -1,
            "filename": "pygaul-0.3.2.tar.gz",
            "has_sig": false,
            "md5_digest": "6ff8efe498d57bf4ac19598baf22c588",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 558453,
            "upload_time": "2023-09-21T16:24:31",
            "upload_time_iso_8601": "2023-09-21T16:24:31.454030Z",
            "url": "https://files.pythonhosted.org/packages/01/ae/223f71167feed698b65aadb61a2fd5906fb2a5f1c12b2d85fd620812db33/pygaul-0.3.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-21 16:24:31",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "12rambau",
    "github_project": "pygaul",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pygaul"
}
        
Elapsed time: 0.11441s