science/py-earthpy: adding a tool to plot and manipulate spatial data in Python

This commit is contained in:
Thierry Thomas 2022-11-04 12:57:44 +01:00
parent c86a2b506c
commit 8a197acffc
5 changed files with 89 additions and 0 deletions

View File

@ -308,6 +308,7 @@
SUBDIR += py-dwave-system
SUBDIR += py-dwave-tabu
SUBDIR += py-dwavebinarycsp
SUBDIR += py-earthpy
SUBDIR += py-eccodes
SUBDIR += py-esda
SUBDIR += py-fresnel

View File

@ -0,0 +1,30 @@
PORTNAME= earthpy
PORTVERSION= 0.9.4
CATEGORIES= science geography python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= thierry@FreeBSD.org
COMMENT= Plot and manipulate spatial data in Python
WWW= https://github.com/earthlab/earthpy
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= ${PYNUMPY} \
${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}rasterio>=0:graphics/py-rasterio@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}matplotlib>=0:math/py-matplotlib@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}geopandas>=0:graphics/py-geopandas@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}scikit-image>=0:graphics/py-scikit-image@${PY_FLAVOR}
RUN_DEPENDS= ${PYNUMPY} \
${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}rasterio>=0:graphics/py-rasterio@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}matplotlib>=0:math/py-matplotlib@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}geopandas>=0:graphics/py-geopandas@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}scikit-image>=0:graphics/py-scikit-image@${PY_FLAVOR}
USES= python:3.7+
USE_PYTHON= distutils
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1667554646
SHA256 (earthpy-0.9.4.tar.gz) = 16ec2831ec87ace9d70473ef23840b6bf3cd239e178b9ddb5767da86e5a34c1b
SIZE (earthpy-0.9.4.tar.gz) = 1366501

View File

@ -0,0 +1,24 @@
Python is a generic programming language designed to support many different
applications. Because of this, many commonly performed spatial tasks for science
including plotting and working with spatial data take many steps of code.
EarthPy builds upon the functionality developed for raster data (rasterio) and
vector data (geopandas) in Python and simplifies the code needed to:
- Stack and crop raster bands from data such as Landsat into an easy to use
numpy array;
- Work with masks to set bad pixels such a those covered by clouds and
cloud-shadows to NA (mask_pixels());
- Plot rgb (color), color infrared and other 3 band combination images
(plot_rgb());
- Plot bands of a raster quickly using plot_bands();
- Plot histograms for a set of raster files;
- Create discrete (categorical) legends;
- Calculate vegetation indices such as Normalized Difference Vegetation Index
(normalized_diff());
- Create hillshade from a DEM.
EarthPy also has an io module that allows users to
- Quickly access pre-created data subsets used in the earth-analytics courses
hosted on www.earthdatascience.org;
- Download other datasets that they may want to use in their workflows.

View File

@ -0,0 +1,31 @@
%%PYTHON_SITELIBDIR%%/earthpy/__init__.py
%%PYTHON_SITELIBDIR%%/earthpy/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.opt-1.pyc
%%PYTHON_SITELIBDIR%%/earthpy/__pycache__/__init__.cpython-%%PYTHON_SUFFIX%%.pyc
%%PYTHON_SITELIBDIR%%/earthpy/__pycache__/clip.cpython-%%PYTHON_SUFFIX%%.opt-1.pyc
%%PYTHON_SITELIBDIR%%/earthpy/__pycache__/clip.cpython-%%PYTHON_SUFFIX%%.pyc
%%PYTHON_SITELIBDIR%%/earthpy/__pycache__/io.cpython-%%PYTHON_SUFFIX%%.opt-1.pyc
%%PYTHON_SITELIBDIR%%/earthpy/__pycache__/io.cpython-%%PYTHON_SUFFIX%%.pyc
%%PYTHON_SITELIBDIR%%/earthpy/__pycache__/mask.cpython-%%PYTHON_SUFFIX%%.opt-1.pyc
%%PYTHON_SITELIBDIR%%/earthpy/__pycache__/mask.cpython-%%PYTHON_SUFFIX%%.pyc
%%PYTHON_SITELIBDIR%%/earthpy/__pycache__/plot.cpython-%%PYTHON_SUFFIX%%.opt-1.pyc
%%PYTHON_SITELIBDIR%%/earthpy/__pycache__/plot.cpython-%%PYTHON_SUFFIX%%.pyc
%%PYTHON_SITELIBDIR%%/earthpy/__pycache__/spatial.cpython-%%PYTHON_SUFFIX%%.opt-1.pyc
%%PYTHON_SITELIBDIR%%/earthpy/__pycache__/spatial.cpython-%%PYTHON_SUFFIX%%.pyc
%%PYTHON_SITELIBDIR%%/earthpy/clip.py
%%PYTHON_SITELIBDIR%%/earthpy/example-data/blue.tif
%%PYTHON_SITELIBDIR%%/earthpy/example-data/colorado-counties.geojson
%%PYTHON_SITELIBDIR%%/earthpy/example-data/colorado-glaciers.geojson
%%PYTHON_SITELIBDIR%%/earthpy/example-data/continental-div-trail.geojson
%%PYTHON_SITELIBDIR%%/earthpy/example-data/epsg.json
%%PYTHON_SITELIBDIR%%/earthpy/example-data/green.tif
%%PYTHON_SITELIBDIR%%/earthpy/example-data/red.tif
%%PYTHON_SITELIBDIR%%/earthpy/example-data/rmnp-dem.tif
%%PYTHON_SITELIBDIR%%/earthpy/example-data/rmnp-rgb.tif
%%PYTHON_SITELIBDIR%%/earthpy/example-data/rmnp.dbf
%%PYTHON_SITELIBDIR%%/earthpy/example-data/rmnp.prj
%%PYTHON_SITELIBDIR%%/earthpy/example-data/rmnp.shp
%%PYTHON_SITELIBDIR%%/earthpy/example-data/rmnp.shx
%%PYTHON_SITELIBDIR%%/earthpy/io.py
%%PYTHON_SITELIBDIR%%/earthpy/mask.py
%%PYTHON_SITELIBDIR%%/earthpy/plot.py
%%PYTHON_SITELIBDIR%%/earthpy/spatial.py