All Projects → fatiando → Verde

fatiando / Verde

Licence: other
Processing and interpolating spatial data with a twist of machine learning

Programming Languages

python
139335 projects - #7 most used programming language
python3
1442 projects

Projects that are alternatives of or similar to Verde

Harmonica
Forward modeling, inversion, and processing gravity and magnetic data
Stars: ✭ 75 (-71.15%)
Mutual labels:  scipy, geophysics, geoscience
Fatiando
Python toolkit for modeling and inversion in geophysics. DEPRECATED in favor of our newer libraries (see www.fatiando.org)
Stars: ✭ 179 (-31.15%)
Mutual labels:  scipy, geophysics, geoscience
Awesome Open Geoscience
Curated from repositories that make our lives as geoscientists, hackers and data wranglers easier or just more awesome
Stars: ✭ 668 (+156.92%)
Mutual labels:  geospatial, geophysics, geoscience
Gmt
The Generic Mapping Tools
Stars: ✭ 468 (+80%)
Mutual labels:  geospatial, geophysics
Mintpy
Miami InSAR time-series software in Python
Stars: ✭ 195 (-25%)
Mutual labels:  geophysics, geoscience
Geospatial Machine Learning
A curated list of resources focused on Machine Learning in Geospatial Data Science.
Stars: ✭ 289 (+11.15%)
Mutual labels:  geospatial, geoscience
Notebooks
IPython Notebooks
Stars: ✭ 91 (-65%)
Mutual labels:  geophysics, geoscience
Xesmf
Universal Regridder for Geospatial Data
Stars: ✭ 197 (-24.23%)
Mutual labels:  geospatial, interpolation
Gmtmex
GMT API for MATLAB
Stars: ✭ 23 (-91.15%)
Mutual labels:  geospatial, geophysics
Geostats.jl
An extensible framework for high-performance geostatistics in Julia
Stars: ✭ 222 (-14.62%)
Mutual labels:  geospatial, interpolation
rockhound
NOTICE: This library is no longer being developed. Use Ensaio instead (https://www.fatiando.org/ensaio). -- Download geophysical models/datasets and load them in Python
Stars: ✭ 33 (-87.31%)
Mutual labels:  geoscience, geophysics
python-aos-lesson
Python for Atmosphere and Ocean Scientists
Stars: ✭ 78 (-70%)
Mutual labels:  geospatial, geoscience
GMT.jl
Generic Mapping Tools Library Wrapper for Julia
Stars: ✭ 148 (-43.08%)
Mutual labels:  geospatial, geophysics
2016 Ml Contest
Machine learning contest - October 2016 TLE
Stars: ✭ 135 (-48.08%)
Mutual labels:  geophysics, geoscience
xlines
X lines of Python
Stars: ✭ 100 (-61.54%)
Mutual labels:  geoscience, geophysics
Python Aos Lesson
Python for Atmosphere and Ocean Scientists
Stars: ✭ 49 (-81.15%)
Mutual labels:  geospatial, geoscience
Simpeg
Simulation and Parameter Estimation in Geophysics - A python package for simulation and gradient based parameter estimation in the context of geophysical applications.
Stars: ✭ 283 (+8.85%)
Mutual labels:  geophysics, geoscience
Pygmt
A Python interface for the Generic Mapping Tools.
Stars: ✭ 331 (+27.31%)
Mutual labels:  geophysics, geoscience
spatial efd
A spatial aware implementation of elliptical Fourier analysis
Stars: ✭ 19 (-92.69%)
Mutual labels:  geospatial, geoscience
python-for-gis-progression-path
Progression path for a GIS analyst who wants to become proficient in using Python for GIS: from apprentice to guru
Stars: ✭ 98 (-62.31%)
Mutual labels:  geospatial, scipy

.. image:: https://github.com/fatiando/verde/raw/master/doc/_static/readme-banner.png :alt: Verde

Documentation <http://www.fatiando.org/verde>__ | Documentation (dev version) <http://www.fatiando.org/verde/dev>__ | Contact <http://contact.fatiando.org>__ | Part of the Fatiando a Terra <https://www.fatiando.org>__ project

.. image:: http://img.shields.io/pypi/v/verde.svg?style=flat-square&label=version :alt: Latest version on PyPI :target: https://pypi.python.org/pypi/verde .. image:: http://img.shields.io/travis/fatiando/verde/master.svg?style=flat-square&label=TravisCI :alt: TravisCI build status :target: https://travis-ci.org/fatiando/verde .. image:: https://img.shields.io/azure-devops/build/fatiando/066f88d8-0495-49ba-bad9-ef7431356ce9/7/master.svg?label=Azure&style=flat-square :alt: Azure Pipelines build status :target: https://dev.azure.com/fatiando/verde/_build .. image:: https://img.shields.io/codecov/c/github/fatiando/verde/master.svg?style=flat-square :alt: Test coverage status :target: https://codecov.io/gh/fatiando/verde .. image:: https://img.shields.io/codacy/grade/6b698defc0df47288a634930d41a9d65.svg?style=flat-square&label=codacy :alt: Code quality grade on codacy :target: https://www.codacy.com/app/leouieda/verde .. image:: https://img.shields.io/pypi/pyversions/verde.svg?style=flat-square :alt: Compatible Python versions. :target: https://pypi.python.org/pypi/verde .. image:: https://img.shields.io/badge/doi-10.21105%2Fjoss.00957-blue.svg?style=flat-square :alt: Digital Object Identifier for the JOSS paper :target: https://doi.org/10.21105/joss.00957

.. placeholder-for-doc-index

About

Verde is a Python library for processing spatial data (bathymetry, geophysics surveys, etc) and interpolating it on regular grids (i.e., gridding).

Most gridding methods in Verde use a Green's functions approach. A linear model is estimated based on the input data and then used to predict data on a regular grid (or in a scatter, a profile, as derivatives). The models are Green's functions from (mostly) elastic deformation theory. This approach is very similar to machine learning so we implement gridder classes that are similar to scikit-learn <http://scikit-learn.org/>__ regression classes. The API is not 100% compatible but it should look familiar to those with some scikit-learn experience.

Advantages of using Green's functions include:

  • Easily apply weights to data points. This is a linear least-squares problem.
  • Perform model selection using established machine learning techniques, like k-fold or holdout cross-validation.
  • The estimated model can be easily stored for later use, like spherical-harmonic coefficients are used in gravimetry.

The main disadvantage is the heavy memory and processing time requirement (it's a linear regression problem).

Project goals

  • Provide a machine-learning inspired interface for gridding spatial data
  • Integration with the Scipy stack: numpy, pandas, scikit-learn, and xarray
  • Include common processing and data preparation tasks, like blocked means and 2D trends
  • Support for gridding scalar and vector data (like wind speed or GPS velocities)
  • Support for both Cartesian and geographic coordinates

The first release of Verde was focused on meeting these initial goals and establishing the look and feel of the library. Later releases will focus on expanding the range of gridders available, optimizing the code, and improving algorithms so that larger-than-memory datasets can also be supported.

Contacting us

  • Most discussion happens on Github <https://github.com/fatiando/verde>. Feel free to open an issue <https://github.com/fatiando/verde/issues/new> or comment on any open issue or pull request.
  • We have chat room on Slack <http://contact.fatiando.org>__ where you can ask questions and leave comments.

Citing Verde

This is research software made by scientists (see AUTHORS.md <https://github.com/fatiando/verde/blob/master/AUTHORS.md>__). Citations help us justify the effort that goes into building and maintaining this project. If you used Verde for your research, please consider citing us.

See our CITATION.rst file <https://github.com/fatiando/verde/blob/master/CITATION.rst>__ to find out more.

Contributing

Code of conduct +++++++++++++++

Please note that this project is released with a Contributor Code of Conduct <https://github.com/fatiando/verde/blob/master/CODE_OF_CONDUCT.md>__. By participating in this project you agree to abide by its terms.

Contributing Guidelines +++++++++++++++++++++++

Please read our Contributing Guide <https://github.com/fatiando/verde/blob/master/CONTRIBUTING.md>__ to see how you can help and give feedback.

Imposter syndrome disclaimer ++++++++++++++++++++++++++++

We want your help. No, really.

There may be a little voice inside your head that is telling you that you're not ready to be an open source contributor; that your skills aren't nearly good enough to contribute. What could you possibly offer?

We assure you that the little voice in your head is wrong.

Being a contributor doesn't just mean writing code. Equally important contributions include: writing or proof-reading documentation, suggesting or implementing tests, or even giving feedback about the project (including giving feedback about the contribution process). If you're coming to the project with fresh eyes, you might see the errors and assumptions that seasoned contributors have glossed over. If you can write any code at all, you can contribute code to open source. We are constantly trying out new skills, making mistakes, and learning from those mistakes. That's how we all improve and we are happy to help others learn.

This disclaimer was adapted from the MetPy project <https://github.com/Unidata/MetPy>__.

License

This is free software: you can redistribute it and/or modify it under the terms of the BSD 3-clause License. A copy of this license is provided in LICENSE.txt <https://github.com/fatiando/verde/blob/master/LICENSE.txt>__.

Documentation for other versions

  • Development <http://www.fatiando.org/verde/dev>__ (reflects the master branch on Github)
  • Latest release <http://www.fatiando.org/verde/latest>__
  • v1.6.0 <http://www.fatiando.org/verde/v1.6.0>__
  • v1.5.0 <http://www.fatiando.org/verde/v1.5.0>__
  • v1.4.0 <http://www.fatiando.org/verde/v1.4.0>__
  • v1.3.0 <http://www.fatiando.org/verde/v1.3.0>__
  • v1.2.0 <http://www.fatiando.org/verde/v1.2.0>__
  • v1.1.0 <http://www.fatiando.org/verde/v1.1.0>__
  • v1.0.1 <http://www.fatiando.org/verde/v1.0.1>__
  • v1.0.0 <http://www.fatiando.org/verde/v1.0.0>__
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].