All Projects → earthlab → Earthpy

earthlab / Earthpy

Licence: bsd-3-clause
A package built to support working with spatial data using open source python

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Earthpy

Free Gophers Pack
✨ This pack of 100+ gopher pictures and elements will help you to build own design of almost anything related to Go Programming Language: presentations, posts in blogs or social media, courses, videos and many, many more.
Stars: ✭ 2,343 (+892.8%)
Mutual labels:  vector, raster, education
GDAL.jl
Thin Julia wrapper for GDAL - Geospatial Data Abstraction Library
Stars: ✭ 78 (-66.95%)
Mutual labels:  vector, raster
profiletool
Home to the QGis Profiletool plugin. Initial work on this fork was partially funded by the C.A. La Rioja
Stars: ✭ 23 (-90.25%)
Mutual labels:  vector, raster
Geospatial Python CourseV1
This is an collection of blog posts turned into a course format
Stars: ✭ 53 (-77.54%)
Mutual labels:  vector, raster
Python Geospatial
A collection of Python packages for geospatial analysis with binder-ready notebook examples
Stars: ✭ 187 (-20.76%)
Mutual labels:  vector, raster
Grass
GRASS GIS - free and open source Geographic Information System (GIS)
Stars: ✭ 281 (+19.07%)
Mutual labels:  vector, raster
grass-addons
GRASS GIS Addons Repository (Manuals: https://grass.osgeo.org/grass-stable/manuals/addons/ | Linux-logs: https://grass.osgeo.org/addons/grass8/logs/ | Windows logs: https://wingrass.fsv.cvut.cz/grass82/addons/grass-8.2.0/logs/)
Stars: ✭ 64 (-72.88%)
Mutual labels:  vector, raster
Geocube
Tool to convert geopandas vector data into rasterized xarray data.
Stars: ✭ 87 (-63.14%)
Mutual labels:  vector, raster
Mapchete
Tile-based geodata processing using rasterio & Fiona
Stars: ✭ 129 (-45.34%)
Mutual labels:  vector, raster
Earthenterprise
Google Earth Enterprise - Open Source
Stars: ✭ 2,425 (+927.54%)
Mutual labels:  vector, raster
Gdal
GDAL is an open source X/MIT licensed translator library for raster and vector geospatial data formats.
Stars: ✭ 2,797 (+1085.17%)
Mutual labels:  vector, raster
Ok
ok.py supports programming projects by running tests, tracking progress, and assisting in debugging.
Stars: ✭ 229 (-2.97%)
Mutual labels:  education
Rio Tiler
Rasterio plugin to create web map tiles from raster datasets.
Stars: ✭ 221 (-6.36%)
Mutual labels:  raster
Uportal
Enterprise open source portal built by and for the higher education community.
Stars: ✭ 221 (-6.36%)
Mutual labels:  education
Programmieren In Rust
Course page „Programmieren in Rust“, University Osnabrück (German!)
Stars: ✭ 222 (-5.93%)
Mutual labels:  education
Pluto.jl
🎈 Simple reactive notebooks for Julia
Stars: ✭ 3,430 (+1353.39%)
Mutual labels:  education
30 Seconds Of Css
Short CSS code snippets for all your development needs
Stars: ✭ 14,945 (+6232.63%)
Mutual labels:  education
Twitterlaunchanimation
The library with Twitter-like launch animation
Stars: ✭ 221 (-6.36%)
Mutual labels:  vector
Howtodothisinflutter
📄Flutter cheat sheet
Stars: ✭ 219 (-7.2%)
Mutual labels:  education
30 Seconds Of Php
Short PHP code snippets for all your development needs
Stars: ✭ 2,461 (+942.8%)
Mutual labels:  education

DOI pyOpenSci Build Status Build status codecov Docs build Code style: black

EarthPy

PyPI PyPI - Downloads Conda Conda

EarthPy makes it easier to plot and manipulate spatial data in Python.

Why EarthPy?

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:

EarthPy also has an io module that allows users to

  1. Quickly access pre-created data subsets used in the earth-analytics courses hosted on www.earthdatascience.org
  2. Download other datasets that they may want to use in their workflows.

EarthPy's design was inspired by the raster and sp package functionality available to R users.

View Example EarthPy Applications in Our Documentation Gallery

Check out our vignette gallery for applied examples of using EarthPy in common spatial workflows.

Install

EarthPy can be installed using pip, but we strongly recommend that you install it using conda and the conda-forge channel.

Install Using Conda / conda-forge Channel (Preferred)

If you are working within an Anaconda environment, we suggest that you install EarthPy using conda-forge

$ conda install -c conda-forge earthpy

Note: if you want to set conda-forge as your default conda channel, you can use the following install workflow. We recommmend this approach. Once you have run conda config, you can install earthpy without specifying a channel.

$ conda config --add channels conda-forge
$ conda install earthpy

Install via Pip

We strongly suggest that you install EarthPy using conda-forge given pip can be more prone to spatial library dependency conflicts. However, you can install earthpy using pip.

To install EarthPy via pip use:

$ pip install --upgrade earthpy

Once you have successfully installed EarthPy, you can import it into Python.

>>> import earthpy.plot as ep

Below is a quick example of plotting multiple bands in a numpy array format.

>>> arr = np.random.randint(4, size=(3, 5, 5))
>>> ep.plot_bands(arr, titles=["Band 1", "Band 2", "Band 3"])
>>> plt.show()

Active Maintainers

We welcome contributions to EarthPy. Below are the current active package maintainers. Please see our contributors file for a complete list of all of our contributors.

Leah Wasser Max Joseph Joseph McGlinchy Jenny Palomino Nathan Korinek

Contributors

We've welcome any and all contributions. Below are some of the contributors to EarthPy. We are currently trying to update this list!!

Michelle Roby Tim Head Michelle Roby Michelle Roby

How to Contribute

We welcome contributions to EarthPy! Please be sure to check out our contributing guidelines for more information about submitting pull requests or changes to EarthPy.

License & Citation

BSD-3

Citation Information

When citing EarthPy, please cite our JOSS paper:

@article{Wasser2019EarthPy,
	journal = {Journal of Open Source Software},
	doi = {10.21105/joss.01886},
	issn = {2475-9066},
	number = {43},
	publisher = {The Open Journal},
	title = {EarthPy: A Python package that makes it easier to explore and plot raster and vector data using open source Python tools.},
	url = {https://doi.org/10.21105/joss.01886},
	volume = {4},
	author = {Wasser, Leah and Joseph, Maxwell and McGlinchy, Joe and Palomino, Jenny and Korinek, Nathan and Holdgraf, Chris and Head, Tim},
	pages = {1886},
	date = {2019-11-13},
	year = {2019},
	month = {11},
	day = {13},
}

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].