Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for geographical coordinates #113

Merged
merged 44 commits into from
Jan 13, 2021
Merged
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
01819b5
Variogram: add support for geographical variogram estimation
MuellerSeb Nov 24, 2020
a216787
Tools: add converter from spatial 3D pos to latlon and vice versa; ad…
MuellerSeb Nov 24, 2020
a817006
Init: add EARTH_RADIUS; fix minor sphinx bug
MuellerSeb Nov 24, 2020
1d0c107
Krige: minor bugfix for internal drift
MuellerSeb Nov 24, 2020
da7e772
CovModel: add latlon argument and adopt internal handling; add plot_dim
MuellerSeb Nov 24, 2020
a1170a2
CovModel.fit: allow geographical estimated variograms for fitting
MuellerSeb Nov 24, 2020
7b4359d
CovModel.plot: add ploting routines for yadrenko methods
MuellerSeb Nov 24, 2020
2a3d14f
Field: correct dimension handling for latlon fields
MuellerSeb Nov 24, 2020
da72313
Field.plot: add plotting routines for latlon fields
MuellerSeb Nov 24, 2020
b043140
Examples: add geo coordinates tutorial
MuellerSeb Nov 24, 2020
a6dd3d3
Examples: minor fixes
MuellerSeb Nov 24, 2020
074f222
Doc: add new examples to doc
MuellerSeb Nov 24, 2020
5779bbd
Examples: remove cartopy plot (not working with RTD)
MuellerSeb Nov 25, 2020
17cfc46
Docs: move cartopy plot to README; update pyvista plot; add new tutor…
MuellerSeb Nov 25, 2020
bf2efc3
Docs: minor changes for latlon
MuellerSeb Nov 25, 2020
5cdc80e
Docs: workaround for sphinx-gallery bug with html only directive
MuellerSeb Nov 25, 2020
e0143ea
Variogram: 'h' as flag for haversine
MuellerSeb Nov 25, 2020
4fcc0c8
CovModel: rename 'plot_dim' to 'field_dim'
MuellerSeb Nov 25, 2020
f82b5cb
CovModel.fit_variogram: use rescale factor as default init guess for …
MuellerSeb Nov 27, 2020
7ac7262
Krige: use correct dimension for drifts and cond_pos values when deal…
MuellerSeb Nov 27, 2020
5e23872
Examples: add kriging with lat-lon example with DWD data
MuellerSeb Nov 27, 2020
1360053
Merge branch 'develop' of github.com:GeoStat-Framework/GSTools into l…
MuellerSeb Dec 3, 2020
0f9e42c
Merge branch 'develop' of github.com:GeoStat-Framework/GSTools into l…
MuellerSeb Dec 17, 2020
537b96f
Field: use field_dim for mesh output options
MuellerSeb Dec 17, 2020
b933762
Merge branch 'develop' of github.com:GeoStat-Framework/GSTools into l…
MuellerSeb Jan 6, 2021
f1b36c7
Generator: mc sampling now around inverse of 'rescaled' length
MuellerSeb Jan 11, 2021
303c761
SRF: conditioning with latlon needs field_dim
MuellerSeb Jan 11, 2021
42d7a33
Examples: apply black
MuellerSeb Jan 11, 2021
54d48f5
Example: polish latlon examples
MuellerSeb Jan 11, 2021
c30532b
Tests: SRF + PyVista dim fix
MuellerSeb Jan 11, 2021
1746873
CovModel: skip coverage for repr
MuellerSeb Jan 11, 2021
3930aa4
Tests: add tests for latlon
MuellerSeb Jan 11, 2021
120756d
Tests: fix reference values for modes, when sampled with mc and new r…
MuellerSeb Jan 11, 2021
943894c
Variogram: fix typo in err-msg
MuellerSeb Jan 11, 2021
e5af2bb
Tests: more latlon tests including Error testing
MuellerSeb Jan 11, 2021
f6f9140
Tests: latlon test restructuring
MuellerSeb Jan 11, 2021
1640988
Tests: latlon: minor fix
MuellerSeb Jan 11, 2021
185c395
Fix some typos in examples and docstrings
LSchueler Jan 12, 2021
ce0cd03
Merge branch 'develop' of github.com:GeoStat-Framework/GSTools into l…
MuellerSeb Jan 12, 2021
fb44373
Merge branch 'latlon_support' of github.com:GeoStat-Framework/GSTools…
MuellerSeb Jan 12, 2021
f67aaae
Examples: latlon - cleaner formatting
MuellerSeb Jan 12, 2021
7175585
Examples: latlon - use function instead of lambda definition
MuellerSeb Jan 12, 2021
7a7bfea
CovModel: reference latlon in yadrenko routines
MuellerSeb Jan 12, 2021
606c4ff
Tests: remove test commments
MuellerSeb Jan 12, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Init: add EARTH_RADIUS; fix minor sphinx bug
MuellerSeb committed Nov 24, 2020
commit a8170064a8418166abfacbb90a3aa0e39e294669
16 changes: 12 additions & 4 deletions gstools/__init__.py
Original file line number Diff line number Diff line change
@@ -38,7 +38,7 @@
^^^^^^^^^^^^^^^^^^^^^
Class to construct user defined covariance models
.. currentmodule:: gstools.covmodel.base
.. currentmodule:: gstools.covmodel
.. autosummary::
CovModel
@@ -49,8 +49,6 @@
Standard Covariance Models
~~~~~~~~~~~~~~~~~~~~~~~~~~
.. currentmodule:: gstools.covmodel.models
.. autosummary::
Gaussian
Exponential
@@ -67,7 +65,6 @@
Truncated Power Law Covariance Models
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. currentmodule:: gstools.covmodel.tpl_models
.. autosummary::
TPLGaussian
TPLExponential
@@ -103,12 +100,22 @@
.. autosummary::
vario_estimate
vario_estimate_axis
Misc
====
.. currentmodule:: gstools.tools
.. autosummary::
EARTH_RADIUS
"""
# Hooray!
from gstools import field, variogram, random, covmodel, tools, krige, transform
from gstools.field import SRF
from gstools.tools import (
rotated_main_axes,
EARTH_RADIUS,
vtk_export,
vtk_export_structured,
vtk_export_unstructured,
@@ -179,6 +186,7 @@
__all__ += [
"SRF",
"rotated_main_axes",
"EARTH_RADIUS",
"vtk_export",
"vtk_export_structured",
"vtk_export_unstructured",