yufengwa / GeoStats.jl

An extensible framework for high-performance geostatistics in Julia

Home Page:https://juliaearth.github.io/GeoStats.jl/stable

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool


Project goals

  • Design a comprehensive framework for geostatistics (or spatial statistics) in a modern programming language.
  • Address the lack of a platform for scientific comparison of different geostatistical algorithms in the literature.
  • Exploit modern hardware aggressively, including GPUs and computer clusters.
  • Educate people outside of the field about the existence of geostatistics.

Installation

Get the latest stable release with Julia's package manager:

] add GeoStats

Documentation

  • STABLE โ€” most recently tagged version of the documentation.
  • LATEST โ€” in-development version of the documentation.

Tutorials

A set of Jupyter notebooks demonstrating the current functionality of the project is available in GeoStatsTutorials with an accompanying series of videos:

Below is a quick preview of the high-level API:

using GeoStats
using Plots

# data.csv:
#    x,    y,       station,        precip
# 25.0, 25.0,     palo alto,           1.0
# 50.0, 75.0,  redwood city,           0.0
# 75.0, 50.0, mountain view,           1.0

# read spatial data (e.g. geotable)
๐’ฏ = readgeotable("data.csv", coordnames=(:x,:y))

# define spatial domain (e.g. regular grid)
๐’Ÿ = RegularGrid(100, 100)

# define estimation problem for precipitation
๐’ซ = EstimationProblem(๐’ฏ, ๐’Ÿ, :precip)

# choose a solver from the list of solvers
๐’ฎ = Kriging(
  :precip => (variogram=GaussianVariogram(range=35.),)
)

# solve the problem
sol = solve(๐’ซ, ๐’ฎ)

# plot the solution
contourf(sol)

Contributing and supporting

Contributions are very welcome, as are feature requests and suggestions. Please open an issue if you encounter any problems. We have written instructions to help you with the process.

If you have questions, don't hesitate to ask. Join our community in our gitter channel. We are always willing to help.

GeoStats.jl was developed as part of academic research. It will always be open source and free of charge. If you would like to help support the project, please star the repository STARS and share it with your colleagues. To fund this work I have chosen to rely on the direct support of the community:

liberapay

Citing

If you find GeoStats.jl useful in your work, please consider citing it:

JOSS DOI

@ARTICLE{GeoStats.jl-2018,
  title={GeoStats.jl โ€“ High-performance geostatistics in Julia},
  author={Hoffimann, Jรบlio},
  journal={Journal of Open Source Software},
  publisher={The Open Journal},
  volume={3},
  pages={692},
  number={24},
  ISSN={2475-9066},
  DOI={10.21105/joss.00692},
  url={http://dx.doi.org/10.21105/joss.00692},
  year={2018},
  month={Apr}
}

Used at



Contributors

This project would not be possible without the contributions of:


Maarten Pronk

๐Ÿš‡

Martijn Visser

๐Ÿ’ป

Fredrik Ekre

๐Ÿš‡

Durand D'souza

๐Ÿ’ป

Morten Piibeleht

๐Ÿ“–

Tony Kelman

๐Ÿš‡

M. A. Siddique

๐Ÿ’ฌ

Anshul Singhvi

๐Ÿ“–

Zlatan Vasoviฤ‡

๐Ÿ“–

Benoit Pasquier

๐Ÿ’ป

exepulveda

๐Ÿ’ป

Renato Aranha

โš ๏ธ

Patrick Kofod Mogensen

๐Ÿ’ป

Kai Xu

๐Ÿ’ป

Paul Matlashewski

๐Ÿ’ป

Riyad Muradov

๐Ÿ’ป

Alex Miltenberger

๐Ÿ’ป

Lakshya Khatri

๐Ÿ’ป

Milan Bouchet-Valat

๐Ÿ“–

Rafael Caixeta

๐Ÿ’ป

Sam

๐Ÿš‡

Nitish Gadangi

๐Ÿ“– ๐Ÿš‡

About

An extensible framework for high-performance geostatistics in Julia

https://juliaearth.github.io/GeoStats.jl/stable

License:MIT License


Languages

Language:TeX 76.7%Language:Julia 16.9%Language:Makefile 6.4%