from
pyinterpolate.kriging.utils.errors import singular_matrix_error
# Pyinterpolate
from pyinterpolate.kriging.utils.point_kriging_solve import ( get_predictions ,
-
solve_weights )
+
solve_weights ,
+
__experimental_solve_weights_lsa_only )
from pyinterpolate.transform.statistical import sem_to_cov
from pyinterpolate.semivariogram.theoretical.theoretical import TheoreticalVariogram
@@ -828,6 +829,239 @@
Source code for pyinterpolate.kriging.point.ordinary return [ zhat , sigma , unknown_location [ 0 ], unknown_location [ 1 ]]
except np . linalg . LinAlgError as _ :
singular_matrix_error ()
+
+
+def experimental_ordinary_kriging_lsa (
+ theoretical_model : TheoreticalVariogram ,
+ unknown_locations : Union [
+ np . ndarray , Point , List , Tuple , GeoSeries , GeometryArray , ArrayLike ],
+ known_locations : ArrayLike = None ,
+ known_values : ArrayLike = None ,
+ known_geometries : ArrayLike = None ,
+ neighbors_range = None ,
+ no_neighbors = 4 ,
+ max_tick = 5. ,
+ use_all_neighbors_in_range = False ,
+ progress_bar : bool = True
+) -> np . ndarray :
+ """
+ Function predicts value at unknown location using Least Squares
+ Approximation.
+
+ Parameters
+ ----------
+ theoretical_model : TheoreticalVariogram
+ Fitted theoretical variogram model.
+
+ unknown_locations : Union[ArrayLike, Point]
+ Points where you want to estimate value ``(x, y) <-> (lon, lat)``.
+
+ known_locations : numpy array
+ Known locations: ``[x, y, value]``.
+
+ known_values : ArrayLike, optional
+ Observation in the i-th geometry (from ``known_geometries``). Optional
+ parameter, if not given then ``known_locations`` must be provided.
+
+ known_geometries : ArrayLike, optional
+ Array or similar structure with geometries. It must have the same
+ length as ``known_values``. Optional parameter, if not given then
+ ``known_locations`` must be provided. Point type geometry.
+
+ neighbors_range : float, default=None
+ The maximum distance where we search for neighbors. If ``None`` is
+ given then the range is selected from the Theoretical
+ Model's ``rang`` attribute.
+
+ no_neighbors : int, default = 4
+ The number of **n-closest neighbors** used for interpolation.
+
+ max_tick : float, default=5.
+ If searching for neighbors in a specific direction how big should be
+ a tolerance for increasing the search angle (how many degrees more).
+
+ use_all_neighbors_in_range : bool, default = False
+ ``True``: if the real number of neighbors within
+ the ``neighbors_range`` is greater than the ``number_of_neighbors``
+ then take all of them anyway.
+
+ progress_bar : bool, default=True
+ Show a progress bar during the interpolation process.
+
+ Returns
+ -------
+ : numpy array
+ ``[predicted value, variance error, longitude (x), latitude (y)]``
+
+ Raises
+ ------
+ RunetimeError
+ Singular Matrix in the Kriging system.
+
+ Examples
+ --------
+ >>> import geopandas as gpd
+ >>> import numpy as np
+ >>> import pandas as pd
+ >>>
+ >>> from pyinterpolate import (build_experimental_variogram,
+ ... build_theoretical_variogram, ordinary_kriging)
+ >>>
+ >>> dem = gpd.read_file('dem.gpkg')
+ >>> unknown_locations = gpd.read_file('unknown_locations.gpkg')
+ >>> step_size = 500
+ >>> max_range = 10000
+ >>> exp_variogram = build_experimental_variogram(
+ ... values=dem['dem'],
+ ... geometries=dem['geometry'],
+ ... step_size=step_size,
+ ... max_range=max_range
+ ... )
+ >>> theo_variogram = build_theoretical_variogram(exp_variogram)
+ >>> interp = ordinary_kriging(
+ ... theoretical_model=theo_variogram,
+ ... unknown_locations=unknown_locations['geometry'],
+ ... known_values=dem['dem'],
+ ... known_geometries=dem['geometry']
+ ... )
+ >>> print(interp[0])
+ [7.91222896e+01 9.72740449e+01 2.38012302e+05 5.51466805e+05]
+ """
+ # Check if known locations are in the right format
+ if not isinstance ( known_locations , VariogramPoints ):
+ known_locations = VariogramPoints ( points = known_locations ,
+ geometries = known_geometries ,
+ values = known_values )
+ known_locations = known_locations . points
+
+ unknown_locations = InterpolationPoints ( unknown_locations ) . points
+
+ interpolated_results = []
+
+ _disable_progress_bar = not progress_bar
+
+ for upoints in tqdm ( unknown_locations , disable = _disable_progress_bar ):
+ res = __experimental_ok_calc_lsa (
+ theoretical_model = theoretical_model ,
+ known_locations = known_locations ,
+ unknown_location = upoints ,
+ neighbors_range = neighbors_range ,
+ no_neighbors = no_neighbors ,
+ max_tick = max_tick ,
+ use_all_neighbors_in_range = use_all_neighbors_in_range
+ )
+
+ interpolated_results . append (
+ res
+ )
+
+ return np . array ( interpolated_results )
+
+
+def __experimental_ok_calc_lsa (
+ theoretical_model : TheoreticalVariogram ,
+ unknown_location : ArrayLike ,
+ known_locations : ArrayLike = None ,
+ known_values : ArrayLike = None ,
+ known_geometries : ArrayLike = None ,
+ neighbors_range = None ,
+ no_neighbors = 4 ,
+ max_tick = 5. ,
+ use_all_neighbors_in_range = False
+):
+ """
+ Function predicts value at unknown location with Ordinary Kriging
+ technique.
+
+ Parameters
+ ----------
+ theoretical_model : TheoreticalVariogram
+ Fitted theoretical variogram model.
+
+ unknown_location : Union[ArrayLike, Point]
+ Points where you want to estimate value ``(x, y) <-> (lon, lat)``.
+
+ known_locations : numpy array
+ Known locations: ``[x, y, value]``.
+
+ known_values : ArrayLike, optional
+ Observation in the i-th geometry (from ``known_geometries``). Optional
+ parameter, if not given then ``known_locations`` must be provided.
+
+ known_geometries : ArrayLike, optional
+ Array or similar structure with geometries. It must have the same
+ length as ``known_values``. Optional parameter, if not given then
+ ``known_locations`` must be provided. Point type geometry.
+
+ neighbors_range : float, default=None
+ The maximum distance where we search for neighbors. If ``None`` is
+ given then the range is selected from the Theoretical
+ Model's ``rang`` attribute.
+
+ no_neighbors : int, default = 4
+ The number of **n-closest neighbors** used for interpolation.
+
+ max_tick : float, default=5.
+ If searching for neighbors in a specific direction how big should be
+ a tolerance for increasing the search angle (how many degrees more).
+
+ use_all_neighbors_in_range : bool, default = False
+ ``True``: if the real number of neighbors within
+ the ``neighbors_range`` is greater than the ``number_of_neighbors``
+ then take all of them anyway.
+
+ Returns
+ -------
+ : numpy array
+ ``[predicted value, variance error, longitude (x), latitude (y)]``
+
+ Raises
+ ------
+ RunetimeError
+ Singular Matrix in the Kriging system.
+ """
+ # Check if known locations are in the right format
+ # Validate points
+ if not isinstance ( known_locations , VariogramPoints ):
+ known_locations = VariogramPoints ( points = known_locations ,
+ geometries = known_geometries ,
+ values = known_values )
+ known_locations = known_locations . points
+
+ # Check if unknown location is Point
+ if isinstance ( unknown_location , Point ):
+ unknown_location = (
+ unknown_location . x ,
+ unknown_location . y
+ )
+ unknown_location = np . array ( unknown_location )
+
+ k , predicted , dataset = get_predictions ( theoretical_model ,
+ known_locations ,
+ unknown_location ,
+ neighbors_range ,
+ no_neighbors ,
+ use_all_neighbors_in_range ,
+ max_tick )
+
+ k_ones = np . ones ( 1 )[ 0 ]
+ k = np . r_ [ k , k_ones ]
+
+ p_ones = np . ones (( predicted . shape [ 0 ], 1 ))
+ predicted_with_ones_col = np . c_ [ predicted , p_ones ]
+ p_ones_row = np . ones (( 1 , predicted_with_ones_col . shape [ 1 ]))
+ p_ones_row [ 0 ][ - 1 ] = 0.
+ weights = np . r_ [ predicted_with_ones_col , p_ones_row ]
+
+ output_weights = __experimental_solve_weights_lsa_only ( weights , k )
+ zhat = dataset [:, - 2 ] . dot ( output_weights [: - 1 ])
+
+ sigma = np . matmul ( output_weights . T , k )
+
+ if sigma < 0 :
+ return [ zhat , np . nan , unknown_location [ 0 ], unknown_location [ 1 ]]
+
+ return [ zhat , sigma , unknown_location [ 0 ], unknown_location [ 1 ]]
diff --git a/docs/build/html/_modules/pyinterpolate/semivariogram/experimental/experimental_semivariogram.html b/docs/build/html/_modules/pyinterpolate/semivariogram/experimental/experimental_semivariogram.html
index c3435445..c9112828 100644
--- a/docs/build/html/_modules/pyinterpolate/semivariogram/experimental/experimental_semivariogram.html
+++ b/docs/build/html/_modules/pyinterpolate/semivariogram/experimental/experimental_semivariogram.html
@@ -7,7 +7,7 @@
-
pyinterpolate.semivariogram.experimental.experimental_semivariogram — pyinterpolate 1.1.0 documentation
+
pyinterpolate.semivariogram.experimental.experimental_semivariogram — pyinterpolate 1.2.0 documentation
@@ -38,7 +38,7 @@
-
+
@@ -111,7 +111,7 @@
-
pyinterpolate 1.1.0 documentation
+
pyinterpolate 1.2.0 documentation
The weighted distance between blocks is derived from the equation 3 given
+in publication [1] from References.
+\[d(v_{a}, v_{b})=\frac{1}{\sum_{s=1}^{P_{a}} \sum_{s'=1}^{P_{b}} n(u_{s}) n(u_{s'})} * \sum_{s=1}^{P_{a}} \sum_{s'=1}^{P_{b}} n(u_{s})n(u_{s'})||u_{s}-u_{s'}||\]
>>> import os
>>> import geopandas as gpd
diff --git a/docs/build/html/api/kriging/block_kriging.html b/docs/build/html/api/kriging/block_kriging.html
index 58d64fb2..d2aeed52 100644
--- a/docs/build/html/api/kriging/block_kriging.html
+++ b/docs/build/html/api/kriging/block_kriging.html
@@ -455,7 +455,7 @@ Block and Poisson Kriging
-pyinterpolate. centroid_poisson_kriging ( semivariogram_model : TheoreticalVariogram , point_support : PointSupport , unknown_block_index : str | Hashable , number_of_neighbors : int , neighbors_range : float = None , is_weighted_by_point_support = True , raise_when_negative_prediction = True , raise_when_negative_error = True , allow_lsa = False ) → Dict [source]
+pyinterpolate. centroid_poisson_kriging ( semivariogram_model : TheoreticalVariogram , point_support : PointSupport , unknown_block_index : str | Hashable , number_of_neighbors : int , neighbors_range : float = None , is_weighted_by_point_support = True , raise_when_negative_prediction = True , raise_when_negative_error = True , allow_lsa = False , negative_prediction_to_zero = False ) → Dict [source]
Function performs centroid-based Poisson Kriging of blocks (areal) data.
Parameters:
@@ -484,6 +484,8 @@ Centroid-based Poisson Kriging
Returns:
@@ -571,7 +573,7 @@ Centroid-based Poisson Kriging
-pyinterpolate. area_to_area_pk ( semivariogram_model : TheoreticalVariogram , point_support : PointSupport , unknown_block_index : str | Hashable , number_of_neighbors : int , neighbors_range : float = None , raise_when_negative_prediction = True , raise_when_negative_error = True ) → dict [source]
+pyinterpolate. area_to_area_pk ( semivariogram_model : TheoreticalVariogram , point_support : PointSupport , unknown_block_index : str | Hashable , number_of_neighbors : int , neighbors_range : float = None , raise_when_negative_prediction = True , raise_when_negative_error = True , negative_prediction_to_zero = False ) → dict [source]
Function predicts areal value in an unknown location based on
the area-to-area Poisson Kriging
@@ -593,6 +595,8 @@ Area-to-area Poisson Kriging
Returns:
@@ -680,7 +684,7 @@ Area-to-area Poisson Kriging
-pyinterpolate. area_to_point_pk ( semivariogram_model : TheoreticalVariogram , point_support : PointSupport , unknown_block_index : str | Hashable , number_of_neighbors : int , neighbors_range : float = None , raise_when_negative_prediction = True , raise_when_negative_error = True , err_to_nan = True ) [source]
+pyinterpolate. area_to_point_pk ( semivariogram_model : TheoreticalVariogram , point_support : PointSupport , unknown_block_index : str | Hashable , number_of_neighbors : int , neighbors_range : float = None , raise_when_negative_prediction = True , raise_when_negative_error = True , err_to_nan = True , negative_prediction_to_zero = False ) [source]
Function predicts point-support value in the unknown location based on
the area-to-point Poisson Kriging
@@ -705,6 +709,8 @@ Area-to-point Poisson Kriging
Returns:
diff --git a/docs/build/html/api/semivariogram/experimental.html b/docs/build/html/api/semivariogram/experimental.html
index 363c8383..a145d88d 100644
--- a/docs/build/html/api/semivariogram/experimental.html
+++ b/docs/build/html/api/semivariogram/experimental.html
@@ -775,10 +775,11 @@ Experimental Variogram
where:
\(h\) : lag,
+\(n(h)\) : number of point pairs within the lag \(h\) ,
\(g(h)\) : empirical semivariance for lag \(h\) ,
\(n(h)\) : number of point pairs within a specific lag,
\(z(x_i)\) : point a (value of observation at point a),
diff --git a/docs/build/html/objects.inv b/docs/build/html/objects.inv
index 03cba1d3..81f4cfce 100644
Binary files a/docs/build/html/objects.inv and b/docs/build/html/objects.inv differ
diff --git a/docs/build/html/searchindex.js b/docs/build/html/searchindex.js
index 47c67f76..1d415e5e 100644
--- a/docs/build/html/searchindex.js
+++ b/docs/build/html/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles": {"1. Create Variogram Point Cloud": [[35, "1.-Create-Variogram-Point-Cloud"]], "1. Directional process": [[34, "1.-Directional-process"]], "1. Introduction - IDW as bechmarking tool": [[37, "1.-Introduction---IDW-as-bechmarking-tool"]], "1. Prepare data": [[38, "1.-Prepare-data"], [40, "1.-Prepare-data"], [41, "1.-Prepare-data"], [42, "1.-Prepare-data"], [43, "1.-Prepare-data"], [44, "1.-Prepare-data"]], "1. Set semivariogram model (fit)": [[36, "1.-Set-semivariogram-model-(fit)"]], "2. Analyze Variogram Point Cloud": [[35, "2.-Analyze-Variogram-Point-Cloud"]], "2. Analyze data distribution and remove potential outliers": [[38, "2.-Analyze-data-distribution-and-remove-potential-outliers"]], "2. Create Ordinary and Simple Kriging models": [[36, "2.-Create-Ordinary-and-Simple-Kriging-models"]], "2. Create directional and isotropic semivariograms": [[34, "2.-Create-directional-and-isotropic-semivariograms"]], "2. Create directional semivariograms": [[39, "2.-Create-directional-semivariograms"]], "2. Detect and remove outliers": [[40, "2.-Detect-and-remove-outliers"]], "2. Load regularized semivariogram model": [[42, "2.-Load-regularized-semivariogram-model"], [43, "2.-Load-regularized-semivariogram-model"], [44, "2.-Load-regularized-semivariogram-model"]], "2. Perform IDW and validate outputs": [[37, "2.-Perform-IDW-and-validate-outputs"]], "2. Set semivariogram parameters": [[41, "2.-Set-semivariogram-parameters"]], "2. Why do we use Spatial Dependency Index?": [[33, "2.-Why-do-we-use-Spatial-Dependency-Index?"]], "3. Compare semivariograms": [[34, "3.-Compare-semivariograms"]], "3. Create Variogram Clouds": [[38, "3.-Create-Variogram-Clouds"]], "3. Detect and remove outliers": [[35, "3.-Detect-and-remove-outliers"]], "3. Example: Spatial Dependence over the same study extent but for different elements": [[33, "3.-Example:-Spatial-Dependence-over-the-same-study-extent-but-for-different-elements"]], "3. Fit semivariogram model": [[40, "3.-Fit-semivariogram-model"]], "3. Interpolate with directional Kriging": [[39, "3.-Interpolate-with-directional-Kriging"]], "3. Perform Kriging and validate outputs": [[37, "3.-Perform-Kriging-and-validate-outputs"]], "3. Predict values at unknown locations and evaluate output": [[36, "3.-Predict-values-at-unknown-locations-and-evaluate-output"]], "3. Prepare data for Poisson Kriging": [[42, "3.-Prepare-data-for-Poisson-Kriging"], [43, "3.-Prepare-data-for-Poisson-Kriging"]], "3. Regularize semivariogram": [[41, "3.-Regularize-semivariogram"]], "3. Smooth blocks": [[44, "3.-Smooth-blocks"]], "4. API": [[33, "4.-API"]], "4. Compare models": [[39, "4.-Compare-models"]], "4. Experimental variogram from the point cloud": [[35, "4.-Experimental-variogram-from-the-point-cloud"]], "4. Export results": [[44, "4.-Export-results"]], "4. Filtering areas": [[42, "4.-Filtering-areas"], [43, "4.-Filtering-areas"]], "4. Prepare canvas": [[40, "4.-Prepare-canvas"]], "4. Remove outliers from the point cloud": [[38, "4.-Remove-outliers-from-the-point-cloud"]], "4. Visualize process": [[41, "4.-Visualize-process"]], "5. Evaluate": [[42, "5.-Evaluate"], [43, "5.-Evaluate"]], "5. Export semivariogram": [[41, "5.-Export-semivariogram"]], "5. Interpolate": [[40, "5.-Interpolate"]], "5. Is variogram point cloud a scatter plot?": [[35, "5.-Is-variogram-point-cloud-a-scatter-plot?"]], "5. Kriging Models based on different variograms": [[38, "5.-Kriging-Models-based-on-different-variograms"]], "API": [[0, null]], "Advanced": [[30, "advanced"]], "Aggregated Variogram": [[9, "aggregated-variogram"]], "Area-to-Point Poisson Kriging": [[44, null]], "Area-to-area Poisson Kriging": [[7, "area-to-area-poisson-kriging"], [43, null]], "Area-to-point Poisson Kriging": [[7, "area-to-point-poisson-kriging"]], "Author(s)": [[15, "author-s"]], "Beginner": [[30, "beginner"]], "Benchmarking Kriging": [[37, null]], "Bibliography": [[25, null]], "Block": [[4, "block"]], "Block and Poisson Kriging": [[7, null]], "Blocks": [[2, "blocks"]], "Blocks to points with Ordinary Kriging": [[40, null]], "Blog posts": [[28, "blog-posts"]], "Box plot": [[35, "Box-plot"]], "Case 1: West-East direction": [[34, "Case-1:-West-East-direction"]], "Case 2: North-South direction": [[34, "Case-2:-North-South-direction"]], "Case 3: Northwest-Southeast direction": [[34, "Case-3:-Northwest-Southeast-direction"]], "Case 4: Northeast-Southwest direction": [[34, "Case-4:-Northeast-Southwest-direction"]], "Case 5: Isotropic variogram - no leading direction": [[34, "Case-5:-Isotropic-variogram---no-leading-direction"]], "Centroid-based Poisson Kriging": [[7, "centroid-based-poisson-kriging"]], "Changelog": [[31, "Changelog"], [32, "Changelog"], [33, "Changelog"], [34, "Changelog"], [35, "Changelog"], [36, "Changelog"], [37, "Changelog"], [38, "Changelog"], [39, "Changelog"], [40, "Changelog"], [41, "Changelog"], [42, "Changelog"], [43, "Changelog"], [44, "Changelog"]], "Changes between version 0.x and 1.x": [[1, null]], "Chapter 1: Create random surface": [[32, "Chapter-1:-Create-random-surface"]], "Chapter 1: data preparation": [[31, "Chapter-1:-data-preparation"]], "Chapter 2: Calculate the experimental semivariogram": [[32, "Chapter-2:-Calculate-the-experimental-semivariogram"]], "Chapter 2: Experimental Variogram": [[31, "Chapter-2:-Experimental-Variogram"]], "Chapter 3: Fit variogram models": [[32, "Chapter-3:-Fit-variogram-models"]], "Chapter 3: Theoretical Variogram": [[31, "Chapter-3:-Theoretical-Variogram"]], "Chapter 4: Compare variogram models": [[32, "Chapter-4:-Compare-variogram-models"]], "Chapter 4: Fit semivariogram model automatically": [[31, "Chapter-4:-Fit-semivariogram-model-automatically"]], "Chapter 5: Exporting model": [[31, "Chapter-5:-Exporting-model"]], "Chapter 6: Importing fitted model": [[31, "Chapter-6:-Importing-fitted-model"]], "Check points statistics for each lag": [[35, "Check-points-statistics-for-each-lag"]], "Citation": [[24, "citation"], [26, null]], "Classes": [[1, "classes"], [1, "id2"]], "Community": [[14, null]], "Conda": [[27, "conda"]], "Contents": [[24, "contents"]], "Contributors": [[15, null], [15, "id1"]], "Core data structures": [[2, null]], "Cross-validation": [[5, "cross-validation"]], "Dataset": [[31, "Dataset"]], "Deconvolution": [[9, "deconvolution"]], "Development": [[18, null], [20, null]], "Deviation": [[9, "deviation"]], "Directional Ordinary Kriging": [[39, null]], "Directional Semivariogram": [[34, null]], "Directional Variogram": [[10, "directional-variogram"]], "Distance": [[4, null]], "Examples": [[8, "examples"]], "Experimental Semivariance and Covariance": [[10, null]], "Experimental Variogram": [[10, "experimental-variogram"]], "Failing pylibtiff build - Linux": [[27, "failing-pylibtiff-build-linux"]], "Functions": [[1, "functions"], [1, "id1"]], "Functions and classes that are no longer supported": [[1, "functions-and-classes-that-are-no-longer-supported"]], "Important notice": [[24, "important-notice"]], "Including direction in experimental variogram": [[34, "Including-direction-in-experimental-variogram"]], "Indicator Kriging": [[8, "indicator-kriging"]], "Indicator Semivariogram": [[11, null]], "Installation": [[29, "installation"]], "Installation - additional topics": [[27, "installation-additional-topics"]], "Installation guidelines": [[27, "installation-guidelines"]], "Intermediate": [[30, "intermediate"]], "Introduction": [[24, "introduction"]], "Inverse Distance Weighting (IDW)": [[6, null]], "Known Bugs": [[19, null]], "Learning Materials": [[28, null]], "Maintainer(s)": [[15, "maintainer-s"]], "Manual setting": [[31, "Manual-setting"]], "Metrics": [[5, "metrics"]], "Models": [[31, "Models"]], "Models evaluation": [[5, null]], "More resources": [[35, "More-resources"]], "Network": [[16, null]], "New functions and classes": [[1, "new-functions-and-classes"]], "Ordinary Kriging": [[8, "ordinary-kriging"], [29, "ordinary-kriging"]], "Ordinary Kriging pipelines": [[3, "ordinary-kriging-pipelines"]], "Ordinary and Simple Kriging": [[36, null]], "Outliers and Kriging": [[38, null]], "Package structure": [[21, null]], "Pipelines": [[3, null]], "Point": [[4, "point"]], "Point Kriging": [[8, null]], "Point Support": [[2, "point-support"]], "Poisson Kriging Centroid-based approach": [[42, null]], "Poisson Kriging pipelines": [[3, "poisson-kriging-pipelines"]], "Prepare data": [[39, "Prepare-data"]], "Prerequisites": [[31, "Prerequisites"], [32, "Prerequisites"], [33, "Prerequisites"], [34, "Prerequisites"], [35, "Prerequisites"], [36, "Prerequisites"], [37, "Prerequisites"], [38, "Prerequisites"], [39, "Prerequisites"], [40, "Prerequisites"], [41, "Prerequisites"], [42, "Prerequisites"], [43, "Prerequisites"], [44, "Prerequisites"]], "Presentations & Workshops": [[28, "presentations-workshops"]], "Publications": [[28, "publications"]], "Pyinterpolate": [[24, null]], "Quickstart": [[29, null]], "Raster": [[13, "raster"]], "Requirements and dependencies (version >= 1)": [[22, null]], "Reviewers (JOSS)": [[15, "reviewers-joss"]], "Scatter plot": [[35, "Scatter-plot"]], "Semivariogram Deconvolution": [[9, null]], "Semivariogram Regularization": [[41, null]], "Semivariogram exploration": [[31, null]], "Semivariogram models": [[32, null]], "Setup": [[27, null]], "Simple Kriging": [[8, "simple-kriging"]], "Spatial Dependency Index": [[33, null]], "Table of contents": [[31, "Table-of-contents"], [32, "Table-of-contents"], [33, "Table-of-contents"], [34, "Table-of-contents"], [35, "Table-of-contents"], [36, "Table-of-contents"], [37, "Table-of-contents"], [38, "Table-of-contents"], [39, "Table-of-contents"], [40, "Table-of-contents"], [41, "Table-of-contents"], [42, "Table-of-contents"], [43, "Table-of-contents"], [44, "Table-of-contents"]], "Temporarily not available functions and classes": [[1, "temporarily-not-available-functions-and-classes"]], "Tests and contribution": [[23, null]], "The libspatialindex_c.so dependency error": [[27, "the-libspatialindex-c-so-dependency-error"]], "Theoretical Semivariogram": [[12, null]], "Tutorials": [[30, null]], "Universal Kriging": [[8, "universal-kriging"]], "Use Cases": [[17, null]], "Variogram Cloud": [[10, "variogram-cloud"]], "Variogram Points Cloud": [[35, null]], "Violin plot": [[35, "Violin-plot"]], "Visualization": [[13, null]], "What is the spatial dependency index?": [[33, "What-is-the-spatial-dependency-index?"]], "Working with Notebooks": [[27, "working-with-notebooks"]], "pip": [[27, "pip"]], "version 1.2.1": [[24, "version-1-2-1"]]}, "docnames": ["api/api", "api/changes", "api/core/core", "api/core/pipelines", "api/distance/distance", "api/evaluate/evaluate", "api/idw/idw", "api/kriging/block_kriging", "api/kriging/point_kriging", "api/semivariogram/deconvolution", "api/semivariogram/experimental", "api/semivariogram/indicator", "api/semivariogram/theoretical", "api/viz/raster", "community/community", "community/community/contributors", "community/community/forum", "community/community/use_cases", "contributor/development", "contributor/development/bugs", "contributor/development/development", "contributor/development/package", "contributor/development/requirements", "contributor/development/tests_and_contribution", "index", "science/bibliography", "science/citation", "setup/setup", "usage/learning_materials", "usage/quickstart", "usage/tutorials", "usage/tutorials/functional/1-1-semivariogram-exploration", "usage/tutorials/functional/1-2-semivariogram-models", "usage/tutorials/functional/1-3-spatial-dependency-index", "usage/tutorials/functional/2-1-directional-semivariogram", "usage/tutorials/functional/2-2-variogram-points-cloud", "usage/tutorials/functional/3-1-ordinary-and-simple-kriging", "usage/tutorials/functional/3-2-benchmark-kriging", "usage/tutorials/functional/3-3-outliers-and-kriging", "usage/tutorials/functional/3-4-directional-ordinary-kriging", "usage/tutorials/functional/3-5-blocks-to-points-ordinary-kriging", "usage/tutorials/functional/4-1-semivariogram-regularization", "usage/tutorials/functional/4-2-poisson-kriging-centroid-based", "usage/tutorials/functional/4-3-poisson-kriging-area-to-area", "usage/tutorials/functional/4-4-poisson-kriging-area-to-point-smoothing"], "envversion": {"nbsphinx": 4, "sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1}, "filenames": ["api/api.rst", "api/changes.rst", "api/core/core.rst", "api/core/pipelines.rst", "api/distance/distance.rst", "api/evaluate/evaluate.rst", "api/idw/idw.rst", "api/kriging/block_kriging.rst", "api/kriging/point_kriging.rst", "api/semivariogram/deconvolution.rst", "api/semivariogram/experimental.rst", "api/semivariogram/indicator.rst", "api/semivariogram/theoretical.rst", "api/viz/raster.rst", "community/community.rst", "community/community/contributors.rst", "community/community/forum.rst", "community/community/use_cases.rst", "contributor/development.rst", "contributor/development/bugs.rst", "contributor/development/development.rst", "contributor/development/package.rst", "contributor/development/requirements.rst", "contributor/development/tests_and_contribution.rst", "index.rst", "science/bibliography.rst", "science/citation.rst", "setup/setup.rst", "usage/learning_materials.rst", "usage/quickstart.rst", "usage/tutorials.rst", "usage/tutorials/functional/1-1-semivariogram-exploration.ipynb", "usage/tutorials/functional/1-2-semivariogram-models.ipynb", "usage/tutorials/functional/1-3-spatial-dependency-index.ipynb", "usage/tutorials/functional/2-1-directional-semivariogram.ipynb", "usage/tutorials/functional/2-2-variogram-points-cloud.ipynb", "usage/tutorials/functional/3-1-ordinary-and-simple-kriging.ipynb", "usage/tutorials/functional/3-2-benchmark-kriging.ipynb", "usage/tutorials/functional/3-3-outliers-and-kriging.ipynb", "usage/tutorials/functional/3-4-directional-ordinary-kriging.ipynb", "usage/tutorials/functional/3-5-blocks-to-points-ordinary-kriging.ipynb", "usage/tutorials/functional/4-1-semivariogram-regularization.ipynb", "usage/tutorials/functional/4-2-poisson-kriging-centroid-based.ipynb", "usage/tutorials/functional/4-3-poisson-kriging-area-to-area.ipynb", "usage/tutorials/functional/4-4-poisson-kriging-area-to-point-smoothing.ipynb"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [2, 3, 5, 8, 9, 10, 11, 12, 13, 24, 26, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43], "0": [2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 24, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "00": [7, 35, 36, 37, 38, 39, 40, 41, 42, 43], "000": 40, "00000": 34, "000000": [4, 35, 36, 38, 42, 43], "000000000": 40, "000000e": 35, "001": 9, "001038e": 35, "001294": 31, "001901e": 35, "002": 34, "00310437379738": 31, "00372185725449": 9, "005513468013467637": 12, "00688727050691": 31, "00739": 34, "008423e": 38, "009": 42, "01": [3, 8, 9, 31, 35, 36, 37, 38, 39, 40, 44], "011": 42, "011482": 42, "012348e": 35, "013474": 40, "013657676895086": 40, "014": 11, "01613441673494531": 5, "016819758037855": 31, "018141e": 35, "018571": 38, "01it": 43, "02": [7, 31, 32, 35, 36, 37, 38, 40], "020515483": 40, "022283e": 35, "023352887160456": 36, "024150": 35, "024262": 35, "025285": 36, "02730202869643": 31, "027444e": 35, "02869": [24, 26], "029843": 36, "03": [35, 43], "030020e": 35, "030242": 36, "030860e": 4, "031347": 44, "032104e": 35, "0330029215756": 36, "03478367192644": 36, "03634215647224": 31, "037233": 40, "039635": 38, "039772": 43, "04": [33, 34, 35, 36, 40, 41], "040404040404042": 5, "041308": 36, "042438e": 4, "04398849607182864": 12, "044693": 44, "0449992036047": 36, "0456278763971074": 12, "046338306662676": 9, "0464888109063": 31, "05": [3, 4, 7, 8, 36, 37, 38, 39, 40, 41, 42, 43, 44], "050238": 42, "052390": 38, "052488": 40, "05358169887316": 31, "055898e": 4, "05754045538774986": 9, "0590850900293": 31, "06": [4, 7, 35, 40, 41, 42, 43], "06124500e": 7, "061496e": 4, "06314473570893": 31, "064": 36, "064231": 43, "06598449336948": 31, "067039": 43, "0693411301627": 31, "0698021842668": 31, "06it": 36, "07": [31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41], "071552e": 35, "073569e": 35, "0743960945353024": 36, "075098": 36, "07557590496178": 31, "079528e": 4, "079724": 43, "08": [11, 33, 38], "082370584077893": 36, "08276467339607": 31, "084188e": [40, 41], "084231": 35, "0849458981859": 31, "08611248": 13, "087": 34, "089071e": 35, "089097": 43, "09": [31, 34, 39], "09018109002636": 31, "0918519512143": 31, "093224": 38, "0967336466922": 31, "09721140081541": 31, "097542e": 35, "09it": 42, "1": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 18, 25, 27, 29, 33, 39], "10": [6, 9, 10, 11, 12, 13, 24, 26, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "100": [5, 8, 12, 32, 33, 36, 37, 38, 39, 40, 41, 42, 43], "1000": [8, 11, 13, 31, 34, 35, 36, 38], "10000": [3, 8, 31, 32, 34, 36, 37, 38], "100000": 9, "100923": 39, "101": [9, 25, 41], "10100191843915": 9, "101101e": [40, 41], "1016": 11, "10191": 41, "102": [31, 35, 40], "1021": 36, "1022": [33, 39], "10243379095127": 31, "103": 31, "1048782222412": 31, "104960": 43, "105": [31, 38], "106": [31, 40], "107": [35, 40], "10716339774632": 31, "107589e": 35, "107714": 40, "109": 40, "109955": 4, "10_000": 35, "10k": [3, 8, 32], "11": [6, 7, 9, 10, 12, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "110": 40, "11000": 31, "111": [36, 40], "111843863834736": 36, "112": [40, 42], "113": [36, 40], "1134921793506": 31, "114099": 36, "1141": [33, 39], "114936e": 38, "11497645250662": 31, "115241": 31, "115642e": 4, "116": [31, 33], "117": 33, "11703074102877": 31, "118": [31, 42], "118776485061943": 36, "119": [31, 35], "12": [6, 9, 10, 12, 13, 24, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "120": 43, "12000": 31, "120000": 9, "120259": 4, "1203": 36, "121": 43, "122": [9, 31, 43], "123": 43, "124709": [40, 41], "125": [9, 31, 40, 41, 43], "1250": 35, "125000e": 35, "1257093988726": 31, "126": [9, 35, 43], "127": 42, "127387": 42, "127643e": 4, "12765": 34, "1277277": [40, 41, 44], "128": [9, 25, 36, 40, 41, 42, 43], "1285937": [41, 44], "128981e": 35, "129": [31, 40, 42], "12942075": 8, "13": [6, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "130": [40, 42, 43], "13000": 31, "130635": 40, "131": [31, 40, 42, 43], "13113195517153": 7, "132": [31, 42, 43], "1326642": 42, "1327314": 42, "133": [7, 31, 40], "1330454507738": 31, "1331857": 43, "1332338": 43, "13334874e": 40, "133349e": [40, 41], "133435": 36, "1338": 36, "134": [7, 42], "1344499": 42, "1344709": 43, "135": [9, 10, 11, 13, 31, 34, 42, 43], "135230": 36, "13549729": 9, "135536": 35, "136": [31, 43], "1361": 36, "136118": 36, "1364500": 42, "1364554": 42, "137": [36, 37], "138": 9, "138748e": 35, "139": 42, "1390365": 42, "13930802": 8, "139443e": 35, "13it": [36, 40], "14": [6, 9, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "140": 9, "14000": 31, "140000": 9, "140301": 31, "141": [9, 42], "141472e": 4, "1419423": [40, 41], "1419729": [40, 41], "142": 9, "143": [31, 43], "1431152": 43, "1431159": 43, "1434950": 43, "143614814010155": 31, "14364013477": 36, "144": [9, 31, 36, 43], "1442153": [40, 41], "145": 9, "146128": 43, "147": [35, 36, 43], "14729": 31, "148492e": 35, "14856951716": 40, "149": 9, "15": [9, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "150": [3, 7, 31], "1500": 36, "15000": 31, "1501": [12, 33], "150422552980984": 12, "151": [42, 43], "1511": [12, 33], "152": [31, 43], "15200428214354": 31, "152110": 4, "153": 31, "15385782611257": 31, "154": 9, "155": [40, 41, 42], "1553899": 42, "1554053": 42, "156": [31, 35, 40, 41], "15646333922172": 31, "157": [9, 40, 41], "1570672": 42, "1578659": 42, "158": 31, "1587728": 42, "1587755": 42, "159": 31, "15950245682916": 36, "16": [5, 8, 9, 11, 12, 13, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "1600": [33, 39], "16000": 31, "160000": 9, "16074509661948": 31, "16097503640583": 31, "161": 9, "162": 31, "16205582305136": 9, "16227766": 4, "16272183056265": 31, "163": 36, "164": 31, "1647112": 43, "165": 31, "165472": 40, "166": [40, 41], "1668097": 43, "166811": 43, "167": 34, "1674169": 42, "1674188": 42, "1680": 36, "1684245": 42, "169": 31, "16th": 5, "17": [31, 32, 35, 36, 38, 39, 40, 41, 42], "17000": 31, "170291e": 35, "17039784123733": 31, "171": [31, 36], "17149873885836": 36, "173347": 36, "174940e": 35, "175": 31, "176": 31, "176151": 36, "1771110": 43, "1778": 38, "1781868": 43, "178191": 43, "178639": 40, "18": [31, 32, 35, 36, 38, 39, 40, 42], "180": [9, 10, 11, 13, 34], "18000": 31, "180000": 9, "180044": 38, "180223e": 35, "18093778458504": 36, "181025": [33, 39], "181072": [33, 39], "181100": 39, "181140": 39, "181165": [33, 39], "181180": 39, "181220": 39, "181298": [33, 39], "181307": [33, 39], "181997e": 35, "182": [31, 42], "183": 36, "185": 31, "18506215845034": 31, "185550": 43, "18568615760506": 31, "185701501179963": 31, "186": 31, "186224e": 35, "1866": 41, "187": [31, 35], "187153": 39, "1875": 35, "1875670": 43, "1876410": 43, "187945e": 35, "188": 31, "189": 36, "18it": 38, "19": [9, 24, 31, 32, 36, 38, 42], "190": 31, "19000": 31, "190048": 40, "19014419172949": 31, "1904204": 43, "191": 31, "191553": 44, "192": [31, 40, 41], "193": 9, "193751": [40, 41], "1937530": [40, 41], "1953": 38, "1958207": [40, 41], "196": 31, "197": 31, "1979": 5, "199": 33, "199001": 42, "1994": [12, 33], "1996": 25, "1998": [25, 32], "1999": 25, "1b7837": [31, 32], "1st": [10, 35], "2": [2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 27, 29], "20": [8, 13, 31, 32, 33, 34, 35, 36, 38, 39, 42, 43, 44], "200": [32, 36, 40], "2000": [31, 36], "20000": [9, 29, 31, 41], "200000": [9, 40], "2000000000000002": 12, "200329": 36, "2004": [5, 10], "2005": 10, "2006": 10, "2008": [9, 11, 25, 41], "200839": 42, "2009": [33, 39], "2010": [41, 42, 43], "20165827269054": 40, "201870881643515": 31, "2021": [17, 40], "2022": [24, 26, 28], "2025": [24, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "202538": 35, "203907422832984": 31, "204391181178039": 36, "204598": 36, "205": 31, "20526553550616": 31, "205265e": 35, "206": 31, "207": [40, 41], "207402486338014": 31, "2074073": [40, 41], "207411": [40, 41], "2082": 38, "2084187": [40, 41], "2093": 41, "209528": [40, 41], "2095343": [40, 41], "20it": 36, "21": [31, 32, 35, 36, 38, 41], "210": 31, "2101100": [40, 41], "210248821714174": 31, "211": 29, "21105": [24, 26], "2112": 38, "2115688": [40, 41], "2115699": [40, 41], "212": 31, "212253898653216": 36, "212485": 39, "213": 5, "2133348": [40, 41], "214": 36, "21432679549264": 31, "215": 31, "215478": 40, "216284": 36, "217191e": 35, "217915e": 35, "218": [31, 42], "2180": [31, 35, 36, 37, 38], "218534": 40, "218602": 36, "219": 34, "219290": 36, "22": [25, 31, 32, 36, 38], "220000": 9, "221": [31, 40, 41], "221156": [40, 41], "222": 36, "224474510468497": 36, "225": [5, 9, 10, 11, 13, 31, 34], "2260745900828": 9, "227": 31, "2272727272727275": [10, 12], "229": 31, "23": [6, 29, 31, 33, 36, 38, 42], "23009": 4, "23029": 4, "230325e": 35, "231": [31, 35], "231456": 36, "232": 43, "232786195286195": 12, "233": 31, "2335116942948": 31, "236": [31, 42], "23606798": 4, "237449": 31, "237674": 31, "237685": 31, "237878": 31, "238012": 31, "23809400314832": 40, "238265": 36, "238568e": 35, "2392": 37, "239230087765165": 37, "239660": 39, "24": [10, 31, 34, 35, 40, 41], "240": 36, "240000": 9, "241349": 36, "242": 31, "24264069": 4, "243": [40, 41], "244": 31, "245548": 35, "245849288611552": 31, "2479099815331125": 31, "247976e": 35, "24819317309326": 31, "2482525478734": 9, "2485207100591715": [10, 12], "248601": 42, "249": 42, "25": [9, 10, 12, 25, 31, 33, 35, 36, 38, 39, 42, 43], "250": [31, 36], "2500": [35, 36], "250000": 43, "250000e": 35, "25001": [40, 41, 42], "25007": [40, 41], "250091": 36, "25019": [40, 41], "25021": 42, "25023": 43, "250293e": 35, "251": [25, 31], "2517969187055087": 9, "252": [40, 41], "2524338627573": 9, "253214": 36, "253346511768115": 9, "254413": 36, "254551": 31, "2546": 37, "254870": 31, "256": 36, "256577": 43, "257": [33, 39], "2574774320441": 36, "25751906267658": 9, "25873604835377": 31, "2599999999999958": 10, "25it": 38, "26": [24, 31, 35, 36, 37], "260000": 9, "260701": 43, "261": [25, 31, 34], "262": 31, "262794": 41, "264571e": 35, "265": 31, "26598122042385": 31, "266": [34, 36], "267010": 35, "2679084943658": 31, "26868229516313": 31, "269": [31, 33, 39], "269811e": 35, "27": [31, 36], "270": [9, 10, 11, 13, 34], "2700171641628": 31, "270738": 39, "271571": 42, "272": 36, "27312573292198": 31, "273506": 36, "2737591256329": 31, "274181e": 35, "274606e": 35, "275": [35, 36], "275597": 31, "276": 35, "276247805620471": 36, "277": [31, 33], "27715682331046": 31, "277278e": [40, 41], "278": 36, "28": [31, 32, 42], "280": 31, "28000": 9, "280000": 9, "281": 31, "281009": 42, "281077e": 35, "28190312750286": 36, "282328e": 35, "282639e": 35, "282825": 40, "282839e": 35, "283": 31, "283208e": 35, "284524": 43, "284539e": 35, "285171141696564": 40, "28539667": 8, "285938e": 41, "28600199208284": 36, "286311587314138": 6, "2869": [24, 26], "287": [31, 43], "28723544907045": 31, "28827397": 8, "288600": 42, "288679": 40, "29": [31, 36], "290123": 36, "290276": 35, "291": 31, "2913": 39, "291578e": 35, "291599": 42, "292": 36, "293": 31, "295": 31, "295998e": 35, "296": 43, "2960994535205": 31, "296448": 36, "297179": 36, "297192": 36, "297386": 35, "29738612": 35, "29799827411202": 36, "2981": 40, "2983": 39, "2988": 39, "299": 33, "29906598": 35, "299066": 35, "29951275448596": 9, "29it": 36, "2d": [11, 32], "2f": 33, "3": [4, 5, 6, 8, 9, 10, 11, 12, 13, 15, 27, 29], "30": [31, 33, 36, 39, 43, 44], "3000": [31, 36], "300000": [9, 40, 41, 42, 43], "300001": [3, 7, 9], "300494": 34, "300895": 42, "300950": 40, "30135499": 8, "301750": 31, "3019": 40, "302290": 42, "303": 36, "3034": 39, "306": 31, "30626085843903": 36, "306288625624866": 40, "3070790123992": 31, "307171": 42, "308429e": 35, "3093548792433": 36, "309672e": 35, "30it": 36, "31": [9, 31, 44], "3103": 39, "311697653860971": 31, "3125": 35, "312974e": 35, "31297518163126": 31, "315": [9, 10, 11, 13, 31, 34], "316": 31, "316194e": 35, "317": 31, "31792032399716": 31, "318": [31, 36], "31843978140822": 31, "318793": 36, "319": 31, "32": [5, 9, 29, 31, 36], "320": 35, "320600": 43, "3207": 40, "32149019323896": 31, "321571": 35, "322": 31, "322511": 35, "323151": 40, "3238172557651": 31, "325000": 42, "325002048860028": 31, "3250742033597": 31, "325393": 31, "325632e": 35, "326242": 35, "327524e": 35, "328": 31, "32871203064286": 31, "32it": 36, "33": [6, 31, 32, 36, 42, 43], "33001": [40, 41], "33005": 42, "33015": 43, "332": 31, "333": [31, 36], "333103e": 35, "333330": [33, 39], "333484": [33, 39], "333537": [33, 39], "333558": [33, 39], "333611": [33, 39], "333660": 39, "333700": 39, "333740": 39, "334": 31, "335979": 35, "3376899440512": 31, "3393": 38, "33it": 38, "34": [31, 42], "34010668e": 7, "34013": [42, 43], "34017": 7, "34031": 43, "34037": 43, "34039": 42, "340790e": 35, "341": 31, "342": 42, "343335945824833": 36, "3435613098997": 31, "344": 36, "344063e": 35, "344179e": 35, "344499e": 42, "3447": 38, "344710e": 43, "3448": 38, "345417e": 35, "346": 42, "3464101615137755": 5, "346873651294004": 9, "347268": 42, "348596": 36, "34992672555518": 31, "34it": 39, "35": [6, 9, 31, 32, 36, 41], "3500": 36, "351111": 31, "35200453863293624": 8, "3524015028072": 31, "354": 31, "355": 34, "356": 36, "356085e": 35, "356348": 43, "357740": 43, "36": [31, 38, 40], "360": [9, 10, 11, 12, 13, 31, 34], "36011": 42, "36019": [2, 43], "36021": 43, "36031": 42, "36033": 2, "36043": 42, "360494": 42, "36053": 42, "36059": 42, "36089": 2, "36093": 43, "361": [31, 35], "36113": 42, "36115": 43, "36121": [40, 41], "361253": 36, "363343": 36, "363361": 36, "3639402156592": 31, "365000": 43, "36641794139831": 36, "367675e": 35, "37": [31, 38], "370": 36, "371": [31, 36], "374": 31, "37493167303575": 9, "3750": 35, "375000e": 35, "37507189211215": 31, "37576490805884": 36, "376": 31, "376452": 36, "376844": 36, "377": 31, "379": [40, 41], "38": [31, 43], "380": 36, "38012302e": [3, 8], "38065695297433": 36, "38169400609057": 31, "382": 36, "38227145890323": 31, "3827861952861946": 12, "383022": 34, "384": 31, "385298": 43, "385690": 43, "386278": 35, "387091": 42, "388": 31, "388937651487595": 36, "39": [31, 37, 38, 39, 42, 43], "390366e": 42, "3908": 35, "392": 31, "393": 31, "396": 36, "396747": 40, "39697788484186": 31, "3988165680473372": 12, "399": 31, "39939874215915": 36, "399421": 42, "3rd": [10, 35, 42, 43], "4": [3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 29, 36, 37], "40": [9, 25, 31, 35, 38, 41], "400": 29, "4000": [31, 36], "40000": [3, 7, 9, 29, 34, 41], "400000": [34, 42], "400195303621": 31, "401": 36, "401124": 40, "40161185701731": 31, "401954e": 35, "402": [31, 35], "404376e": 35, "405307": 43, "4062": 36, "40653772061722": 31, "407": 36, "407015": 42, "407396": 35, "408": 31, "4086966106361": 31, "408914": 4, "409025": 35, "41": 31, "411": 43, "411124": [40, 41], "412": [40, 41], "412055": [40, 41], "4125015273365": 36, "415": 31, "41568872479706": 31, "41810472227377": 36, "418270257129": 31, "419": [31, 35], "42003": 42, "42007": 4, "42039": [2, 4, 41], "420469": 36, "42047": 43, "42049": [2, 4, 41, 43, 44], "42059": 43, "42061": 43, "42069": 43, "42073": 4, "42079": 42, "42085": 4, "421": [31, 36], "42101": 42, "421085e": 36, "42109": 42, "42111": 42, "421124": [40, 41], "42115": 43, "42121": 43, "42125": 42, "42129": 42, "42131": [42, 43], "422": 42, "422251": 42, "4222925698438": 9, "422652": 4, "423": 36, "424": 31, "42449780936565": 36, "425": 42, "4250237185032414": 5, "426124": 44, "427": 31, "427998e": 35, "428": [31, 36], "4286535909853": 31, "43": [35, 36, 40, 41], "430202": 40, "431124": [40, 41, 44], "431977": 36, "4326": [2, 31, 35, 36, 37, 38], "433": 31, "4347341620387": 31, "434951e": 43, "43575026244963": 36, "436": 35, "436124": 44, "4375": 35, "438": 36, "44": 6, "441124": [40, 41, 44], "44146152059986": 31, "442153e": [40, 41], "443458": 34, "443930e": 35, "444": 31, "444444444444445": 12, "445": 31, "446124": [41, 44], "447": 36, "447563e": 35, "449": 31, "45": [9, 10, 11, 13, 34], "4500": 36, "450887573964497": 12, "451368": 42, "454": 31, "455192e": 35, "455312467871126": 31, "457": 36, "459": 31, "46": 34, "460026": 43, "4604640495581": 31, "4605": 39, "462": [31, 43], "4626399863605": 31, "462801e": 35, "4637541814681": 31, "464": 35, "46406810989924": 31, "46428626165317": 9, "464543": 36, "46481030213619": 31, "465": 36, "4654511718278": 31, "4664895081685": 31, "467516e": 35, "468": 36, "46845881256164": 9, "46862676054138": 36, "468678977272724": 40, "469": 31, "469078276366588": 36, "46963692e": 36, "47000840562424": 9, "47028231": 13, "470425": 40, "471": 42, "471774": 39, "474": 31, "47458020804596": 31, "475": 31, "475344": 34, "475618051522": 31, "476": 31, "476724": 36, "477": 31, "47700633100357": 31, "47763402363177": 31, "477932": 43, "47814412070759": 40, "47831301322111": 31, "478527e": 35, "47866897e": 7, "47898266": 35, "478983": 35, "479106e": 35, "479607": 35, "48": [31, 33], "480": 31, "48011070480095": 31, "481": 31, "482": 42, "48223528985847": 31, "484039": 38, "48457649663337": 42, "48531991122005": 31, "487": 31, "487043e": 35, "4883": 35, "48885": 4, "48930987": 35, "489310": 35, "48it": 40, "490": 35, "490335": 42, "490678": 43, "491321e": 38, "49521343700425": 31, "49573073424695": 9, "4959": 36, "496371148989": 31, "497": 31, "4984156012293": 31, "498967": 36, "499": 31, "499411": 36, "4f": 37, "5": [3, 5, 7, 8, 9, 10, 11, 12, 13, 29, 32, 33, 36, 37, 39, 44], "50": [34, 35, 36, 38, 42, 43], "500": [3, 8, 29, 31, 34, 36, 37], "5000": [31, 35, 36], "500000": 43, "500000e": 35, "50003": 43, "50019": 42, "50023": 43, "501": 36, "504": [40, 41], "5068": [40, 41], "507": [40, 41], "508": 36, "509": 31, "51": 31, "510": 31, "5106507065328003": 31, "51079969541095": 31, "512": [31, 36], "512382": 40, "513": 31, "51308060330132": 31, "51396771377688": 31, "514": 35, "51466805e": [3, 8], "515": 31, "517309": 40, "51732783411336": 31, "51855229542514": 31, "519": 31, "5199996240335": 31, "52": [9, 31, 36], "52055471278891": 31, "521": 31, "52240": 4, "523": 31, "524": 31, "524056": 36, "524606": 43, "524700893642784": 9, "525": 31, "52548794337903": 31, "526495": 35, "52649515": 35, "526820": 34, "527864443249059": 12, "5289621426542": 31, "529001": 34, "529003": 44, "53": [9, 31, 36, 38], "530": 31, "5306285384275498": 9, "530888372832905": 31, "531986": 36, "532": [40, 41], "533296": 36, "533481": 40, "535": 42, "5358169887317": 31, "5361202155322": 31, "536776": 36, "5374122496355085": 31, "537623": 42, "5387549206406": 31, "5390010625901": 36, "539159": [40, 41], "539445": 42, "54": [33, 38], "540220": 36, "541": 43, "541045": 31, "541315": 36, "5419": 40, "542717390394078": 36, "543164": 42, "5434027777777798": 10, "54340278": 10, "543432e": 35, "54413144e": 36, "544871": 36, "545": 35, "545209": 31, "54535714285717": 40, "545416": 31, "546963": 36, "547207": 36, "548294": 31, "548982": 31, "549112426035503": 12, "55": [6, 41], "5500": 36, "550255": 38, "5504691463605988": 12, "550673": [40, 41], "55099734461928": 36, "551466": 31, "55343733049868": 36, "555": 43, "555143": 43, "556": 35, "556436": [40, 41], "556471": [40, 41], "55681949827738": 31, "558025": [40, 41], "559": 42, "56": [36, 40, 42], "561271e": 35, "5625": 35, "562911": 42, "564278e": 38, "564830": [40, 41], "566468": 4, "566481": 4, "566521": 36, "567181": 43, "569": 43, "569245": 43, "57061399215138": 31, "570672e": 42, "571369": 35, "5716": 35, "571970": 35, "573660": 40, "574298": 43, "57592092723812": 36, "576700": 36, "577242": 36, "577791e": 35, "578659e": 42, "579": 42, "58": [12, 33, 35, 42], "580058": 42, "58025221e": 40, "580614e": 35, "58070721486183": 31, "582798": 38, "583": 31, "5847": 37, "5850": 35, "587": 42, "58769932902283": 31, "588314e": 35, "5893986876048": 31, "589652954130884": 31, "59": [36, 43], "590": 41, "594676": 39, "59771789": 35, "597718": 35, "598170e": 35, "598269231002035": 31, "598535": 36, "5988333289926": 31, "599394e": 35, "59it": 39, "5aae61": 32, "6": [5, 8, 9, 10, 11, 12, 13, 29, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "60": 31, "6000": [31, 36], "60000": [9, 29], "600344": [40, 41], "601008738729746": 31, "601553": 42, "60186279711772": 31, "602242": 36, "602858e": 35, "60333362": 13, "60396671766017": 31, "605081": 36, "6051705066962": 31, "60555128": 4, "609438": 36, "60it": 39, "61": 31, "611480": 36, "612": 31, "612849": 35, "613496": 35, "614440": 4, "61453923492877": 31, "614562": 39, "616242e": 35, "61640252965907": 36, "6164978124731": 31, "617644883145928": 31, "618342": 42, "62": [31, 36, 40, 41], "620010": [40, 41], "6206": 36, "620803405890598": 9, "622": 31, "62200842332824": 31, "623": 31, "624234": 35, "62423403": 35, "624236": 36, "625": [10, 12, 35, 44], "6250": 35, "625000e": 35, "625427": 44, "6261606284401": 31, "628": 31, "628524": 38, "629350": 35, "6304": 36, "632858": 43, "633": 36, "633434": 36, "633872": 43, "634": 43, "634947": 36, "6352081433735": 31, "636": [31, 41], "636857": 43, "63687956281643": 31, "63708666646102": 31, "637424": [40, 41], "637979e": 35, "638550982259346": 31, "6386630811210166": 5, "64": [35, 36], "640": [33, 39], "642713207946493": 36, "6429803864779": 31, "6435210052487": 31, "644631": 36, "645": 36, "645393996449286": 31, "645747294684": 31, "647113e": 43, "649048e": 35, "64929267428977": 31, "64983095": 8, "65": 31, "6500": 36, "65000": 29, "652334": 36, "65261191763223": 31, "6530346357598": 31, "654": 43, "654812": 42, "65603911977024": 31, "656987": 42, "657": 43, "6577818786159": 31, "658212513150545": 31, "659": 34, "65921989070411": 31, "659756": 42, "660461": 43, "66058859963124": 31, "662": 36, "662744": 35, "663337": 42, "6643": 36, "66432": 34, "664646": 38, "665": 43, "6655005978438": 36, "66797506865373": 31, "668988496071829": 12, "671": [40, 41], "671094444673457": 31, "671315": 31, "671378": [31, 36], "671459e": 35, "673103": 43, "6749": 37, "6753709826502": 31, "67546701766707": 9, "6758": 37, "677": 43, "67749687987293": 36, "6783974224309782": 8, "67911947342787": 31, "68": [31, 33, 43], "680877": 44, "684106171502": 31, "684245e": 42, "684282": 42, "6853257044600705": 43, "685442": 43, "686": 42, "6875": 35, "689": [31, 36], "69": [31, 33], "691261185377": 36, "692": 36, "6922867158": 36, "692587": 43, "6928203230275509": 5, "693": 43, "693238": 36, "6949744": 13, "69602854": 13, "6965620853512": 31, "696596e": 35, "696655": 36, "699327e": 35, "6994082840236686": 12, "7": [3, 6, 8, 9, 10, 12, 13, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "70": [24, 26], "7000": [31, 36], "700473": 34, "704020": 40, "706": 36, "70615833704335": 31, "70637848936525": 31, "707205": 43, "707327": 35, "707864": 36, "708": 36, "708155e": 35, "708315": 31, "708401": 42, "708844": 31, "709": 42, "709089": 35, "71": 31, "710706": 31, "712": 31, "712477e": 35, "715": 43, "715502": 36, "71584839734442": 31, "717101": 39, "71808346707526": 9, "71946771": 35, "719468": 35, "71it": 36, "72": 31, "7204192104105": 31, "720513": 34, "721": [40, 41], "72129368829498": 31, "72180532432975": 9, "72263681402603": 31, "72284475158114": 31, "724090": 34, "7243363658593012": 31, "724455358567752": 9, "72644527380828": 31, "72740449e": [3, 8], "728": [40, 41], "72916006e": 8, "73": [31, 35], "732441": 36, "732648": 36, "73271183855024": 31, "733921": 36, "734420": 36, "736": 34, "736665": 36, "73736564231757": 31, "738": [31, 42], "742": 31, "742198e": 35, "74233718690067": 31, "742790": 31, "74339224376814": 36, "74437591": 35, "744376": 35, "744675e": 35, "745": [40, 41], "746984e": 35, "748935": 34, "749329": 38, "75": [10, 12, 31, 33, 35, 36, 38, 40, 42, 43], "7500": [35, 36], "750000": 43, "750000e": 35, "7501437842243": 31, "752124": 35, "75388257201456": 31, "75394078058895": 31, "755602": 36, "756134": 36, "759069": 38, "76": [31, 43], "76039622005987": 31, "76067852233155": 31, "760905": 43, "762a83": [31, 32], "7638220314215": 31, "765": 25, "76505875155453": 31, "765146": 31, "765479": 36, "766008": [40, 41], "7672138047138048": 12, "767505": 35, "76750526": 35, "768622e": 35, "77": 25, "771111e": 43, "772099996699211": 36, "77272968527348": 31, "773": 25, "7745966692414834": 5, "7752958579881657": 12, "776": 31, "777": 10, "778474e": 35, "7789194687348": 36, "778941": 35, "779517": 43, "779787": [40, 41], "77it": 36, "78": 40, "7800038510683": 36, "78030747135494": 31, "780406e": 35, "780781e": 4, "781": 31, "78213173974365": 31, "784036": 42, "78509306690796": 31, "786": 10, "7883417508417505": 12, "78853": 4, "788809": 44, "79094449257357": 31, "79200013309745": 36, "7954545454545454": 10, "795520367595483": 7, "796418": 35, "79972318328916": 36, "8": [3, 5, 7, 9, 10, 12, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "8000": [31, 36], "80000": 9, "800064": 43, "801185": 43, "803996415126576": 36, "80480638925906": 31, "805222": 31, "80778907487542": 31, "80984954198823": 31, "80cdc1": 38, "81": [33, 40], "810265": 36, "811337": 36, "812": 42, "8125": 35, "81297711661153": 31, "814415e": 35, "81459916724543": 31, "816": [40, 41], "817863": 31, "818": 31, "818780": 44, "81901919": 39, "819103": 43, "82": [31, 40, 42], "8203621099379": 31, "82287362e": 7, "82380184599977": 31, "824114": 35, "824728249874155": 31, "825": 34, "82842712": 4, "828618e": 35, "82909048794102": 31, "829609945352054": 31, "83": [31, 40], "83032768328087": 36, "831391": 40, "838043": 39, "839134": 36, "83it": 39, "84": [31, 40], "8412232754002": 31, "84236013485516": 31, "84267974441974": 31, "843": 42, "84364743170343": 9, "844": 31, "844483862235393": 31, "84533547443391": 31, "846972e": 38, "847": 43, "847603": 36, "847620e": 35, "84868954476826": 31, "849220": 35, "84922016": 35, "8497041420118343": 12, "85": [12, 33, 36, 40], "8500": 36, "851185": 36, "85265986": 35, "852660": 35, "852939": 36, "85490067201857": 31, "85575520062633": 31, "857744057998787": 31, "857940058678224": 9, "8585979": 35, "858598": 35, "860991900760425": 36, "861": 34, "861458": 42, "86215475": 35, "862155": 35, "863477": 42, "86386526565153": 9, "864079": 36, "86662237704212": 31, "86it": 36, "87": 31, "87106047886697": 36, "871326": 38, "87133039855246": 31, "87395842894333": 31, "875": 44, "8750": 35, "875000e": 35, "875977e": 35, "877575e": 35, "878": 42, "87815789262632": 9, "879043": 42, "87it": 37, "88309726034151": 31, "8838": 36, "884205": 36, "885612e": 35, "888994": 43, "89": [29, 38], "8905537482715": 31, "8924548396273": 31, "895": 43, "89534": 41, "895497": 42, "896": 42, "897133": 35, "897284e": 35, "898245e": 35, "89984110553695": 7, "89it": 36, "9": [3, 4, 6, 8, 9, 10, 12, 13, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "90": [9, 10, 11, 13, 31, 34, 36], "9000": [31, 36], "900000": 42, "9003": 43, "900608845358136": 31, "900778": 43, "902991e": 35, "903476166101086": 31, "903773": 42, "904204e": 43, "904780": 35, "90478027": 35, "905": [40, 41], "90650338632196": 36, "90676540829": 40, "907773": 44, "908": 34, "90800853750102": 31, "908555": 38, "91": [31, 40], "91031223109565": 31, "911138570395592": 37, "91222896e": [3, 8], "912914": 43, "913": 43, "91350": 4, "91380327517797": 9, "91416301739787": 31, "91425404617246": 31, "915994": 44, "9184996683511": 36, "919842": 36, "91it": 36, "920356": 40, "920779": 40, "92101476704724": 31, "92146189656636": 31, "922": 43, "92200000e": 40, "922321": 43, "9230517999226": 31, "923824296958912": 36, "925": 41, "92638153821945": 31, "9270": 37, "927684": 35, "927833": 43, "928600": 42, "93": [31, 42], "930238e": 35, "930495950380212": 36, "93049595e": 36, "933": 43, "933881": 43, "934750": 31, "93559809124235": 31, "935704": [40, 41], "936": [40, 41], "936610e": 35, "9375": 35, "939": [40, 41], "939120": 35, "939483": 40, "94": 34, "9417689846013": 31, "942269e": 35, "94300451436615": 36, "944": 31, "946308": 43, "9489257088419": 31, "949918937899707": 12, "95": [12, 31, 33], "9500": 36, "950000": [42, 43], "950179": 42, "95249653237697": 31, "952927e": 4, "9546403546353": 31, "95466232828718": 36, "9553193442247": 31, "957437e": 35, "958207e": [40, 41], "958282": 31, "95829021740866": 31, "959002e": 35, "96": 31, "961": [40, 41], "9614557671535335": 7, "964626": 40, "9692829902109": 31, "96961847": 13, "97": 31, "97097998057058": 31, "974452e": 35, "975": 34, "97586718066003": 31, "976144e": 35, "976618": 42, "977": 42, "977057": 36, "977408": 42, "97765967211234": 31, "978": [40, 41], "979345": 4, "97it": 40, "98": [31, 36, 40], "981609": 4, "9817928939993": 31, "981884": 35, "9843806262891": 40, "9894831771649137": 31, "99": 40, "991348": 43, "99198418e": 36, "9922577497215": 36, "9929787628823334": 8, "9948666113324": 31, "9963959396589": 31, "9970ab": 32, "997349965762": 9, "998328": 43, "9987755386882": 31, "99it": 38, "9f": 40, "A": [3, 7, 9, 10, 11, 12, 13, 31, 32, 33, 34, 42, 43], "AND": 41, "And": [32, 40], "As": [10, 31, 36], "At": [32, 39], "BUT": 33, "Be": 33, "But": [3, 24, 32, 34, 35, 40, 41, 42, 44], "By": [3, 31], "For": [32, 34, 35, 40], "If": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 23, 24, 31, 33, 34, 35, 36, 40, 41, 42, 43], "In": [10, 27, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44], "It": [2, 3, 5, 6, 8, 9, 10, 11, 12, 13, 31, 32, 33, 34, 35, 36, 38, 41, 42, 43, 44], "Its": [6, 32], "No": [25, 33, 38, 40], "Not": [1, 33, 34], "OF": 27, "On": [33, 37], "One": 38, "Or": 41, "That": [5, 8, 31, 36, 37, 38, 41], "The": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 24, 29, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "Their": [42, 43], "Then": [2, 9, 24, 36, 38, 40, 42, 43, 44], "There": [24, 31, 33, 35, 38, 41], "These": 34, "To": [24, 31, 35, 37, 44], "With": [24, 27, 32, 35, 37, 38, 39], "_": [32, 36, 39, 40], "_automat": 31, "_experiment": 31, "_lag": [31, 32], "_linear_manu": 31, "_model": 31, "_nestedsequ": [2, 3, 4, 5, 6, 8, 10, 11, 13], "_nugget": 32, "_rang": 32, "_sill": 32, "_supportsarrai": [2, 3, 4, 5, 6, 8, 10, 11, 13], "_weights_arrai": 1, "a6611a": 38, "a6dba0": 32, "ab": 40, "abl": [27, 40], "about": [2, 5, 24, 31, 33, 34, 35, 36, 38, 39, 41, 42, 43, 44], "abov": [12, 31, 32, 35, 38, 42, 43], "abrupt": [42, 43], "absolut": [5, 9, 11, 12, 31, 35, 38, 40, 41], "academ": 10, "accept": 2, "access": [20, 24], "account": [10, 36, 43], "accur": [34, 42, 43], "accuraci": [5, 42, 43], "achiev": [40, 41], "across": [37, 39], "activ": 27, "actual": [31, 32, 36, 39, 42, 43], "ad": [6, 35], "adapt": [1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "addit": [22, 34, 35, 38], "administr": 41, "advanc": 21, "advantag": 33, "affect": [3, 7, 33, 34, 35, 37, 38, 44], "after": [9, 27, 32, 35, 38, 40, 41, 42, 43, 44], "ag": 9, "again": [3, 41], "against": 12, "agg_lag": 9, "aggreg": [0, 1, 2, 3, 24, 26, 28, 35, 40, 41, 44], "aggregared_data": 9, "aggregatedvariogram": 9, "agregowanych": 28, "ai": 44, "air": [17, 28, 34], "air_pollut": 34, "algorithm": [3, 5, 7, 8, 9, 10, 13, 25, 31, 32, 33, 35, 36, 38, 41, 42, 43], "alia": [9, 10, 31], "alias": 31, "all": [1, 2, 3, 5, 6, 8, 9, 10, 11, 12, 21, 23, 31, 32, 34, 35, 36, 37, 38, 39, 40, 43], "all_filt": 38, "allow": [3, 5, 7, 8, 13, 36], "allow_approx_solut": [8, 13, 36], "allow_approximate_solut": [3, 5, 8, 37], "allow_lsa": [7, 42], "allowed_model": 33, "almost": [31, 40], "alon": [5, 24], "along": [27, 31, 35, 41, 42, 43, 44], "alpha": [31, 34, 35, 36, 37, 38, 40, 44], "alreadi": 37, "alter": 2, "alwai": [32, 33, 34, 36, 38, 40, 42, 43, 44], "america": [12, 33], "amplifi": [36, 38], "an": [2, 5, 7, 8, 9, 10, 11, 13, 31, 32, 33, 34, 35, 36, 38, 39, 40, 43], "analys": 33, "analysi": [8, 9, 11, 24, 29, 31, 34, 35, 38, 40, 41, 42, 43], "analyz": [29, 40, 41, 42, 43], "angl": [2, 3, 8, 10, 34, 36], "angles_between_representative_point": 2, "angles_to_unknown_block": 1, "ani": [2, 3, 4, 5, 6, 8, 9, 10, 11, 13, 31, 32, 33, 34, 40, 42, 43], "annot": 1, "anomal": 35, "anoth": [8, 33, 34, 35, 38, 40], "anyth": 2, "anywai": [3, 8], "apart": 33, "apcom": 5, "api": [1, 20, 21, 24, 34, 35], "append": [32, 36, 38, 40, 42, 43], "appli": [9, 31, 32, 33, 37], "applic": [5, 8, 10, 31, 36, 42], "approach": [30, 43], "appropri": 40, "approxim": [3, 5, 7, 8, 13, 31, 34, 36], "apt": 27, "ar": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 22, 23, 24, 25, 27, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "arbitrari": 36, "area": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 13, 21, 24, 28, 30, 31, 32, 33, 34, 36, 40, 41], "area_geometri": [2, 3, 4, 7, 9], "area_index": [2, 3, 4, 7, 9], "area_to_area_pk": [7, 43, 44], "area_to_point_pk": 7, "area_valu": [2, 3, 4, 7, 9], "areal": [7, 9, 24, 40, 41, 42, 43, 44], "areal_centroid": 40, "areal_input": 40, "argument": [35, 42, 43], "armstrong": [25, 32], "armstrong_data": 10, "around": [13, 31, 32, 35, 36, 38], "arr": [5, 33], "arrai": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 31, 32, 34, 35, 39, 40, 42, 43], "arraylik": [2, 3, 5, 6, 8, 10, 11, 13, 31], "arrow": 34, "art": 5, "artifici": 32, "as_cloud": [10, 31], "as_datafram": [10, 35], "asarrai": 32, "ascend": 38, "asid": 32, "assess": 17, "assign": [2, 6, 10, 11, 31, 33, 37, 40, 41], "associ": 12, "assum": [5, 10, 36, 37, 38, 42, 43], "assumpt": [10, 35, 36, 41], "ata": [3, 43], "ata_pk": 7, "atp": 3, "atp_pk": 7, "attent": [42, 43], "attr": 31, "attribut": [2, 3, 5, 8, 9, 10, 11, 12], "attributeerror": [2, 4, 5, 9, 12], "attributesettofalsewarn": 10, "author": [2, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "auto": 11, "autofit": [3, 5, 7, 12, 31, 33, 39, 40], "autom": [11, 35], "automat": [40, 41], "avail": [3, 5, 8, 9, 10, 11, 12, 31, 32, 36], "averag": [5, 9, 10, 31, 32, 35, 36, 40, 41, 42, 43], "average_inblock_semivari": 9, "average_semivari": [10, 38], "avg_block_to_block_semivari": 9, "avg_inblock_semivari": 9, "avg_rms": 36, "avoid": [23, 36, 40], "awai": [5, 9, 11, 12], "awar": [31, 42], "ax": [10, 34, 37, 38, 39, 40, 42, 43, 44], "axi": [9, 10, 11, 13, 34, 35, 39, 40], "b": [10, 12, 33], "b_coordin": 41, "b_id": [42, 43], "b_valu": 41, "back": 35, "backend": 3, "bad": 31, "balanc": 35, "balenoptera": 10, "banff": 10, "bar": [3, 5, 8], "bare": 32, "base": [0, 1, 3, 5, 8, 9, 10, 12, 13, 17, 21, 24, 27, 30, 31, 32, 33, 35, 36, 39, 40, 43, 44], "base1": 40, "base2": 40, "base3": 40, "base4": 40, "base5": 40, "base6": 40, "baselin": [9, 10, 11, 13, 32, 34, 37], "basic": [10, 21, 25, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "batch": 40, "becaus": [5, 27, 31, 32, 33, 35, 36, 38, 40, 42, 43, 44], "becom": [6, 31, 36], "been": [9, 12, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "befor": [5, 8, 9, 31, 32, 33, 35, 36, 38, 40, 41, 42, 43], "begin": [9, 10, 11, 13, 31, 34, 36, 38], "behav": [31, 32, 34, 40, 41], "behavior": [31, 32, 35, 36, 37, 41, 42, 43], "behind": [31, 40], "being": 31, "below": [9, 12, 31, 35, 38, 42, 43], "benchmark": [24, 30], "best": [31, 32, 33, 34, 36, 37, 38, 40], "bet": 31, "beta": [], "better": [3, 5, 24, 31, 34, 35, 36, 37, 38, 41, 42, 43], "between": [2, 4, 7, 8, 9, 10, 11, 12, 24, 31, 32, 33, 35, 36, 37, 38, 40, 41, 42, 43], "bia": [5, 8, 9, 11, 12, 24, 31, 36, 40, 42, 43], "bias": 38, "bias_experimental_model": 8, "bias_model": 8, "bias_valu": 8, "bibliographi": 24, "big": [8, 37, 41, 42, 43], "bigger": [9, 11, 12, 41], "bin": [8, 9, 10, 11, 13, 34, 35, 38, 42, 43], "bin_width": 35, "black": [31, 32, 34, 40, 44], "block": [0, 1, 3, 9, 10, 21, 24, 30, 41, 42, 43], "block_a": 2, "block_arr_to_dict": 1, "block_b": 2, "block_base_dist": 1, "block_coordin": 2, "block_data": [2, 41], "block_dataframe_to_dict": 1, "block_dist": 4, "block_id": [2, 7, 42, 43], "block_id_col_nam": 4, "block_index": [2, 3, 4, 7, 9], "block_pair": 2, "block_real_valu": 2, "block_representative_point": [2, 41], "block_to_block_semivari": 9, "block_to_blocks_angl": 1, "block_valu": [2, 41], "blockpk": 1, "blockpoissonkrig": 1, "blocks_dist": 2, "blocks_index": 2, "blocks_index_column": 2, "blocktoblockkrigingcomparison": 1, "blur": 32, "bonnin": 10, "book241284": 25, "bool": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 31], "boolean": 36, "bore": 32, "both": [2, 31, 34, 35, 38, 40, 41], "bottom": [34, 35, 38], "bound": 35, "boundari": 32, "box": [10, 38], "boxplot": [10, 38], "break": [1, 24], "breast": [40, 41, 42, 43, 44], "brew": 27, "bright": 34, "brighter": 34, "bring": 38, "buffer": [2, 3, 4, 5, 6, 8, 10, 11, 13], "bug": 18, "build": [9, 37, 38, 39, 40], "build_experimental_variogram": [3, 8, 9, 10, 31, 32, 33, 36, 37, 41], "build_mask_indic": 1, "build_theoretical_variogram": [3, 8, 9, 12, 29, 31, 32, 36, 37, 38], "build_variogram_model": 31, "build_variogram_point_cloud": 1, "built": [32, 41], "byte": [2, 3, 4, 5, 6, 8, 10, 11, 13], "c": [10, 12, 25, 27, 29, 33, 38], "c2a5cf": 32, "cadmium": 33, "cageo": 11, "calc_block_to_block_dist": 4, "calc_pair_dist": 2, "calc_point_to_point_dist": 1, "calcul": [1, 2, 4, 5, 8, 9, 10, 11, 12, 21, 29, 31, 33, 34, 35, 36, 38, 39, 40, 42, 43, 44], "calculate_angles_between_rep_point": 2, "calculate_angular_differ": 1, "calculate_angular_dist": 1, "calculate_average_p2b_semivari": 1, "calculate_avg_inblock_semivari": 9, "calculate_avg_semivariance_between_block": 9, "calculate_covari": 10, "calculate_deviation_decreas": 9, "calculate_deviation_ratio": 9, "calculate_distances_between_rep_point": 2, "calculate_experimental_variogram": 35, "calculate_model_error": 12, "calculate_point_support_dist": 2, "calculate_semivari": [10, 29], "calculate_spatial_dependence_index": [12, 33], "calculate_weighted_block_to_block_dist": 2, "call": [31, 32], "cambardella": [12, 33], "camera": 38, "can": [1, 2, 3, 5, 6, 7, 8, 10, 13, 24, 27, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "cancer": [40, 41, 42, 43, 44], "cancer_data": [2, 3, 4, 7, 9, 40, 41, 42, 43, 44], "cannot": [9, 12, 31, 32, 33, 36], "care": [31, 32, 33, 40], "case": [5, 14, 27, 29, 31, 36, 37, 38, 40, 41, 42, 43, 44], "catastroph": 36, "catch": 34, "categor": 33, "caus": 4, "caution": 35, "cautiou": 33, "cb": 3, "cdist": 4, "cell": [2, 4, 31, 38, 41, 42, 43], "censu": [41, 42, 43], "center": [9, 10, 11, 13, 31, 34, 35], "central": [12, 33], "centroid": [0, 1, 2, 3, 21, 24, 30, 40, 41, 43, 44], "centroid_pk": 7, "centroid_poisson_krig": [7, 42, 43, 44], "centroidpoissonkriginginput": 1, "challeng": 38, "chanc": [38, 42, 43], "chang": [10, 24, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "changelog": 24, "channel": 40, "chaotic": 32, "check": [5, 12, 20, 31, 32, 34, 36, 38, 40, 41, 42, 43], "check_id": 1, "check_nugget": 1, "check_rang": 1, "check_sil": 1, "check_undefin": 5, "chemic": 33, "choic": [36, 38], "choos": [31, 32, 40], "choropleth": [9, 40, 44], "chosen": [12, 31, 32, 36], "chosen_model": 31, "circl": [10, 31, 34], "circular": [9, 11, 12, 31, 32, 34], "circular_model": 31, "citi": [31, 33], "cividi": [32, 39], "clarif": [37, 38, 41, 42, 43], "clarifi": [42, 43], "clark": 5, "class": [2, 8, 9, 10, 11, 12, 21, 31, 32, 34, 35, 38, 41], "classic": [33, 36, 39], "clean": [10, 35, 38, 40], "clean_mask_indic": 1, "clearli": [39, 42, 43], "cli": 20, "clip": 5, "close": [5, 9, 10, 11, 12, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "closer": [33, 35, 37, 41, 42, 43], "closest": [1, 2, 3, 5, 6, 8, 9, 11, 12, 32, 33, 36, 37, 38, 41, 44], "closest_neighbor": 2, "cloud": [0, 1, 21, 30, 31, 40], "cloud_with": 38, "cloud_with_rem": 38, "cloud_without": 38, "cloud_without_rem": 38, "cluster": [3, 5, 7, 8, 13, 36], "clusterdetector": 1, "cmap": [31, 32, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44], "code": [2, 29, 34], "col": [32, 33], "collect": 10, "color": [31, 32, 40, 42, 43, 44], "column": [2, 3, 4, 31, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44], "com": 25, "come": [33, 35, 36, 42, 43], "command": 27, "commun": [16, 24], "compar": [5, 31, 33, 35, 36, 37, 38, 40, 41], "comparison": [8, 10, 31, 32, 33, 34, 38, 40], "complet": [1, 35], "complex": [2, 3, 4, 5, 6, 8, 10, 11, 13, 21, 41], "compound": 33, "comput": [3, 12, 25, 31, 40], "computation": 31, "concentr": [33, 34, 39], "concept": [34, 38, 42, 43, 44], "conda": 29, "condition": 32, "cone": 31, "configur": 27, "consid": [10, 12, 35, 38, 42, 43], "consider": 33, "consist": 41, "constant": [32, 37, 40], "contain": 38, "contribut": 18, "contributor": 14, "control": [6, 31, 32, 34, 36, 37, 41], "conveni": [42, 43, 44], "convolve2d": 32, "coo_matrix": 32, "coordin": [2, 4, 5, 6, 8, 9, 10, 11, 13, 31, 32, 34, 36, 42, 43, 44], "copernicu": 38, "copi": [10, 33, 38, 44], "copper": 33, "core": [0, 3, 9, 21, 22], "correct": [25, 31, 38], "correl": [10, 12, 24, 31, 32, 37], "could": [8, 10, 12, 13, 24, 31, 36, 37, 38, 42, 43, 44], "count": [10, 35, 36, 38, 40, 42, 43, 44], "counti": [24, 40, 41, 42, 43, 44], "countri": [24, 33], "cours": 17, "covari": [0, 1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41], "covariance_fn": 1, "covariogram": 10, "cover": [1, 31, 36, 38], "coviari": [10, 31], "covid": 24, "cr": [2, 3, 31, 35, 36, 37, 38, 40, 44], "cran": 33, "creat": [4, 5, 9, 10, 11, 12, 13, 24, 25, 27, 31, 33, 37, 40, 41, 42, 43], "creation": [3, 5, 7, 8, 13], "crete": 32, "crime": 28, "cross": [0, 34], "cross_valid": 5, "csv": [9, 31, 33, 35, 36, 37, 38, 39], "cubic": [9, 11, 12, 31, 32], "cubic_model": 31, "current": 9, "current_deviation_decreas": 9, "current_ratio": 9, "curv": [11, 12, 32, 33], "custom": [10, 31], "custom_bin": [10, 11, 31], "custom_weight": [9, 10, 11, 31], "cv": 10, "cvc": 35, "d": [2, 3, 4, 7, 9, 10, 11, 12, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "d9f0d3": 32, "d_": 37, "danger": 31, "danych": 28, "dark": 34, "darker": 34, "dash": 31, "dask": [1, 3], "data": [0, 1, 3, 6, 7, 8, 9, 10, 11, 12, 13, 17, 21, 24, 28, 29, 32, 33, 34, 35, 36, 37], "data_cr": [3, 44], "datafram": [2, 4, 10, 31, 36, 39, 42, 43], "dataset": [1, 2, 3, 5, 7, 8, 10, 13, 24, 26, 28, 32, 33, 34, 36, 38, 39, 40, 41, 42, 43, 44], "date": [31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "dcv": 9, "deal": [31, 35, 44], "debug": [9, 36], "decid": [2, 32, 33], "decis": [1, 24, 34, 38, 42, 43], "deconvolut": [0, 1, 2, 10, 21, 24, 25, 41, 42, 43, 44], "decreas": [6, 9, 31, 37, 41], "def": 32, "default": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 31, 34, 36, 41, 42, 43], "defin": [9, 31, 32, 39, 40, 44], "define_whitening_matrix": 1, "definit": [32, 34], "degre": [3, 8, 9, 10, 11, 13, 31, 36], "deliv": 36, "dem": [3, 8, 11, 29, 31, 35, 36, 37, 38], "dem_fil": 31, "dem_geometri": [31, 35, 36, 37, 38], "denois": 43, "denomin": [10, 37, 40], "dens": [5, 9, 11, 12, 35, 40, 41, 42, 43], "densiti": [24, 35], "depend": [1, 9, 12, 18, 30, 31, 32, 34, 35, 36, 41], "deriv": [8, 9, 11, 12, 31, 35, 36], "describ": [2, 9, 10, 11, 23, 31, 34, 35, 36, 38, 41, 42, 43], "descript": [12, 31, 33], "design": 2, "desir": 42, "detail": [4, 34], "detect": [10, 38], "determin": [38, 42, 43], "detrend": 8, "deutsch": [10, 25], "dev": [9, 22, 27], "develop": [22, 24, 37], "deviat": [0, 1, 10, 35, 38, 41, 42, 43], "deviation_direct": 9, "deviation_weight": [11, 12], "df": [31, 33, 34, 35, 36, 37, 38, 39], "dfc27d": 38, "dict": [2, 7, 8, 9, 10, 11, 12, 13, 31], "dict_kei": [2, 8, 10], "dict_represent": 31, "dictionari": [2, 8, 10, 11, 12, 13, 31], "did": 31, "didn": [9, 40], "differ": [5, 8, 9, 10, 12, 31, 32, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44], "digit": [31, 36, 38], "dim": 13, "dimens": [6, 13], "dimension": [6, 32], "diminish": 37, "dir_neighbors_selection_method": [31, 34, 39], "dir_var": 34, "direct": [0, 1, 2, 8, 9, 11, 12, 13, 30, 31, 35, 36], "directional_covari": 1, "directional_covariogram": 1, "directional_point_cloud": 1, "directional_semivariance_cloud": 1, "directional_semivariogram": 1, "directional_variogram": 10, "directional_weighted_semivari": 1, "directionalvariogram": [10, 34, 39], "directli": [31, 33, 35, 36, 38, 42, 43], "directori": 23, "dirvar": 39, "disaggreg": [17, 24], "disappoint": 32, "discord": [16, 40], "discret": 34, "diseas": [17, 24], "dispers": [35, 40, 42, 43], "dissimilar": [10, 12, 31], "distanc": [0, 2, 3, 5, 7, 8, 9, 10, 11, 12, 21, 24, 31, 32, 34, 35, 36, 37, 38, 41], "distances_between_block": 9, "distances_between_neighbor": 2, "distances_between_point_support": 2, "distances_between_representative_point": 2, "distant": [5, 9, 10, 11, 12, 35, 36, 37, 38, 40, 41], "distinguish": 39, "distribut": [10, 27, 33, 35, 36, 39, 41, 42, 43, 44], "diverg": [42, 43], "divid": [9, 34, 35, 36, 37, 38, 40, 41, 44], "divis": [9, 38, 42, 43], "do": [2, 3, 5, 7, 8, 13, 24, 31, 34, 36, 40, 41, 42, 43], "document": [1, 20, 24, 35], "doe": [5, 27, 31, 36, 38, 41], "doesn": [1, 3, 37, 38], "doi": [11, 24, 26], "domain": [31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "don": [3, 5, 7, 8, 13, 31, 32, 36, 37, 40], "done": [31, 40], "dordrecht": 10, "down": [35, 36, 38, 41], "downsid": 35, "downward": 41, "dozen": [36, 42, 43], "draw": [42, 43], "drawback": 37, "drift": 35, "driven": 36, "drop": 10, "drop_lags_without_pair": 10, "dropped_point": 2, "dt": 41, "dtype": [2, 3, 4, 5, 6, 8, 10, 11, 13, 35, 36, 38], "dubroca": 10, "due": [1, 2, 41], "dump": 13, "duplic": 36, "durbec": 10, "dure": [1, 2, 8, 9, 41, 42, 43], "dv": 9, "e": [2, 9, 10, 11, 12, 13, 25, 31, 33, 34, 39, 40, 42, 43, 44], "e7d4e8": [31, 32], "e_": 5, "each": [2, 5, 6, 8, 9, 10, 11, 24, 29, 31, 33, 34, 36, 38, 40, 41, 42, 43, 44], "earlier": 35, "earth": [11, 17], "easiest": 31, "easili": [31, 35], "east": [10, 36, 39], "eastern": 36, "ecolog": 10, "ecologi": [10, 41], "econom": [17, 28], "edg": 34, "edgecolor": [40, 44], "edit": 10, "editor": 15, "educ": 17, "edzer": [33, 39], "effect": [32, 34, 37], "effort": 10, "eg": 2, "element": 9, "eleph": 35, "elev": [31, 36, 38], "ellips": [9, 10, 11, 13, 34], "ellipt": [9, 10, 11, 13, 34], "els": 40, "emphas": 37, "empir": [10, 12], "empirical_smv": [10, 12], "empti": [31, 36, 39], "en": [5, 25], "encount": [27, 35], "end": [39, 41, 44], "enthusiast": 34, "entir": 36, "enumer": 40, "env": 27, "environ": 27, "epidemiologi": [40, 41], "epsg": [2, 31, 35, 36, 37, 38], "equal": [5, 6, 9, 10, 11, 12, 13, 31, 35, 36, 40, 41], "equat": [5, 10], "equidist": 9, "eras": 42, "err": [3, 5, 39, 44], "err_to_nan": 7, "error": [1, 3, 4, 5, 7, 8, 9, 11, 12, 13, 29, 31, 32, 36, 37, 38, 39, 40, 41, 42, 43], "error_estim": [11, 12, 31], "errs_col": 40, "esa": 17, "especi": [10, 38, 40, 41, 44], "essenti": [35, 36, 41], "est": [3, 44], "estim": [2, 3, 5, 6, 8, 9, 11, 12, 13, 31, 33, 34, 36, 37, 38, 41, 42, 43], "etc": [36, 40], "ethem": 15, "ethmtrgt": 15, "euclidean": 4, "eur": 25, "evalu": [0, 12, 21], "even": [31, 32, 36, 37, 39, 40, 42, 43], "event": 33, "everi": [10, 31, 33, 34], "everyth": 34, "exact": 36, "examin": 32, "exampl": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 24, 31, 34, 35, 38, 39, 40, 42, 43, 44], "excel": [35, 38], "except": 41, "excit": 32, "exclud": 33, "exercis": 31, "exist": [12, 33, 38, 40], "exp_ind": 11, "exp_model": 40, "exp_semivar": 41, "exp_var": [33, 34, 35, 36, 37], "exp_variogram": [3, 8], "expect": [5, 8, 31, 41], "expected_valu": 8, "experi": [32, 36, 38, 41, 42, 43], "experimanet": 11, "experiment": [0, 1, 2, 3, 7, 8, 9, 11, 12, 21, 29, 33, 36, 37, 38, 39, 40, 41, 42, 43, 44], "experimental_block_semivari": 9, "experimental_indicator_variogram": [8, 11], "experimental_model": 11, "experimental_point_cloud": 10, "experimental_semivari": [10, 12, 35, 40], "experimental_semivariogram": 29, "experimental_variogram": [3, 5, 7, 9, 11, 12, 29, 31, 32, 33, 36, 37, 38, 39, 40], "experimentalfeaturewarn": 1, "experimentalindicatorvariogram": [8, 11], "experimentalvariogram": [2, 3, 4, 5, 7, 8, 9, 10, 12, 31, 34, 35, 36, 37, 38], "experimentalvariogrammodel": 1, "expert": 24, "explain": [31, 33], "explor": [30, 34, 35], "exponenti": [9, 11, 12, 31, 32], "exponential_model": 31, "export": [9, 12], "export_model": 9, "export_model_to_json": [9, 41], "extend": 33, "extent": [12, 34], "extern": [8, 33], "extrem": [35, 37, 40], "ey": 32, "f": [12, 31, 33, 37, 40], "face": 1, "fact": [38, 43], "factor": [5, 10, 40], "fall": [2, 34, 42], "fals": [2, 3, 5, 7, 8, 9, 10, 11, 12, 31, 32, 34, 35, 36, 37, 38, 39, 42, 43, 44], "familiar": 34, "far": 36, "fast": [34, 42], "faster": [6, 37, 42], "fb": 5, "featur": [8, 34, 40], "fed": 36, "feel": 31, "few": [10, 31, 32, 35, 36, 40, 41, 42, 43], "fewer": 36, "field": [12, 33], "fig": [38, 39, 40], "figsiz": [31, 32, 34, 38, 39, 40, 42, 43, 44], "figur": [10, 31, 32, 35, 36, 38], "file": [1, 9, 12, 22, 27, 31, 40], "filenam": [2, 3, 4, 7, 9], "fill": [31, 36], "filter": [1, 3, 32, 38], "filter_block": [1, 3], "fin": 10, "final": [9, 10, 32, 36, 38, 44], "final_regularized_variogram": 9, "final_theoretical_model": 9, "find": [2, 11, 12, 31, 33, 35, 38, 41], "fip": [2, 3, 4, 7, 9, 40, 41, 42, 43, 44], "first": [9, 10, 11, 12, 31, 32, 33, 34, 35, 36, 38, 40, 41, 44], "fit": [3, 5, 7, 8, 9, 11, 12, 25, 29, 33, 35, 38, 41, 42, 43], "fit_bia": 8, "fit_transform": [9, 41], "fit_trend": 8, "fitted_regression_model": 8, "fitted_valu": 12, "five": [10, 31, 39, 42, 43], "fix": [10, 11, 12, 31], "flag": 33, "flat": 31, "flatten": 31, "float": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 31, 32, 34, 35, 41], "float64": [35, 36, 38], "flow": 29, "fly": 2, "fname": [9, 12], "focus": 31, "folder": 39, "follow": [10, 31, 33, 41, 42, 43, 44], "forc": [5, 31, 40], "forecast": [5, 11, 12, 31, 42, 43], "forecast_bia": [5, 42, 43], "forg": [27, 29], "forget": 41, "form": [9, 32, 36, 37], "format": 33, "fortran": 25, "four": [10, 33, 36, 37, 38], "frac": [5, 9, 33, 37], "fraction": [11, 12, 31, 34, 40], "frame": [2, 40], "frequenc": [39, 42, 43], "fresh": 27, "from": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 21, 22, 24, 27, 28, 29, 31, 32, 33, 34, 36, 37, 39, 40, 41, 42, 43, 44], "from_dict": [12, 31], "from_ellips": 1, "from_ellipse_cloud": 1, "from_json": [12, 31, 42, 43, 44], "from_triangl": 1, "from_triangle_cloud": 1, "from_user_input": 2, "full": [5, 29, 31, 39], "fulli": 36, "function": [2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 21, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "further": [5, 9, 11, 12, 37, 38, 39], "futur": 1, "g": [2, 10, 31, 40, 42, 43, 44], "g_w": 10, "gain": 38, "gallach": 15, "gamma": 9, "gamma_": 9, "gamma_h": 9, "gamma_v": 9, "gaussian": [9, 11, 12, 31, 32], "gaussian_model": 31, "gb": 25, "gcc": 27, "gdf_pt": 40, "gener": [11, 28, 32, 35, 36, 37, 38, 41, 42, 43], "generate_logistic_map": 32, "geodatafram": [2, 3, 31, 35, 36, 37, 38, 39, 40, 42, 43, 44], "geograph": [9, 25, 31, 36, 39, 41], "geographi": 17, "geologi": [9, 25, 41], "geologist": 24, "geometri": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "geometry_col": [40, 41, 42, 43, 44], "geometry_column_nam": [2, 3, 4, 7, 9, 41, 42, 43, 44], "geometryarrai": 8, "geopackag": [40, 44], "geopanda": [1, 2, 3, 4, 7, 8, 9, 27, 29, 31, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "geoscienc": 25, "geoseri": [8, 31], "geostatist": [5, 10, 25, 28, 31, 32], "geostatystyk\u0105": 28, "get": [2, 3, 10, 24, 27, 28, 31, 32, 33, 34, 35, 36, 38, 39, 40, 42, 43, 44], "get_aggregated_point_support_valu": 1, "get_areal_centroids_from_agg": 1, "get_areal_values_from_agg": 1, "get_blocks_valu": 2, "get_current_and_previous_lag": 1, "get_distances_between_known_block": 2, "get_distances_within_unknown": 1, "get_expected_valu": 8, "get_expected_values_map": 8, "get_indicator_map": 8, "get_lag": 1, "get_point_to_block_index": 2, "get_points_arrai": [2, 41], "get_study_max_rang": 1, "get_triangle_edg": 1, "get_weighted_dist": 2, "gi": [24, 25], "gist_earth": [31, 35, 36, 37, 38], "github": 35, "give": [38, 40, 43], "given": [2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 31, 34, 36, 40], "global": 36, "go": [34, 35, 36, 37, 38, 41], "goe": [35, 41], "good": [10, 31, 34, 36, 40, 41, 42, 43, 44], "goovaert": [9, 11, 25, 41], "gorz\u00f3w": 31, "gpd": [2, 3, 4, 7, 8, 9, 29, 31, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "gpkg": [2, 3, 4, 7, 8, 9, 29, 34, 40, 41, 42, 43, 44], "gradual": 34, "graph": 35, "great": 32, "greater": [3, 5, 8, 10, 11, 12, 13, 31, 33, 35, 36, 37, 38, 39, 40], "green": 34, "grid": [2, 33, 39, 40, 44], "group": [9, 10, 11, 12, 22, 23, 31, 35, 38, 42, 43], "groupbi": 36, "grow": 31, "gstat": [33, 39], "gt": [37, 39, 42, 43, 44], "guess": [32, 35, 37], "guid": 34, "guinet": 10, "h": [9, 10, 34], "ha": [1, 5, 8, 9, 12, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "hack": 40, "half": [12, 34], "hand": [33, 37], "handi": 38, "handl": 1, "hashabl": [2, 7], "hasn": 9, "have": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 27, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "haven": 27, "he": 35, "head": [4, 31, 33, 34, 36, 39, 40, 41, 42, 43, 44], "headach": 35, "health": 10, "heavili": [1, 2, 35, 38, 42, 43], "height": 13, "help": 31, "here": [5, 23, 25, 31, 32, 35], "heterogen": 10, "hexagon": 42, "high": [21, 35, 37, 38, 40, 42, 43], "higher": [5, 35, 37], "hist": [39, 42, 43], "histogram": [39, 42, 43], "hope": 32, "horizont": [35, 38], "how": [3, 5, 8, 9, 11, 12, 24, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43], "howev": [41, 42, 43], "html": 3, "http": [3, 5, 11, 24, 25, 26, 33], "huge": [42, 43], "hugoledoux": 15, "hundr": [33, 36], "hyperparamet": [31, 37], "i": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 23, 24, 27, 28, 29, 31, 32, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44], "id": [2, 3, 7, 9, 40, 42, 43, 44], "idea": [3, 10, 31, 34, 36, 38, 40, 41, 42, 43, 44], "ideal": [42, 43], "idw": [0, 21], "idw_pow": 37, "idw_pr": 37, "idw_rms": 37, "idx": 40, "ignor": [10, 36], "iguzquiza": 25, "ik": 11, "ikei": 40, "ikrig": 8, "iloc": 36, "imag": 32, "imagin": 36, "imap": 8, "implement": [10, 31], "import": [2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 29, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "importantli": [35, 42, 43], "impress": 38, "improv": 41, "imshow": 32, "in_cr": 31, "inaccur": 36, "inani": 15, "inblock": [2, 9], "inblock_semivari": [1, 9], "incid": [41, 42, 43], "includ": [10, 11, 33, 44], "increas": [3, 8, 9, 31, 36, 41], "independ": 41, "index": [2, 3, 4, 7, 9, 11, 12, 30, 36, 37, 38, 41], "index_column_nam": [2, 3, 4, 7, 9, 40, 41, 42, 43, 44], "indexcolnotuniqueerror": 1, "indic": [0, 1, 2, 10, 12, 24, 28, 33, 35, 38, 40, 42, 43], "indicator_map": 8, "indicator_predict": 8, "indicator_variogram": 8, "indicatorkrig": 8, "indicatorvariogram": [1, 8], "indicatorvariogramdata": 11, "individu": 38, "industri": 41, "inf": [31, 33], "infect": [24, 40, 44], "influenc": [6, 10, 24, 33, 37, 38], "info": 9, "inform": [2, 33, 35, 36, 41, 42, 43], "inhabit": 40, "initi": [2, 8, 9, 11, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 44], "initial_devi": 9, "initial_ratio": 32, "initial_regularized_model": 9, "inplac": [2, 10, 34, 35, 36, 37, 38, 40], "input": [2, 8, 31, 36, 38], "input_data": 13, "insight": [35, 38, 42, 43], "inspect": [38, 40], "instal": [22, 31, 32], "instanc": [2, 10, 31], "instead": [1, 2, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42], "int": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 31, 32, 36, 37, 38], "intend": 13, "intens": 31, "interest": [41, 42, 43], "intermedi": 21, "intern": [21, 35, 41], "interp": [3, 8], "interpol": [3, 5, 7, 8, 13, 17, 21, 24, 26, 28, 29, 31, 36, 37, 38, 42, 43], "interpolate_point": [1, 3, 38, 39, 40], "interpolate_points_dask": [1, 3], "interpolate_rast": 13, "interpolation_results_areal_to_point": 40, "interpret": 5, "interquartil": 35, "interv": [33, 34], "introduc": [1, 24, 36, 42], "invalid": 35, "invers": [0, 21, 24, 36, 37, 41], "inverse_distance_weight": [6, 37], "investig": 38, "invok": [10, 12, 35], "iowa": [12, 33], "ipykernel_21822": 39, "iqr": [10, 35, 40], "iqr_lower_limit": [10, 35, 40], "iqr_upper_limit": [10, 35, 40], "irregular": [9, 25, 41, 42, 43], "irregularli": 41, "is_covari": [10, 31], "is_fit": 9, "is_semivari": [10, 31], "is_transform": 9, "is_weighted_by_point_support": 7, "isin": [36, 37, 38], "iso": [10, 39], "isotrop": [10, 11, 12, 39], "issu": [1, 20], "item": 37, "iter": [2, 6, 9, 12, 38, 41, 42, 43, 44], "its": [2, 12, 31, 32, 34, 37, 42], "j": [2, 9, 11, 12, 33], "join": [2, 16, 41], "joss": [24, 26, 28], "journal": [12, 24, 26, 33], "jp": 10, "json": [12, 13, 31, 41, 42, 43, 44], "jump": 32, "june": 24, "just": [33, 40, 41], "k": 36, "karlen": [12, 33], "kei": [2, 8, 10, 13], "kenohori": 15, "kernel": 35, "keyerror": [9, 12], "kilomet": 33, "kind": [5, 8, 10, 24, 35, 38, 39, 42, 43], "kluwer": 10, "know": [3, 5, 7, 8, 13, 24, 31, 32, 33, 36, 41, 42, 43], "knowledg": [32, 38], "known": [2, 3, 5, 6, 8, 13, 18, 36, 37], "known_geometri": [3, 6, 8, 13, 36, 37, 38, 39, 40], "known_loc": [3, 6, 8, 13, 29, 36, 37, 38, 39, 40], "known_point": [6, 8], "known_valu": [3, 6, 8, 13, 36, 37, 38, 39, 40], "konopka": [12, 33], "krige": [0, 1, 5, 9, 10, 11, 13, 21, 24, 25, 28, 30, 31, 33, 35, 41], "kriged_result": 39, "kriging_pr": 37, "kriging_rms": 37, "kriging_typ": [3, 8], "krigingobject": 1, "kurtosi": [10, 35], "l": [10, 12, 33], "lack": 2, "lag": [5, 9, 10, 11, 12, 31, 32, 34, 36, 38, 40, 41], "lag_dist": 5, "lag_numb": 10, "lag_points_distribut": 5, "lakshaya": 15, "lakshayainani": 15, "lambda": 37, "lambda_": 37, "land": 38, "larg": [1, 3, 4, 5, 8, 12, 32, 35, 36, 37, 40, 41, 42, 43], "larger": [6, 12, 13, 31, 32, 34, 38], "largest": [2, 10, 38, 40], "last": [11, 12, 24, 27, 31, 32, 33, 35, 40, 42, 43, 44], "lat": [2, 3, 8, 29, 40, 41, 42, 43], "lat_col": 31, "lat_col_nam": [2, 4], "later": [35, 38], "latitud": [2, 3, 4, 8, 31, 35, 36, 37, 38], "law": [10, 33], "layer": [2, 3, 4, 7, 9, 34, 40, 41, 42, 43, 44], "layer_nam": [2, 3, 4, 7, 9], "lead": [3, 5, 7, 8, 13, 32, 33, 39], "leak": 36, "learn": [9, 24, 32, 33, 34, 36, 37, 38, 39, 40, 41], "least": [25, 35], "leav": [2, 31, 33, 34, 36, 41, 44], "left": [10, 35], "left_on": [42, 43], "legend": [31, 32, 34, 35, 36, 37, 38, 40, 42, 43, 44], "len": [6, 11, 31, 36, 37, 38, 40], "length": [2, 3, 5, 6, 8, 10, 11, 13, 32, 34], "less": [6, 10, 40, 41], "lesson": 32, "let": [10, 31, 32, 34, 36, 38, 39, 40, 42, 43], "leuangthong": 10, "level": [9, 10, 12, 21, 24, 33, 35, 38], "li": 31, "librari": [24, 27], "libspatialindex": 27, "libtiff": 27, "like": [2, 23, 31, 36, 40], "lim": 15, "limit": [5, 6, 8, 9, 12, 32, 33, 35, 36], "limit_deviation_ratio": 9, "line": [9, 10, 11, 13, 27, 31, 34, 35, 38], "linear": [5, 8, 9, 11, 12, 25, 31, 32, 34, 36, 37, 38], "linear_model": 31, "link": 33, "list": [1, 2, 6, 8, 9, 10, 11, 12, 22, 31, 36, 38], "literatur": 31, "live": 40, "ll": 37, "load": [5, 10, 35, 36, 37, 38, 40], "loc": [6, 35, 36, 37, 38], "local": 11, "locat": [3, 6, 7, 8, 10, 13, 37, 42, 43], "log": [9, 33, 39], "log_process": 9, "logarithm": 33, "logist": 32, "logistic_map": 32, "lon": [2, 3, 8, 29, 40, 41, 42, 43], "lon_col": 31, "lon_col_nam": [2, 4], "long": [27, 34, 35, 41, 42, 43, 44], "longer": 34, "longitud": [2, 3, 4, 8, 31, 35, 36, 37, 38], "look": [3, 31, 32, 33, 34, 35, 36, 38, 42, 43], "lot": 35, "low": [32, 33, 35, 37, 38, 40, 41, 42, 43], "lower": [9, 10, 12, 31, 33, 35, 38, 42, 43], "lowest": [9, 10, 31, 32, 35, 38], "lowest_rms": 31, "lt": [36, 37, 38, 39, 40, 41, 42, 43, 44], "lunch": 41, "lyme": 17, "m": [4, 10, 12, 25, 32, 33, 35], "machin": [24, 34, 36], "maco": 27, "mad": 40, "mae": [5, 11, 12, 31], "mai": [4, 8, 24, 27, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "main": [10, 41], "major": [9, 10, 11, 13, 34], "make": [3, 24, 32, 33, 34, 36], "manag": [33, 41], "mani": [3, 8, 9, 11, 12, 25, 31, 35, 36, 41, 42, 43, 44], "manual": [37, 38, 40], "map": [8, 9, 24, 31, 32, 34, 39, 40, 42, 43, 44], "marker": 34, "markers": [34, 44], "materi": 24, "mathemat": [9, 25, 41], "matplotlib": [31, 32, 34, 36, 38, 39, 40], "matrix": [3, 4, 5, 7, 8, 13, 32], "max": [10, 13, 35, 36, 38, 42, 43], "max_it": [9, 41], "max_no": 35, "max_nugget": [11, 12, 31, 33], "max_rang": [3, 5, 7, 8, 9, 10, 11, 12, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41], "max_sil": [11, 12, 31], "max_tick": [3, 8, 36, 39], "max_width": 35, "maxim": [9, 38, 41], "maximum": [2, 3, 5, 7, 8, 9, 10, 11, 12, 31, 32, 34, 35, 36, 41], "maximum_point_rang": 41, "maximum_rang": [40, 41], "md": 23, "mean": [5, 6, 8, 9, 10, 11, 12, 27, 31, 32, 35, 36, 37, 38, 39, 40, 41, 42, 43], "mean_absolute_error": 5, "mean_dir_pr": 39, "mean_directional_result": 39, "mean_filt": 32, "mean_relative_differ": 1, "meaning": 41, "measur": [5, 8, 10, 24, 26, 28, 33, 35, 36, 42, 43], "mec": [31, 32], "median": [10, 35, 38, 40, 42, 43], "mediterranean": 10, "memori": 4, "merg": [41, 42, 43], "messag": 27, "messi": 31, "meter": [31, 34, 36, 37, 38], "method": [1, 2, 3, 5, 8, 9, 10, 11, 12, 29, 31, 34, 35, 36, 38, 40, 41, 42, 44], "metric": [0, 4, 31, 32, 35, 36, 37, 38], "metricstypeselectionerror": [1, 12], "meus": [33, 39], "meuse_fil": [33, 39], "meuse_grid": 39, "meuse_grid_fil": 39, "middl": [35, 38], "might": [1, 12, 27, 31, 33, 34, 35, 36, 38, 40, 44], "mile": 33, "min": [10, 13, 35, 36, 38, 42, 43], "min_deviation_decreas": 9, "min_deviation_ratio": 9, "min_nugget": [11, 12, 31], "min_rang": [11, 12, 31], "min_sil": [11, 12, 31], "mine": 41, "minim": [9, 10, 11, 12, 31], "minimum": [3, 7, 9, 10, 11, 12, 32, 35], "minimum_deviation_decreas": 9, "minor": [9, 10, 11, 13, 34, 38], "minu": 9, "mirror": 31, "mislead": [42, 43], "miss": [8, 29, 31, 36, 40, 43], "mix": 38, "ml": 44, "mode": [35, 39], "model": [0, 1, 3, 7, 8, 9, 10, 11, 12, 13, 21, 24, 25, 28, 30, 33, 34, 35, 37, 41], "model_error": 12, "model_from_dict": 31, "model_from_json": 31, "model_nam": [31, 39], "model_param": 12, "model_paramet": 12, "model_rms": 31, "model_typ": 12, "models_group": [5, 9, 11, 12, 29, 31, 32, 33, 36, 37, 38, 39, 41], "moder": [12, 33], "modifi": 2, "modul": 21, "moli\u0144ski": [15, 24, 26, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "monei": 31, "monestiez": 10, "monitor": [1, 9, 35, 38], "moorman": [12, 33], "more": [4, 5, 6, 8, 9, 12, 24, 28, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44], "moreov": [31, 32], "most": [1, 5, 31, 32, 33, 34, 36, 37, 38, 40, 41, 42, 43], "mostli": [31, 33, 36, 38], "mountain": 36, "move": [36, 41], "mrd": 9, "msg": 31, "much": [34, 36, 37, 42], "multimod": 35, "multipl": [1, 2, 5, 8, 9, 11, 12, 29, 31, 32, 33, 34, 36, 38, 40, 41, 42, 43], "multipli": [12, 40], "multipolygon": [2, 40, 41, 43], "multivariateregress": 8, "must": [2, 3, 4, 5, 6, 8, 9, 10, 11, 13, 31, 32, 33, 34, 36, 37, 40, 41, 42, 43], "mxn": 4, "n": [3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 27, 32, 33, 34, 35, 36, 37, 38, 39, 40], "n_lag": 35, "n_sill_valu": [11, 12], "name": [2, 4, 5, 9, 11, 12, 27, 31, 32, 35, 36, 38, 39, 40], "nan": [7, 36, 42, 43, 44], "nanmean": 39, "ncol": [38, 39, 40], "ndarrai": [2, 3, 4, 5, 8, 9, 10, 12, 32], "ndarray_pydant": 1, "ne": [9, 10, 11, 13, 34, 39], "ne_sw_direct": 34, "need": [10, 31, 32, 35, 36, 42, 44], "neg": [3, 5, 7, 12, 25, 32, 35, 42, 43], "neglig": [10, 31], "neighbor": [2, 3, 5, 6, 7, 8, 9, 10, 24, 31, 33, 34, 36, 37, 40, 42, 43, 44], "neighborhood": [33, 36], "neighbors_numb": 36, "neighbors_rang": [3, 5, 7, 8, 36, 40, 42, 43], "neighbour": [2, 3, 6, 7], "netherland": 10, "network": 14, "never": 31, "new": [6, 10, 31, 35, 36, 40], "new_val": 32, "next": [31, 33, 36, 38, 41], "ningchuan": 25, "nn": 36, "no_closest_neighbor": 2, "no_neighbor": [3, 5, 6, 8, 29, 36, 37, 39, 40], "no_possible_neighbor": 2, "nois": [36, 38], "non": [10, 11, 31, 33, 35], "none": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 31, 33, 36], "normal": [9, 31, 33, 35, 39, 41], "north": [10, 39], "northeastern": [10, 40, 41, 42, 43, 44], "northwestern": 10, "note": [2, 4, 5, 9, 10, 33, 34, 35, 36, 38, 42, 43], "notebook": [34, 40], "noth": 12, "novak": [12, 33], "now": [1, 27, 31, 35, 36, 37, 38, 40, 41, 43], "np": [2, 3, 5, 6, 8, 9, 10, 11, 12, 13, 31, 32, 33, 35, 36, 37, 38, 39, 40, 42, 43, 44], "npy": 10, "nrow": [38, 39, 40], "ns_direct": 34, "nthe": 31, "nugget": [5, 9, 11, 12, 29, 31, 32, 33, 36, 38, 39, 40, 41], "number": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 32, 35, 36, 37, 38, 40, 42, 43, 44], "number_of_lag": 40, "number_of_neighbor": [2, 3, 5, 7, 8, 13, 37, 42, 43, 44], "number_of_neighbour": 6, "number_of_nugget": [11, 12, 31], "number_of_rang": [11, 12, 31], "number_of_sil": [11, 12, 31], "number_of_threshold": [8, 11], "number_of_tri": 36, "number_of_work": [3, 8], "numer": 33, "numpi": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44], "nw": [9, 10, 11, 13, 34, 39], "nw_se_direct": 34, "o": [1, 2, 3, 4, 7, 9, 10, 31, 32], "object": [2, 3, 9, 10, 31, 33, 35, 40, 41, 44], "oblig": 31, "observ": [2, 3, 5, 6, 8, 10, 11, 12, 13, 17, 24, 31, 32, 34, 35, 36, 40, 41], "obtain": [37, 40], "occur": 41, "offici": 1, "ok": [5, 8], "ok_interpol": 36, "ol": [3, 5, 7, 8, 13, 31, 36], "old": [1, 2], "omnidirect": [9, 10, 11, 13, 34], "omnidirectional_covari": 1, "omnidirectional_covariogram": 1, "omnidirectional_point_cloud": 1, "omnidirectional_semivari": 1, "omnidirectional_variogram": 1, "omnidirectional_variogram_cloud": 1, "onc": [6, 9, 34], "one": [8, 10, 13, 33, 34, 35, 36, 38, 40, 41, 42, 43], "ones": 32, "ongo": 40, "onli": [3, 8, 9, 10, 11, 12, 31, 32, 34, 35, 36, 38, 40, 42, 43], "open": [24, 26], "oper": [1, 3, 9, 27, 41], "opinion": [32, 34], "opportun": 37, "opposit": 41, "opt_dev": 9, "optim": [1, 9, 11, 12, 31, 32, 33, 34, 41], "optimal_devi": 9, "optimal_model": 33, "option": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 31, 33, 36], "orang": 35, "order": [2, 10, 33, 38], "ordinari": [0, 1, 5, 13, 21, 24, 25, 28, 30, 38, 42, 43, 44], "ordinary_krig": [1, 8, 29, 36, 37, 40, 42, 43, 44], "org": [3, 5, 11, 24, 26, 33], "origin": [9, 10, 11, 13, 34, 41], "oscil": [32, 41], "other": [1, 2, 4, 9, 10, 24, 28, 31, 32, 33, 34, 35, 36, 37, 38, 40, 42, 43, 44], "other_block": 2, "otherwis": [2, 11, 13, 36], "our": [5, 10, 16, 31, 32, 33, 34, 35, 36, 37, 38, 40, 42, 43, 44], "out_cr": 31, "outcom": [35, 38], "outlier": [10, 30, 42, 43], "output": [8, 10, 31, 32, 35, 40, 41, 42, 43, 44], "over": [5, 8, 10, 31, 32, 36, 38, 39, 40, 41, 42, 43, 44], "overcom": [24, 42, 43], "overestim": [5, 12, 42, 43], "overfit": 31, "overlap": 2, "overview": 21, "overwrit": [10, 12, 35], "overwritten": 12, "own": [32, 42], "p": [2, 3, 4, 5, 7, 9, 10, 11, 12, 25, 31, 32, 33, 37, 40, 41], "p_": [5, 9], "packag": [1, 8, 18, 22, 24, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "page": 32, "pair": [2, 5, 9, 10, 11, 12, 31, 32, 35, 38, 41], "panda": [1, 2, 3, 8, 31, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "param": 13, "paramet": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44], "parameter": 12, "parametr": 11, "pardo": 25, "parkin": [12, 33], "parse_kriging_input": 1, "parse_point_support_distances_arrai": 1, "part": [32, 35, 36, 38, 40, 41, 42, 43], "partial": [11, 12, 31], "partial_sil": 31, "particular": [42, 43], "pass": [2, 11, 12, 31, 33, 36, 37, 40, 44], "path": 32, "pattern": [38, 40, 42, 43], "pcol1": 40, "pcol2": 40, "pd": [2, 3, 4, 8, 31, 33, 35, 36, 37, 38, 39, 42, 43], "pdf": 33, "pebesma": [33, 39], "penal": [5, 41], "peopl": 24, "per": [5, 9, 35, 36, 38, 40, 44], "percent": [5, 33], "percentag": [5, 11, 12, 31, 33], "perform": [2, 5, 7, 8, 9, 12, 31, 34, 36, 38, 39, 40, 41, 42, 43, 44], "phenomenon": 33, "physalu": 10, "pick": [34, 42, 43], "pictur": 34, "piec": [42, 43], "pipelin": [0, 1, 21, 31, 35], "pivot": 36, "pixel": [13, 32, 38], "place": [9, 10, 11, 13, 34, 38, 40], "plain": 36, "plane": 34, "plasma": 44, "pleas": 24, "plot": [8, 9, 10, 11, 12, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44], "plot_devi": 9, "plot_deviation_chang": 41, "plot_experimental_bias_model": 8, "plot_theoretical_bias_model": 8, "plot_trend_surfac": 8, "plot_variogram": [9, 41], "plot_weight": 9, "plot_weights_chang": 41, "plt": [31, 32, 34, 36, 38, 39, 40], "plu": [31, 35], "pm2": 34, "pm2_5": 34, "point": [0, 1, 3, 5, 6, 9, 10, 11, 12, 13, 21, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 36, 37, 39, 41, 42, 43], "point_cloud_filt": 38, "point_cloud_semivari": 1, "point_data": 29, "point_dist": [1, 4], "point_support": [2, 3, 7, 9, 41, 42, 43, 44], "point_support_blocks_index_nam": 2, "point_support_data": [2, 3, 4, 7, 9], "point_support_to_dict": 1, "point_support_tot": 2, "points_data": 5, "points_from_xi": [31, 35, 36, 37, 38, 39], "points_geometry_column": [2, 3, 4, 7, 9, 41, 42, 43, 44], "points_to_lon_lat": 1, "points_value_column": [2, 3, 4, 7, 9, 41, 42, 43, 44], "points_variogram": 5, "pointsupport": [1, 2, 3, 4, 7, 9, 21, 41, 42, 43, 44], "pointsupportdist": 2, "poisson": [0, 1, 10, 21, 24, 28, 30, 31, 40, 41], "poland": [31, 34], "pole": 10, "polish": 31, "pollut": [17, 28, 34], "polygon": [2, 4, 7, 24, 40, 41, 42, 43], "polygon_id": [40, 41, 42, 43, 44], "polygon_lay": [40, 41, 42, 43, 44], "polygon_valu": [40, 41, 42, 43, 44], "polynomi": 32, "poorli": [40, 41, 42, 43], "pop": 2, "pop10": [2, 3, 4, 7, 9, 41, 42, 43, 44], "popul": [2, 10, 24, 35, 36, 37, 38, 40, 41, 42, 43, 44], "popular": 5, "population_lay": [41, 42, 43, 44], "posit": [5, 12, 32, 35, 40, 42, 43], "possibl": [8, 10, 12, 31, 32, 33, 34, 40], "possible_variogram": 10, "potenti": [3, 7], "power": [6, 8, 9, 11, 12, 31, 32, 36, 37, 42, 43], "power_model": 31, "pp": [5, 25], "practic": 33, "pre": [32, 40], "precis": 36, "pred": [5, 6, 39, 42, 43], "pred_col_nam": 40, "predefin": 31, "predict": [3, 5, 7, 8, 9, 12, 24, 29, 37, 38, 39, 42, 43, 44], "predicted_arrai": 5, "preds_col": 40, "prep_theo": 38, "prep_theo_no_out": 38, "prepar": [10, 11, 29, 33, 35], "prepare_pk_known_area": 1, "preprocess": 38, "presenc": [9, 25, 41], "present": [10, 32, 34, 38, 40], "preserv": 13, "previou": [32, 43], "price": 33, "primarili": 38, "print": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 29, 31, 33, 36, 37, 40, 42, 43], "privaci": 24, "privat": 1, "probabl": [24, 32, 36, 38, 40, 41, 42, 43], "problem": [27, 31, 36, 41, 42, 43], "proc": 5, "proc_no_interpol": 38, "proc_raw_interpol": 38, "proce": [31, 35, 38, 40], "procedur": [9, 41], "process": [2, 3, 5, 8, 9, 10, 12, 17, 21, 24, 31, 33, 36, 37, 38, 39, 40, 42, 43, 44], "process_mean": [8, 36], "produc": [38, 44], "product": 31, "profound": 1, "program": [11, 25, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "progress": [2, 3, 8], "progress_bar": [3, 5, 8, 36, 38], "project": [2, 3, 27, 31, 33], "pronounc": [38, 39], "properli": 27, "properti": [2, 5, 9, 12, 31, 33, 34, 35, 38, 42, 43], "proport": 37, "protect": [12, 24], "protect_from_overwrit": 12, "provid": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 24, 36, 39], "ps_block": [2, 3, 4, 7, 9], "ps_geometri": [2, 3, 4, 7, 9], "ps_layer_nam": [2, 3, 4, 7, 9], "ps_valu": [2, 3, 4, 7, 9], "pt": [36, 41], "ptp": 33, "public": [10, 33], "publicznych": 28, "publish": 10, "purpl": 34, "purpos": [13, 31, 32, 36], "put": 36, "pw": 37, "py": [35, 39], "pyinterpol": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 21, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "pyplot": [31, 32, 34, 36, 38, 39, 40], "pyproj": 2, "pyproject": [22, 27], "python": [24, 26, 27, 28, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "python3": 27, "pythonem": 28, "q": 40, "q1": [35, 38], "q2": 38, "q3": [35, 38], "qgi": 44, "qualiti": [28, 36], "quantil": 38, "quartil": [10, 35, 38, 42, 43], "question": [32, 40], "quick": 31, "quickli": 37, "quickstart": 24, "r": [12, 32, 33, 39], "r_df": 31, "radii": 34, "radiu": 41, "rais": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 31, 37], "raise_when_negative_error": [3, 7, 42, 43], "raise_when_negative_predict": [3, 7], "random": [8, 11, 33, 38, 42, 43], "randomli": [33, 36, 42, 43], "rang": [3, 5, 7, 8, 9, 11, 12, 13, 29, 31, 32, 34, 35, 36, 38, 40, 42, 43], "rare": [10, 36, 39], "raster": 0, "raster_data": 13, "raster_dict": 13, "rate": [2, 3, 4, 7, 9, 10, 24, 28, 40, 41, 42, 43, 44], "rather": [31, 38, 41], "ratio": [3, 5, 9, 11, 12, 13, 33, 42, 43], "ratio_perc": 12, "raw": [1, 38], "raw_interpol": 38, "raw_no_interpol": 38, "raw_theo": 38, "raw_theo_no_out": 38, "raw_variogram_filt": 38, "rawpoint": 1, "re": [24, 36, 37, 41, 44], "reach": 31, "read": [1, 7, 12, 29, 31, 35, 38], "read_block": 1, "read_csv": [1, 31, 33, 35, 36, 37, 38, 39], "read_fil": [2, 3, 4, 7, 8, 9, 29, 34, 40, 41, 42, 43, 44], "read_txt": 1, "readi": 40, "real": [3, 5, 8, 9, 12, 31, 32, 35, 36, 38], "real_arrai": 5, "realist": 31, "realiz": [36, 42, 43], "realli": 36, "reason": [32, 33, 38], "recal": [10, 34], "recommed": 34, "recommend": [3, 5, 7, 8, 13, 36], "record": [11, 12, 36], "rectangular": 42, "recurr": 32, "red": [33, 34, 39, 40, 44], "reduc": 33, "ref_input": 9, "refactor": 1, "refer": [2, 5, 9, 11, 12, 24, 31, 37], "reference_input": [10, 12], "reflect": 40, "reg": [3, 44], "reg_mod": 41, "reg_variogram": 9, "regard": 24, "region": [24, 42, 43, 44], "regress": 8, "regualr": 9, "regular": [1, 2, 3, 9, 21, 24, 30, 31, 40], "regular_grid_point": 40, "regularize_variogram": 9, "regularized_model": 9, "regularized_semivari": 9, "regularized_vari": 9, "regularized_variogram": [9, 41, 42, 43, 44], "rel": [5, 9, 34, 42, 43], "relat": [31, 32, 33, 36, 37, 38, 41], "releas": [1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "reliabl": 43, "rememb": [31, 37], "remot": 44, "remov": [1, 2, 8, 10, 31, 34, 36, 39], "remove_outli": [10, 35, 38, 40], "rental": 33, "rep_point": 2, "rep_points_column_nam": 2, "repeat": [42, 43], "repetit": 9, "report": [], "repres": [2, 4, 5, 31, 32, 33, 34, 35, 38, 40, 42, 43], "represent": [2, 24, 32, 35, 42, 44], "representative_point": [40, 41, 42, 43], "representative_points_arrai": [2, 3, 7], "representative_points_column_nam": 2, "representative_points_from_centroid": 2, "representative_points_from_largest_area": 2, "representative_points_from_random_sampl": 2, "reproduc": 31, "reproject": [2, 31], "reproject_flat": 31, "reps_deviation_decreas": 9, "requir": [11, 12, 18, 27, 36, 37, 40, 41, 44], "research": 5, "reshap": 32, "resist": 31, "resolut": 24, "resourc": 25, "respect": 40, "respons": [8, 36], "result": [6, 7, 8, 9, 12, 13, 36, 37, 38, 39, 40, 41, 42, 43], "retriev": [2, 36, 41], "return": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 31, 32, 33, 35, 36, 44], "return_dist": 2, "return_param": 12, "rgeometri": 39, "rid": 3, "right": [10, 35, 36], "right_on": [42, 43], "rise": [35, 40], "risk": [17, 24, 40, 42, 44], "rmse": [3, 5, 9, 11, 12, 31, 32, 36, 40, 42, 43, 44], "role": 31, "room": 35, "root": [5, 9, 11, 12, 31, 32, 36, 37, 42, 43], "root_mean_squared_error": 5, "roughli": 38, "row": [2, 4, 31, 32, 35], "rtree": 27, "run": [24, 27, 31, 36, 38, 41, 42, 43], "runetimeerror": [8, 9, 10], "runtimewarn": [35, 39], "rush": 31, "rx_": 32, "rxn": 32, "safe": [9, 11, 12, 31, 33, 41], "sagepub": 25, "same": [1, 2, 3, 5, 6, 8, 9, 10, 11, 12, 13, 29, 31, 32, 34, 35, 36, 37, 38, 40, 43], "samivari": 9, "sampl": [2, 5, 8, 31, 33, 36, 37, 38, 42, 43], "sample_id": [42, 43], "satellit": 38, "satur": 38, "save": [9, 12, 31, 35, 40, 41], "scalabl": 42, "scalar": 35, "scale": [12, 33], "scan": 36, "scatter": [10, 31, 32], "scatterplot": [10, 35], "scenario": [31, 36, 38, 40], "scienc": [11, 12, 17, 33], "scientist": 24, "scipi": [4, 32, 35], "score": [35, 38], "scott": 15, "scottgallach": 15, "scratch": 32, "sdesabbata": 15, "sdi": 33, "se": [9, 10, 11, 13, 34, 39], "sea": 10, "sean": 15, "seanjunheng2": 15, "search": [3, 5, 7, 8, 31, 33, 36, 41, 42, 43], "search_radiu": 29, "second": [8, 10, 32, 35, 36], "see": [4, 8, 9, 10, 11, 12, 31, 34, 35, 36, 38, 40, 41, 42, 43], "seem": 40, "seen": [33, 41], "select": [2, 3, 5, 8, 9, 10, 11, 12, 13, 31, 34, 36, 42, 43], "select_centroid_poisson_kriging_data": 1, "select_distances_between_block": 2, "select_neighbors_pk_centroid": 1, "select_neighbors_pk_centroid_with_angl": 1, "select_poisson_kriging_data": 1, "select_values_between_lag": 1, "select_values_in_rang": 1, "select_values_in_range_from_datafram": 1, "semi": [31, 34], "semi_major_axis_s": 34, "semi_model": 40, "semivar": 29, "semivari": [0, 2, 5, 9, 11, 12, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41], "semivariance_between_point_support": 9, "semivariance_fn": 1, "semivariogram": [0, 1, 2, 5, 7, 8, 10, 13, 21, 24, 25, 30, 35, 37, 38], "semivariogram_model": [3, 7, 13, 42, 43, 44], "semivariogramerrormodel": 1, "sens": [3, 44], "sensor": 38, "separ": [9, 11, 42, 43, 44], "sequenc": 32, "seri": 2, "serv": 37, "server": 16, "servic": 38, "set": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 32, 33, 34, 35, 37, 38, 39, 40, 42, 43], "set_blocks_dataset": 1, "set_current_as_optim": 9, "set_index": [34, 40], "set_titl": [38, 39, 40], "set_xlabel": 38, "set_ylabel": 38, "setdifferencewarn": 1, "setup": 24, "seven": 32, "shape": [6, 31, 32, 38, 41, 42, 43, 44], "sharei": 40, "sharex": 40, "sharpli": 38, "shell": 20, "short": 34, "shorter": [34, 39], "shortest": 41, "should": [1, 2, 5, 6, 8, 9, 11, 12, 22, 27, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43], "shouldn": [5, 12, 34, 35, 38, 41], "show": [2, 3, 5, 8, 9, 10, 11, 12, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43], "show_progress_bar": 8, "show_semivariogram": 9, "shp": 40, "side": 10, "sig": [7, 42, 43], "sign": [31, 38, 41], "signal": [32, 35], "signific": [37, 38, 41], "sill": [3, 7, 9, 11, 12, 29, 31, 32, 33, 36, 40], "sill_from_valu": 12, "sill_from_vari": [11, 12], "similar": [2, 3, 5, 6, 8, 10, 11, 13, 31, 32, 33, 34, 36, 38, 42], "simonmolinski": [15, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "simpl": [0, 5, 21, 24, 30, 32, 33, 37, 40], "simple_krig": [1, 8, 36], "simplest": 36, "simpli": [42, 43], "simplif": 42, "simplifi": [36, 37, 43], "simul": [32, 35, 36], "simultan": 34, "singl": [2, 9, 10, 11, 12, 13, 31, 32, 34, 36, 37, 42, 43], "singular": [3, 5, 7, 8, 13], "situat": 31, "size": [4, 8, 9, 10, 11, 13, 32, 34, 40, 41, 42, 43, 44], "sk": [5, 8], "sk_interpol": 36, "sk_mean": 5, "skew": [10, 33, 35, 40], "skip": 40, "slice": 39, "slightli": [32, 38], "slow": 41, "slower": 43, "slowli": 41, "small": [9, 32, 37, 40, 41, 42, 43], "smaller": [6, 9, 32, 34, 35, 38, 40, 41], "smallest": 34, "smape": [5, 11, 12, 31], "smooth": [3, 21, 40, 43], "smooth_area_to_point_pk": 1, "smooth_block": [1, 3, 44], "smooth_plot_data": 44, "smoother": 32, "smrd": 9, "so": [10, 24, 31, 36, 41, 42], "social": [17, 24], "societi": [12, 33], "socio": [17, 28], "softwar": [24, 26], "soil": [12, 33], "some": [1, 25, 27, 31, 32, 33, 38, 40, 41, 42], "someon": 40, "someth": 31, "sometim": [10, 31, 33, 34, 42, 43], "sophist": [35, 36], "sort": [36, 38], "sourc": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 24, 26, 37], "south": [10, 39], "southeastern": 10, "southwestern": 10, "space": [11, 12, 31], "spars": [10, 32, 42, 43], "sparse_data": 32, "spatial": [1, 2, 4, 9, 10, 12, 17, 24, 26, 28, 29, 30, 31, 32, 34, 35, 36, 39, 40, 41, 42, 43, 44], "spatial_depend": 31, "spatial_dependency_level": 12, "spatial_dependency_ratio": [12, 33], "spatial_dependency_strength": [12, 33], "spatial_index": 31, "spatialindex": 27, "speak": 32, "speci": 41, "special": [31, 32, 34], "specif": [5, 8, 10, 31, 34, 35, 36, 38], "specifi": 2, "spectral_r": [40, 42, 43, 44], "sph": 40, "spheric": [8, 9, 11, 12, 29, 31, 32, 39, 40], "spherical_model": 31, "springer": [25, 32], "sql": 34, "sqrt": [5, 36, 37, 42, 43], "squar": [5, 9, 11, 12, 25, 31, 32, 36, 37, 38, 42, 43], "squared_error": [42, 43], "src": [21, 35], "stabil": 41, "stabl": [], "stage": 38, "standard": [10, 35, 38, 42, 43], "start": [31, 32, 33, 34, 35, 36, 41, 42, 43, 44], "stat": [10, 38], "state": [32, 40], "statement": 43, "station_id": 34, "stationari": 31, "statist": [10, 24, 31, 36, 38, 42, 43], "statu": [5, 31], "std": [10, 35, 36, 38, 42, 43], "step": [9, 23, 27, 30, 31, 32, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44], "step_siz": [3, 5, 7, 8, 9, 10, 11, 12, 13, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41], "step_size_point": 41, "steroid": 35, "still": [31, 32, 35, 36, 39, 41], "stop": 9, "store": [2, 9, 11, 12, 31, 40, 41, 44], "store_dropped_point": 2, "store_model": 9, "str": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 40, 41], "straight": 34, "straightforward": 44, "strength": [9, 12, 31, 33, 36], "string": [2, 10], "strong": [12, 31, 33, 36], "stronger": 6, "structur": [0, 3, 5, 6, 8, 10, 11, 13, 18, 32, 41], "studi": [5, 8, 12, 36, 41], "subplot": [11, 38, 39, 40], "subset": [10, 36], "substanti": 33, "subtract": 35, "sudo": 27, "suffici": 41, "suitabl": 38, "sum": [10, 11, 12], "sum_": [5, 9, 37], "summari": 40, "support": [0, 3, 4, 7, 9, 24, 35, 40, 41, 42, 43, 44], "suptitl": 40, "sure": [31, 34, 36, 42, 43], "surf_blur": 32, "surfac": [8, 21, 36], "sw": [9, 10, 11, 13, 34, 39], "swath": [], "symmetr": [5, 9, 11, 12, 31], "symmetric_mean_absolute_percentage_error": 5, "symmetric_mean_relative_differ": 1, "system": [2, 8, 9, 10, 11, 13, 27, 31, 32, 34, 36], "szymon": [15, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "szymono": 35, "t": [1, 2, 3, 5, 7, 8, 9, 12, 13, 23, 27, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41], "tail": [35, 39], "take": [2, 3, 8, 10, 31, 32, 33, 36, 38, 40, 41, 42, 43], "taken": 36, "target_cr": 2, "task": 38, "teach": 36, "technic": 32, "techniqu": [8, 17, 24, 36, 37, 38, 42, 43, 44], "tell": [5, 31, 35, 38, 40, 42, 43], "temperatur": [10, 39], "tend": [10, 33], "termin": [9, 27], "test": [9, 10, 11, 12, 18, 21, 31, 32, 35, 36, 37, 38, 40, 42, 43], "test_sampl": 36, "text": 31, "th": [3, 5, 6, 8, 10, 11, 13, 37], "than": [3, 5, 6, 8, 9, 10, 11, 12, 13, 31, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43], "thank": [25, 40], "thei": [2, 31, 36, 38, 43], "them": [3, 8, 9, 25, 31, 32, 36, 38, 40, 41, 42, 43, 44], "theo": [3, 7], "theo_ind": 11, "theo_semi": 40, "theo_var": [12, 36, 37], "theo_variogram": [3, 8], "theoret": [0, 1, 3, 8, 9, 11, 21, 28, 29, 32, 33, 36, 39, 41, 44], "theoretical_block_model": 9, "theoretical_indicator_variogram": 11, "theoretical_model": [3, 5, 8, 9, 29, 36, 37, 38, 39, 40], "theoretical_semivari": 9, "theoretical_semivariogram": 40, "theoretical_valu": 12, "theoretical_var": 12, "theoretical_variogram_model": 12, "theoreticalindicatorvariogram": [1, 8, 11], "theoreticalmodelfunct": 1, "theoreticalsemivariogram": 40, "theoreticalvariogram": [2, 3, 4, 5, 7, 8, 9, 12, 13, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44], "theoreticalvariogrammodel": [1, 12], "theori": 32, "theoriticalvariogram": 31, "therefor": 33, "thi": [1, 2, 3, 5, 7, 8, 9, 11, 12, 13, 24, 27, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "thing": [33, 35, 37], "third": [10, 38], "those": [1, 2, 3, 10, 27, 31, 32, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "three": [27, 31, 32, 34, 35], "threshold": [8, 11], "through": 41, "thu": [5, 32, 34, 35, 36, 38, 40, 41], "time": [10, 31, 32, 35, 36, 38, 40, 41, 42, 43], "titl": [31, 32, 34, 38], "to_cr": [35, 36, 37, 38], "to_dict": [12, 31], "to_fil": [40, 44], "to_json": [12, 31], "to_numpi": [38, 39, 40, 42, 43], "to_tiff": 1, "tobiasz": 15, "tobiaszwojnar": 15, "tobler": [10, 33], "todo": 20, "toler": [8, 9, 10, 11, 13, 31, 34, 36, 39], "toml": [22, 27], "too": [34, 35, 36, 38, 40, 41, 42, 43, 44], "tool": [21, 24, 35, 38], "top": [34, 35, 38, 40], "top_limit": 38, "total": [2, 11, 12, 31, 33], "total_pop10": 41, "toward": [35, 40], "tqdm": [36, 37, 42, 43], "trace": 31, "track": [9, 41], "tracker": [], "train": [36, 37, 38, 42, 43], "train_without_outli": 38, "transform": [1, 2, 3, 9, 21, 24, 29, 31, 32, 33, 35, 36, 37, 38, 40, 41, 44], "transform_blocks_to_numpi": 1, "transform_cr": 2, "transform_ps_to_dict": 1, "transit": [42, 43], "treat": [31, 34, 38], "trend": [8, 24, 31, 34, 35, 41], "trend_model": 8, "trend_valu": 8, "tri": 11, "triangle_mask": 1, "triangular": 34, "tricki": [32, 35], "true": [2, 3, 5, 7, 8, 9, 10, 11, 12, 13, 31, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44], "try": [42, 43], "tune": 43, "tupl": [2, 5, 8, 12, 33], "turco": [12, 33], "turgut": 15, "tutori": [20, 21, 24, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "two": [2, 5, 8, 9, 31, 32, 33, 34, 35, 36, 38, 39, 41, 42, 43, 44], "type": [1, 3, 5, 6, 8, 9, 10, 11, 12, 13, 31, 35, 38, 40], "u": [5, 10, 31, 32, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44], "u_": 9, "u_i": 10, "uk": [8, 25], "unabl": 37, "unbias": 36, "uncertainti": [11, 29, 40], "uncertainty_col_nam": 40, "unchang": 2, "undefin": [5, 9, 12, 31], "undefinedsmapewarn": 5, "under": [35, 42, 43], "underestim": [5, 12, 42, 43], "underforecast": 5, "understand": [3, 31, 34, 35, 38, 41, 44], "understood": [42, 43], "undesir": 44, "unfortun": 37, "uniform": 38, "union": [2, 4, 8, 10, 12], "uniqu": [2, 4], "unique_block": 2, "unit": [3, 8, 9, 21, 25, 32, 34, 40, 41], "univers": [0, 24], "universalkrig": 8, "unknown": [3, 6, 7, 8, 12, 32, 37, 40], "unknown_block_index": [7, 42, 43], "unknown_loc": [3, 6, 8, 29, 36, 37, 38, 39, 40], "unknown_po": 6, "unknown_point": [8, 29], "unnecessari": 40, "unreli": [38, 42, 43], "unsupport": 9, "untouch": 31, "up": [10, 31, 33, 35, 38], "updat": [1, 2, 9, 11, 12, 24, 31], "upper": [33, 35, 38], "url": 28, "us": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 24, 27, 29, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "use_all_model": 8, "use_all_neighbors_in_rang": [3, 5, 8, 36, 39, 40], "use_point_support_cr": 2, "usecol": [33, 39], "useless": [32, 38], "user": [1, 2, 9, 12, 30, 34, 35, 40], "usual": [5, 29, 31, 32, 34, 36, 41], "util": 36, "v": [9, 12, 25, 33, 35], "v_": 9, "v_h": 9, "val": [32, 37, 41], "val_col_nam": 4, "valid": [0, 34, 35, 36, 38, 43], "validate_bin": 1, "validate_direct": 1, "validate_direction_and_toler": 1, "validate_krig": 5, "validate_plot_attributes_for_experimental_variogram": 1, "validate_plot_attributes_for_experimental_variogram_class": 1, "validate_point": 1, "validate_selected_error": 1, "validate_semivariance_weight": 1, "validate_theoretical_variogram": 1, "validate_toler": 1, "validate_weight": 1, "validation_result": 5, "valu": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 29, 31, 32, 33, 34, 35, 37, 38, 39, 40, 41, 42, 43, 44], "value1": 32, "value2": 32, "value_a": 2, "value_b": 2, "value_col": 34, "value_column_nam": [2, 3, 4, 7, 9, 40, 41, 42, 43, 44], "valueerror": [6, 7, 9, 12], "var": [12, 39], "varfit": 25, "vari": [43, 44], "variabl": [12, 33, 34, 36, 37, 40, 41], "varianc": [3, 5, 7, 8, 10, 11, 12, 29, 31, 32, 33, 34, 35, 36, 39, 42, 43], "variat": [33, 34], "variogram": [0, 1, 3, 5, 7, 8, 11, 12, 13, 21, 24, 25, 28, 29, 30, 33, 36, 37, 39, 40, 41, 44], "variogram_cloud": [35, 40], "variogram_model_typ": [12, 31], "variogram_rang": 31, "variogram_weighting_method": [9, 41], "variogramcloud": [10, 35, 38, 40], "variogrammodelnotseterror": 1, "variogrampoint": [1, 10, 11], "vc": [10, 35, 40], "vc1000": 35, "ve": [35, 36, 43], "vector": 6, "verbos": [2, 3, 9, 12, 41, 42, 43, 44], "veri": [3, 8, 31, 32, 33, 34, 35, 37, 40, 42, 43, 44], "version": 18, "view": [5, 38], "vignett": 33, "violin": [10, 38, 40], "violinplot": [10, 38], "visibl": [35, 38], "visual": [0, 8, 31, 34, 35, 38, 40, 42, 43, 44], "visul": 38, "vital": 31, "viz": 21, "vmin": [31, 35, 36, 37, 38], "voila": 37, "vol": 25, "volum": [10, 40], "vv": 39, "w": [9, 10, 11, 13, 34, 39], "wa": [1, 2, 9, 10, 24, 25, 32], "wai": [2, 10, 31, 32, 33, 35, 37, 40], "want": [2, 3, 5, 8, 34, 36, 40, 44], "warn": [5, 10, 11, 12, 31], "we": [3, 5, 7, 8, 10, 13, 24, 29, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "we_direct": 34, "weak": [12, 32, 33, 34], "web": 33, "week": 17, "weight": [0, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 21, 24, 25, 31, 32, 36, 37, 38, 41], "weight_experimental_semivari": 1, "weighted_avg_point_support_semivari": 1, "weighted_block_to_block_dist": 2, "weighted_root_mean_squared_error": 5, "weightedblock2blocksemivari": 1, "weightedblock2pointsemivari": 1, "weighting_method": [5, 9], "weights_arrai": 1, "well": [5, 8, 31, 34, 36, 38, 41, 42, 43], "were": [4, 31], "weren": 2, "west": [10, 36, 39], "western": 36, "whale": 10, "what": [3, 5, 7, 8, 13, 31, 32, 34, 40, 41, 42, 43], "wheel": 27, "when": [2, 3, 5, 7, 8, 9, 10, 11, 12, 13, 31, 32, 35, 36, 37, 38, 40, 41, 42, 43], "whenev": 33, "where": [2, 3, 4, 5, 8, 9, 10, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43], "which": [2, 8, 10, 12, 27, 31, 32, 34, 37, 38, 40], "whisker": [35, 38], "white": [40, 44], "whole": [9, 31, 36], "why": [5, 8, 35, 36, 37, 38, 40, 41], "wide": [42, 43], "width": [8, 13, 34], "wielkopolski": 31, "wiki": 5, "wikipedia": 5, "wildli": [31, 36], "wise": 9, "with_stat": 38, "with_std": 38, "within": [2, 3, 5, 6, 8, 9, 10, 11, 12, 31, 32, 33, 34, 35, 36, 41, 43], "without": [27, 31, 32, 33, 38, 40], "without_stat": 38, "without_std": 38, "wkt": 2, "wojnar": 15, "won": [23, 31, 32, 41], "word": [32, 38, 40], "work": [5, 11, 12, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44], "world": [32, 33, 36, 38], "worldwid": 24, "worsen": 36, "worst": [36, 42, 43], "would": [23, 40], "wrap": 32, "wrmse": 5, "wrmse_closest": 5, "wrmse_dens": 5, "wrmse_dist": 5, "wrong": [12, 31, 42, 43], "wronggeometrytypeerror": 1, "wzbogacani": 28, "x": [2, 3, 4, 5, 6, 7, 8, 10, 11, 13, 21, 24, 29, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41], "x1": 32, "x2": 32, "x_": 32, "x_i": 10, "xiao": 25, "xlabel": [31, 32, 36, 38], "xn": 32, "xyval": 32, "y": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41], "y1": 32, "y2": 32, "y_": 5, "ye": 35, "yellow": 34, "yet": [9, 12, 27, 37], "yhat": [9, 12, 31, 32, 36], "ylabel": [31, 32, 36, 38, 39, 42, 43], "you": [3, 5, 7, 8, 13, 23, 24, 27, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44], "your": [3, 5, 7, 8, 9, 13, 24, 27, 32, 34, 35, 37, 38, 40], "z": [10, 28, 35, 37, 38], "z_": 37, "z_hat": 8, "z_i": 10, "z_lower_limit": [10, 35, 38], "z_upper_limit": [10, 35, 38], "z_w": 10, "zero": [9, 10, 11, 12, 31, 35, 36, 37, 40, 41], "zhat": [7, 42, 43], "zinc": [33, 39], "zscore": [10, 35, 38], "zx11_2ts7tjfsny482gs54s80000gr": 39, "\u03c6": 17}, "titles": ["API", "Changes between version 0.x and 1.x", "Core data structures", "Pipelines", "Distance", "Models evaluation", "Inverse Distance Weighting (IDW)", "Block and Poisson Kriging", "Point Kriging", "Semivariogram Deconvolution", "Experimental Semivariance and Covariance", "Indicator Semivariogram", "Theoretical Semivariogram", "Visualization", "Community", "Contributors", "Network", "Use Cases", "Development", "Known Bugs", "Development", "Package structure", "Requirements and dependencies (version >= 1)", "Tests and contribution", "Pyinterpolate", "Bibliography", "Citation", "Setup", "Learning Materials", "Quickstart", "Tutorials", "Semivariogram exploration", "Semivariogram models", "Spatial Dependency Index", "Directional Semivariogram", "Variogram Points Cloud", "Ordinary and Simple Kriging", "Benchmarking Kriging", "Outliers and Kriging", "Directional Ordinary Kriging", "Blocks to points with Ordinary Kriging", "Semivariogram Regularization", "Poisson Kriging Centroid-based approach", "Area-to-area Poisson Kriging", "Area-to-Point Poisson Kriging"], "titleterms": {"": 15, "0": 1, "1": [1, 22, 24, 31, 32, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44], "2": [24, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "3": [31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "4": [31, 32, 33, 34, 35, 38, 39, 40, 41, 42, 43, 44], "5": [31, 34, 35, 38, 40, 41, 42, 43], "6": 31, "The": 27, "addit": 27, "advanc": 30, "aggreg": 9, "analyz": [35, 38], "api": [0, 33], "approach": 42, "ar": 1, "area": [7, 42, 43, 44], "author": 15, "automat": 31, "avail": 1, "base": [7, 38, 42], "bechmark": 37, "beginn": 30, "benchmark": 37, "between": 1, "bibliographi": 25, "block": [2, 4, 7, 40, 44], "blog": 28, "box": 35, "bug": 19, "build": 27, "calcul": 32, "canva": 40, "case": [17, 34], "centroid": [7, 42], "chang": 1, "changelog": [31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "chapter": [31, 32], "check": 35, "citat": [24, 26], "class": 1, "cloud": [10, 35, 38], "commun": 14, "compar": [32, 34, 39], "conda": 27, "content": [24, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "contribut": 23, "contributor": 15, "core": 2, "covari": 10, "creat": [32, 34, 35, 36, 38, 39], "cross": 5, "data": [2, 31, 38, 39, 40, 41, 42, 43, 44], "dataset": 31, "deconvolut": 9, "depend": [22, 27, 33], "detect": [35, 40], "develop": [18, 20], "deviat": 9, "differ": [33, 38], "direct": [10, 34, 39], "distanc": [4, 6], "distribut": 38, "do": 33, "each": 35, "east": 34, "element": 33, "error": 27, "evalu": [5, 36, 42, 43], "exampl": [8, 33], "experiment": [10, 31, 32, 34, 35], "explor": 31, "export": [31, 41, 44], "extent": 33, "fail": 27, "filter": [42, 43], "fit": [31, 32, 36, 40], "from": [35, 38], "function": 1, "guidelin": 27, "i": [33, 35], "idw": [6, 37], "import": [24, 31], "includ": 34, "index": 33, "indic": [8, 11], "instal": [27, 29], "intermedi": 30, "interpol": [39, 40], "introduct": [24, 37], "invers": 6, "isotrop": 34, "joss": 15, "known": 19, "krige": [3, 7, 8, 29, 36, 37, 38, 39, 40, 42, 43, 44], "lag": 35, "lead": 34, "learn": 28, "libspatialindex_c": 27, "linux": 27, "load": [42, 43, 44], "locat": 36, "longer": 1, "maintain": 15, "manual": 31, "materi": 28, "metric": 5, "model": [5, 31, 32, 36, 38, 39, 40, 42, 43, 44], "more": 35, "network": 16, "new": 1, "north": 34, "northeast": 34, "northwest": 34, "notebook": 27, "notic": 24, "ordinari": [3, 8, 29, 36, 39, 40], "outlier": [35, 38, 40], "output": [36, 37], "over": 33, "packag": 21, "paramet": 41, "perform": 37, "pip": 27, "pipelin": 3, "plot": 35, "point": [2, 4, 7, 8, 35, 38, 40, 44], "poisson": [3, 7, 42, 43, 44], "post": 28, "potenti": 38, "predict": 36, "prepar": [31, 38, 39, 40, 41, 42, 43, 44], "prerequisit": [31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "present": 28, "process": [34, 41], "public": 28, "pyinterpol": 24, "pylibtiff": 27, "quickstart": 29, "random": 32, "raster": 13, "regular": [41, 42, 43, 44], "remov": [35, 38, 40], "requir": 22, "resourc": 35, "result": 44, "review": 15, "same": 33, "scatter": 35, "semivari": 10, "semivariogram": [9, 11, 12, 31, 32, 34, 36, 39, 40, 41, 42, 43, 44], "set": [31, 36, 41], "setup": 27, "simpl": [8, 36], "smooth": 44, "so": 27, "south": 34, "southeast": 34, "southwest": 34, "spatial": 33, "statist": 35, "structur": [2, 21], "studi": 33, "support": [1, 2], "surfac": 32, "tabl": [31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "temporarili": 1, "test": 23, "theoret": [12, 31], "tool": 37, "topic": 27, "tutori": 30, "univers": 8, "unknown": 36, "us": [17, 33], "valid": [5, 37], "valu": 36, "variogram": [9, 10, 31, 32, 34, 35, 38], "version": [1, 22, 24], "violin": 35, "visual": [13, 41], "we": 33, "weight": 6, "west": 34, "what": 33, "why": 33, "work": 27, "workshop": 28, "x": 1}})
\ No newline at end of file
+Search.setIndex({"alltitles": {"1. Create Variogram Point Cloud": [[35, "1.-Create-Variogram-Point-Cloud"]], "1. Directional process": [[34, "1.-Directional-process"]], "1. Introduction - IDW as bechmarking tool": [[37, "1.-Introduction---IDW-as-bechmarking-tool"]], "1. Prepare data": [[38, "1.-Prepare-data"], [40, "1.-Prepare-data"], [41, "1.-Prepare-data"], [42, "1.-Prepare-data"], [43, "1.-Prepare-data"], [44, "1.-Prepare-data"]], "1. Set semivariogram model (fit)": [[36, "1.-Set-semivariogram-model-(fit)"]], "2. Analyze Variogram Point Cloud": [[35, "2.-Analyze-Variogram-Point-Cloud"]], "2. Analyze data distribution and remove potential outliers": [[38, "2.-Analyze-data-distribution-and-remove-potential-outliers"]], "2. Create Ordinary and Simple Kriging models": [[36, "2.-Create-Ordinary-and-Simple-Kriging-models"]], "2. Create directional and isotropic semivariograms": [[34, "2.-Create-directional-and-isotropic-semivariograms"]], "2. Create directional semivariograms": [[39, "2.-Create-directional-semivariograms"]], "2. Detect and remove outliers": [[40, "2.-Detect-and-remove-outliers"]], "2. Load regularized semivariogram model": [[42, "2.-Load-regularized-semivariogram-model"], [43, "2.-Load-regularized-semivariogram-model"], [44, "2.-Load-regularized-semivariogram-model"]], "2. Perform IDW and validate outputs": [[37, "2.-Perform-IDW-and-validate-outputs"]], "2. Set semivariogram parameters": [[41, "2.-Set-semivariogram-parameters"]], "2. Why do we use Spatial Dependency Index?": [[33, "2.-Why-do-we-use-Spatial-Dependency-Index?"]], "3. Compare semivariograms": [[34, "3.-Compare-semivariograms"]], "3. Create Variogram Clouds": [[38, "3.-Create-Variogram-Clouds"]], "3. Detect and remove outliers": [[35, "3.-Detect-and-remove-outliers"]], "3. Example: Spatial Dependence over the same study extent but for different elements": [[33, "3.-Example:-Spatial-Dependence-over-the-same-study-extent-but-for-different-elements"]], "3. Fit semivariogram model": [[40, "3.-Fit-semivariogram-model"]], "3. Interpolate with directional Kriging": [[39, "3.-Interpolate-with-directional-Kriging"]], "3. Perform Kriging and validate outputs": [[37, "3.-Perform-Kriging-and-validate-outputs"]], "3. Predict values at unknown locations and evaluate output": [[36, "3.-Predict-values-at-unknown-locations-and-evaluate-output"]], "3. Prepare data for Poisson Kriging": [[42, "3.-Prepare-data-for-Poisson-Kriging"], [43, "3.-Prepare-data-for-Poisson-Kriging"]], "3. Regularize semivariogram": [[41, "3.-Regularize-semivariogram"]], "3. Smooth blocks": [[44, "3.-Smooth-blocks"]], "4. API": [[33, "4.-API"]], "4. Compare models": [[39, "4.-Compare-models"]], "4. Experimental variogram from the point cloud": [[35, "4.-Experimental-variogram-from-the-point-cloud"]], "4. Export results": [[44, "4.-Export-results"]], "4. Filtering areas": [[42, "4.-Filtering-areas"], [43, "4.-Filtering-areas"]], "4. Prepare canvas": [[40, "4.-Prepare-canvas"]], "4. Remove outliers from the point cloud": [[38, "4.-Remove-outliers-from-the-point-cloud"]], "4. Visualize process": [[41, "4.-Visualize-process"]], "5. Evaluate": [[42, "5.-Evaluate"], [43, "5.-Evaluate"]], "5. Export semivariogram": [[41, "5.-Export-semivariogram"]], "5. Interpolate": [[40, "5.-Interpolate"]], "5. Is variogram point cloud a scatter plot?": [[35, "5.-Is-variogram-point-cloud-a-scatter-plot?"]], "5. Kriging Models based on different variograms": [[38, "5.-Kriging-Models-based-on-different-variograms"]], "API": [[0, null]], "Advanced": [[30, "advanced"]], "Aggregated Variogram": [[9, "aggregated-variogram"]], "Area-to-Point Poisson Kriging": [[44, null]], "Area-to-area Poisson Kriging": [[7, "area-to-area-poisson-kriging"], [43, null]], "Area-to-point Poisson Kriging": [[7, "area-to-point-poisson-kriging"]], "Author(s)": [[15, "author-s"]], "Beginner": [[30, "beginner"]], "Benchmarking Kriging": [[37, null]], "Bibliography": [[25, null]], "Block": [[4, "block"]], "Block and Poisson Kriging": [[7, null]], "Blocks": [[2, "blocks"]], "Blocks to points with Ordinary Kriging": [[40, null]], "Blog posts": [[28, "blog-posts"]], "Box plot": [[35, "Box-plot"]], "Case 1: West-East direction": [[34, "Case-1:-West-East-direction"]], "Case 2: North-South direction": [[34, "Case-2:-North-South-direction"]], "Case 3: Northwest-Southeast direction": [[34, "Case-3:-Northwest-Southeast-direction"]], "Case 4: Northeast-Southwest direction": [[34, "Case-4:-Northeast-Southwest-direction"]], "Case 5: Isotropic variogram - no leading direction": [[34, "Case-5:-Isotropic-variogram---no-leading-direction"]], "Centroid-based Poisson Kriging": [[7, "centroid-based-poisson-kriging"]], "Changelog": [[31, "Changelog"], [32, "Changelog"], [33, "Changelog"], [34, "Changelog"], [35, "Changelog"], [36, "Changelog"], [37, "Changelog"], [38, "Changelog"], [39, "Changelog"], [40, "Changelog"], [41, "Changelog"], [42, "Changelog"], [43, "Changelog"], [44, "Changelog"]], "Changes between version 0.x and 1.x": [[1, null]], "Chapter 1: Create random surface": [[32, "Chapter-1:-Create-random-surface"]], "Chapter 1: data preparation": [[31, "Chapter-1:-data-preparation"]], "Chapter 2: Calculate the experimental semivariogram": [[32, "Chapter-2:-Calculate-the-experimental-semivariogram"]], "Chapter 2: Experimental Variogram": [[31, "Chapter-2:-Experimental-Variogram"]], "Chapter 3: Fit variogram models": [[32, "Chapter-3:-Fit-variogram-models"]], "Chapter 3: Theoretical Variogram": [[31, "Chapter-3:-Theoretical-Variogram"]], "Chapter 4: Compare variogram models": [[32, "Chapter-4:-Compare-variogram-models"]], "Chapter 4: Fit semivariogram model automatically": [[31, "Chapter-4:-Fit-semivariogram-model-automatically"]], "Chapter 5: Exporting model": [[31, "Chapter-5:-Exporting-model"]], "Chapter 6: Importing fitted model": [[31, "Chapter-6:-Importing-fitted-model"]], "Check points statistics for each lag": [[35, "Check-points-statistics-for-each-lag"]], "Citation": [[24, "citation"], [26, null]], "Classes": [[1, "classes"], [1, "id2"]], "Community": [[14, null]], "Conda": [[27, "conda"]], "Contents": [[24, "contents"]], "Contributors": [[15, null], [15, "id1"]], "Core data structures": [[2, null]], "Cross-validation": [[5, "cross-validation"]], "Dataset": [[31, "Dataset"]], "Deconvolution": [[9, "deconvolution"]], "Development": [[18, null], [20, null]], "Deviation": [[9, "deviation"]], "Directional Ordinary Kriging": [[39, null]], "Directional Semivariogram": [[34, null]], "Directional Variogram": [[10, "directional-variogram"]], "Distance": [[4, null]], "Examples": [[8, "examples"]], "Experimental Semivariance and Covariance": [[10, null]], "Experimental Variogram": [[10, "experimental-variogram"]], "Failing pylibtiff build - Linux": [[27, "failing-pylibtiff-build-linux"]], "Functions": [[1, "functions"], [1, "id1"]], "Functions and classes that are no longer supported": [[1, "functions-and-classes-that-are-no-longer-supported"]], "Important notice": [[24, "important-notice"]], "Including direction in experimental variogram": [[34, "Including-direction-in-experimental-variogram"]], "Indicator Kriging": [[8, "indicator-kriging"]], "Indicator Semivariogram": [[11, null]], "Installation": [[29, "installation"]], "Installation - additional topics": [[27, "installation-additional-topics"]], "Installation guidelines": [[27, "installation-guidelines"]], "Intermediate": [[30, "intermediate"]], "Introduction": [[24, "introduction"]], "Inverse Distance Weighting (IDW)": [[6, null]], "Known Bugs": [[19, null]], "Learning Materials": [[28, null]], "Maintainer(s)": [[15, "maintainer-s"]], "Manual setting": [[31, "Manual-setting"]], "Metrics": [[5, "metrics"]], "Models": [[31, "Models"]], "Models evaluation": [[5, null]], "More resources": [[35, "More-resources"]], "Network": [[16, null]], "New functions and classes": [[1, "new-functions-and-classes"]], "Ordinary Kriging": [[8, "ordinary-kriging"], [29, "ordinary-kriging"]], "Ordinary Kriging pipelines": [[3, "ordinary-kriging-pipelines"]], "Ordinary and Simple Kriging": [[36, null]], "Outliers and Kriging": [[38, null]], "Package structure": [[21, null]], "Pipelines": [[3, null]], "Point": [[4, "point"]], "Point Kriging": [[8, null]], "Point Support": [[2, "point-support"]], "Poisson Kriging Centroid-based approach": [[42, null]], "Poisson Kriging pipelines": [[3, "poisson-kriging-pipelines"]], "Prepare data": [[39, "Prepare-data"]], "Prerequisites": [[31, "Prerequisites"], [32, "Prerequisites"], [33, "Prerequisites"], [34, "Prerequisites"], [35, "Prerequisites"], [36, "Prerequisites"], [37, "Prerequisites"], [38, "Prerequisites"], [39, "Prerequisites"], [40, "Prerequisites"], [41, "Prerequisites"], [42, "Prerequisites"], [43, "Prerequisites"], [44, "Prerequisites"]], "Presentations & Workshops": [[28, "presentations-workshops"]], "Publications": [[28, "publications"]], "Pyinterpolate": [[24, null]], "Quickstart": [[29, null]], "Raster": [[13, "raster"]], "Requirements and dependencies (version >= 1)": [[22, null]], "Reviewers (JOSS)": [[15, "reviewers-joss"]], "Scatter plot": [[35, "Scatter-plot"]], "Semivariogram Deconvolution": [[9, null]], "Semivariogram Regularization": [[41, null]], "Semivariogram exploration": [[31, null]], "Semivariogram models": [[32, null]], "Setup": [[27, null]], "Simple Kriging": [[8, "simple-kriging"]], "Spatial Dependency Index": [[33, null]], "Table of contents": [[31, "Table-of-contents"], [32, "Table-of-contents"], [33, "Table-of-contents"], [34, "Table-of-contents"], [35, "Table-of-contents"], [36, "Table-of-contents"], [37, "Table-of-contents"], [38, "Table-of-contents"], [39, "Table-of-contents"], [40, "Table-of-contents"], [41, "Table-of-contents"], [42, "Table-of-contents"], [43, "Table-of-contents"], [44, "Table-of-contents"]], "Temporarily not available functions and classes": [[1, "temporarily-not-available-functions-and-classes"]], "Tests and contribution": [[23, null]], "The libspatialindex_c.so dependency error": [[27, "the-libspatialindex-c-so-dependency-error"]], "Theoretical Semivariogram": [[12, null]], "Tutorials": [[30, null]], "Universal Kriging": [[8, "universal-kriging"]], "Use Cases": [[17, null]], "Variogram Cloud": [[10, "variogram-cloud"]], "Variogram Points Cloud": [[35, null]], "Violin plot": [[35, "Violin-plot"]], "Visualization": [[13, null]], "What is the spatial dependency index?": [[33, "What-is-the-spatial-dependency-index?"]], "Working with Notebooks": [[27, "working-with-notebooks"]], "pip": [[27, "pip"]], "version 1.2.1": [[24, "version-1-2-1"]]}, "docnames": ["api/api", "api/changes", "api/core/core", "api/core/pipelines", "api/distance/distance", "api/evaluate/evaluate", "api/idw/idw", "api/kriging/block_kriging", "api/kriging/point_kriging", "api/semivariogram/deconvolution", "api/semivariogram/experimental", "api/semivariogram/indicator", "api/semivariogram/theoretical", "api/viz/raster", "community/community", "community/community/contributors", "community/community/forum", "community/community/use_cases", "contributor/development", "contributor/development/bugs", "contributor/development/development", "contributor/development/package", "contributor/development/requirements", "contributor/development/tests_and_contribution", "index", "science/bibliography", "science/citation", "setup/setup", "usage/learning_materials", "usage/quickstart", "usage/tutorials", "usage/tutorials/functional/1-1-semivariogram-exploration", "usage/tutorials/functional/1-2-semivariogram-models", "usage/tutorials/functional/1-3-spatial-dependency-index", "usage/tutorials/functional/2-1-directional-semivariogram", "usage/tutorials/functional/2-2-variogram-points-cloud", "usage/tutorials/functional/3-1-ordinary-and-simple-kriging", "usage/tutorials/functional/3-2-benchmark-kriging", "usage/tutorials/functional/3-3-outliers-and-kriging", "usage/tutorials/functional/3-4-directional-ordinary-kriging", "usage/tutorials/functional/3-5-blocks-to-points-ordinary-kriging", "usage/tutorials/functional/4-1-semivariogram-regularization", "usage/tutorials/functional/4-2-poisson-kriging-centroid-based", "usage/tutorials/functional/4-3-poisson-kriging-area-to-area", "usage/tutorials/functional/4-4-poisson-kriging-area-to-point-smoothing"], "envversion": {"nbsphinx": 4, "sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1}, "filenames": ["api/api.rst", "api/changes.rst", "api/core/core.rst", "api/core/pipelines.rst", "api/distance/distance.rst", "api/evaluate/evaluate.rst", "api/idw/idw.rst", "api/kriging/block_kriging.rst", "api/kriging/point_kriging.rst", "api/semivariogram/deconvolution.rst", "api/semivariogram/experimental.rst", "api/semivariogram/indicator.rst", "api/semivariogram/theoretical.rst", "api/viz/raster.rst", "community/community.rst", "community/community/contributors.rst", "community/community/forum.rst", "community/community/use_cases.rst", "contributor/development.rst", "contributor/development/bugs.rst", "contributor/development/development.rst", "contributor/development/package.rst", "contributor/development/requirements.rst", "contributor/development/tests_and_contribution.rst", "index.rst", "science/bibliography.rst", "science/citation.rst", "setup/setup.rst", "usage/learning_materials.rst", "usage/quickstart.rst", "usage/tutorials.rst", "usage/tutorials/functional/1-1-semivariogram-exploration.ipynb", "usage/tutorials/functional/1-2-semivariogram-models.ipynb", "usage/tutorials/functional/1-3-spatial-dependency-index.ipynb", "usage/tutorials/functional/2-1-directional-semivariogram.ipynb", "usage/tutorials/functional/2-2-variogram-points-cloud.ipynb", "usage/tutorials/functional/3-1-ordinary-and-simple-kriging.ipynb", "usage/tutorials/functional/3-2-benchmark-kriging.ipynb", "usage/tutorials/functional/3-3-outliers-and-kriging.ipynb", "usage/tutorials/functional/3-4-directional-ordinary-kriging.ipynb", "usage/tutorials/functional/3-5-blocks-to-points-ordinary-kriging.ipynb", "usage/tutorials/functional/4-1-semivariogram-regularization.ipynb", "usage/tutorials/functional/4-2-poisson-kriging-centroid-based.ipynb", "usage/tutorials/functional/4-3-poisson-kriging-area-to-area.ipynb", "usage/tutorials/functional/4-4-poisson-kriging-area-to-point-smoothing.ipynb"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [2, 3, 4, 5, 8, 9, 10, 11, 12, 13, 24, 26, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43], "0": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 24, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "00": [7, 35, 36, 37, 38, 39, 40, 41, 42, 43], "000": 40, "00000": 34, "000000": [4, 35, 36, 38, 42, 43], "000000000": 40, "000000e": 35, "001": 9, "001038e": 35, "001294": 31, "001901e": 35, "002": 34, "00310437379738": 31, "00372185725449": 9, "005513468013467637": 12, "00688727050691": 31, "007": 4, "00739": 34, "008423e": 38, "009": 42, "01": [3, 8, 9, 31, 35, 36, 37, 38, 39, 40, 44], "011": 42, "011482": 42, "012348e": 35, "013474": 40, "013657676895086": 40, "014": 11, "01613441673494531": 5, "016819758037855": 31, "018141e": 35, "018571": 38, "01it": 43, "02": [7, 31, 32, 35, 36, 37, 38, 40], "020515483": 40, "022283e": 35, "023352887160456": 36, "024150": 35, "024262": 35, "025285": 36, "02730202869643": 31, "027444e": 35, "02869": [24, 26], "029843": 36, "03": [35, 43], "030020e": 35, "030242": 36, "030860e": 4, "031347": 44, "032104e": 35, "0330029215756": 36, "03478367192644": 36, "03634215647224": 31, "037233": 40, "039635": 38, "039772": 43, "04": [33, 34, 35, 36, 40, 41], "040404040404042": 5, "041308": 36, "042438e": 4, "04398849607182864": 12, "044693": 44, "0449992036047": 36, "0456278763971074": 12, "046338306662676": 9, "0464888109063": 31, "05": [3, 4, 7, 8, 36, 37, 38, 39, 40, 41, 42, 43, 44], "050238": 42, "052390": 38, "052488": 40, "05358169887316": 31, "055898e": 4, "05754045538774986": 9, "0590850900293": 31, "06": [4, 7, 35, 40, 41, 42, 43], "06124500e": 7, "061496e": 4, "06314473570893": 31, "064": 36, "064231": 43, "06598449336948": 31, "067039": 43, "0693411301627": 31, "0698021842668": 31, "06it": 36, "07": [31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41], "071552e": 35, "073569e": 35, "0743960945353024": 36, "075098": 36, "07557590496178": 31, "079528e": 4, "079724": 43, "08": [11, 33, 38], "082370584077893": 36, "08276467339607": 31, "084188e": [40, 41], "084231": 35, "0849458981859": 31, "08611248": 13, "087": 34, "089071e": 35, "089097": 43, "09": [31, 34, 39], "09018109002636": 31, "0918519512143": 31, "093224": 38, "0967336466922": 31, "09721140081541": 31, "097542e": 35, "09it": 42, "1": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 18, 25, 27, 29, 33, 39], "10": [4, 6, 9, 10, 11, 12, 13, 24, 26, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "100": [5, 8, 12, 32, 33, 36, 37, 38, 39, 40, 41, 42, 43], "1000": [8, 11, 13, 31, 34, 35, 36, 38], "10000": [3, 8, 31, 32, 34, 36, 37, 38], "100000": 9, "1007": 4, "100923": 39, "101": [4, 9, 25, 41], "10100191843915": 9, "101101e": [40, 41], "1016": 11, "10191": 41, "102": [31, 35, 40], "1021": 36, "1022": [33, 39], "10243379095127": 31, "103": 31, "1048782222412": 31, "104960": 43, "105": [31, 38], "106": [31, 40], "107": [35, 40], "10716339774632": 31, "107589e": 35, "107714": 40, "109": 40, "109955": 4, "10_000": 35, "10k": [3, 8, 32], "11": [6, 7, 9, 10, 12, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "110": 40, "11000": 31, "111": [36, 40], "111843863834736": 36, "112": [40, 42], "113": [36, 40], "1134921793506": 31, "114099": 36, "1141": [33, 39], "114936e": 38, "11497645250662": 31, "115241": 31, "115642e": 4, "116": [31, 33], "117": 33, "11703074102877": 31, "118": [31, 42], "118776485061943": 36, "119": [31, 35], "12": [6, 9, 10, 12, 13, 24, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "120": 43, "12000": 31, "120000": 9, "120259": 4, "1203": 36, "121": 43, "122": [9, 31, 43], "123": 43, "124709": [40, 41], "125": [9, 31, 40, 41, 43], "1250": 35, "125000e": 35, "1257093988726": 31, "126": [9, 35, 43], "127": 42, "127387": 42, "127643e": 4, "12765": 34, "1277277": [40, 41, 44], "128": [4, 9, 25, 36, 40, 41, 42, 43], "1285937": [41, 44], "128981e": 35, "129": [31, 40, 42], "12942075": 8, "13": [6, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "130": [40, 42, 43], "13000": 31, "130635": 40, "131": [31, 40, 42, 43], "13113195517153": 7, "132": [31, 42, 43], "1326642": 42, "1327314": 42, "133": [7, 31, 40], "1330454507738": 31, "1331857": 43, "1332338": 43, "13334874e": 40, "133349e": [40, 41], "133435": 36, "1338": 36, "134": [7, 42], "1344499": 42, "1344709": 43, "135": [9, 10, 11, 13, 31, 34, 42, 43], "135230": 36, "13549729": 9, "135536": 35, "136": [31, 43], "1361": 36, "136118": 36, "1364500": 42, "1364554": 42, "137": [36, 37], "138": 9, "138748e": 35, "139": 42, "1390365": 42, "13930802": 8, "139443e": 35, "13it": [36, 40], "14": [6, 9, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "140": 9, "14000": 31, "140000": 9, "140301": 31, "141": [9, 42], "141472e": 4, "1419423": [40, 41], "1419729": [40, 41], "142": 9, "143": [31, 43], "1431152": 43, "1431159": 43, "1434950": 43, "143614814010155": 31, "14364013477": 36, "144": [9, 31, 36, 43], "1442153": [40, 41], "145": 9, "146128": 43, "147": [35, 36, 43], "14729": 31, "148492e": 35, "14856951716": 40, "149": 9, "15": [9, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "150": [3, 7, 31], "1500": 36, "15000": 31, "1501": [12, 33], "150422552980984": 12, "151": [42, 43], "1511": [12, 33], "152": [31, 43], "15200428214354": 31, "152110": 4, "153": 31, "15385782611257": 31, "154": 9, "155": [40, 41, 42], "1553899": 42, "1554053": 42, "156": [31, 35, 40, 41], "15646333922172": 31, "157": [9, 40, 41], "1570672": 42, "1578659": 42, "158": 31, "1587728": 42, "1587755": 42, "159": 31, "15950245682916": 36, "16": [5, 8, 9, 11, 12, 13, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "1600": [33, 39], "16000": 31, "160000": 9, "16074509661948": 31, "16097503640583": 31, "161": 9, "162": 31, "16205582305136": 9, "16227766": 4, "16272183056265": 31, "163": 36, "164": 31, "1647112": 43, "165": 31, "165472": 40, "166": [40, 41], "1668097": 43, "166811": 43, "167": 34, "1674169": 42, "1674188": 42, "1680": 36, "1684245": 42, "169": 31, "16th": 5, "17": [31, 32, 35, 36, 38, 39, 40, 41, 42], "17000": 31, "170291e": 35, "17039784123733": 31, "171": [31, 36], "17149873885836": 36, "173347": 36, "174940e": 35, "175": 31, "176": 31, "176151": 36, "1771110": 43, "1778": 38, "1781868": 43, "178191": 43, "178639": 40, "18": [31, 32, 35, 36, 38, 39, 40, 42], "180": [9, 10, 11, 13, 34], "18000": 31, "180000": 9, "180044": 38, "180223e": 35, "18093778458504": 36, "181025": [33, 39], "181072": [33, 39], "181100": 39, "181140": 39, "181165": [33, 39], "181180": 39, "181220": 39, "181298": [33, 39], "181307": [33, 39], "181997e": 35, "182": [31, 42], "183": 36, "185": 31, "18506215845034": 31, "185550": 43, "18568615760506": 31, "185701501179963": 31, "186": 31, "186224e": 35, "1866": 41, "187": [31, 35], "187153": 39, "1875": 35, "1875670": 43, "1876410": 43, "187945e": 35, "188": 31, "189": 36, "18it": 38, "19": [9, 24, 31, 32, 36, 38, 42], "190": 31, "19000": 31, "190048": 40, "19014419172949": 31, "1904204": 43, "191": 31, "191553": 44, "192": [31, 40, 41], "193": 9, "193751": [40, 41], "1937530": [40, 41], "1953": 38, "1958207": [40, 41], "196": 31, "197": 31, "1979": 5, "199": 33, "199001": 42, "1994": [12, 33], "1996": 25, "1998": [25, 32], "1999": 25, "1b7837": [31, 32], "1st": [10, 35], "2": [2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 27, 29], "20": [8, 13, 31, 32, 33, 34, 35, 36, 38, 39, 42, 43, 44], "200": [32, 36, 40], "2000": [31, 36], "20000": [9, 29, 31, 41], "200000": [9, 40], "2000000000000002": 12, "200329": 36, "2004": [5, 10], "2005": 10, "2006": 10, "2008": [4, 9, 11, 25, 41], "200839": 42, "2009": [33, 39], "2010": [41, 42, 43], "20165827269054": 40, "201870881643515": 31, "2021": [17, 40], "2022": [24, 26, 28], "2025": [24, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "202538": 35, "203907422832984": 31, "204391181178039": 36, "204598": 36, "205": 31, "20526553550616": 31, "205265e": 35, "206": 31, "207": [40, 41], "207402486338014": 31, "2074073": [40, 41], "207411": [40, 41], "2082": 38, "2084187": [40, 41], "2093": 41, "209528": [40, 41], "2095343": [40, 41], "20it": 36, "21": [31, 32, 35, 36, 38, 41], "210": 31, "2101100": [40, 41], "210248821714174": 31, "211": 29, "21105": [24, 26], "2112": 38, "2115688": [40, 41], "2115699": [40, 41], "212": 31, "212253898653216": 36, "212485": 39, "213": 5, "2133348": [40, 41], "214": 36, "21432679549264": 31, "215": 31, "215478": 40, "216284": 36, "217191e": 35, "217915e": 35, "218": [31, 42], "2180": [31, 35, 36, 37, 38], "218534": 40, "218602": 36, "219": 34, "219290": 36, "22": [25, 31, 32, 36, 38], "220000": 9, "221": [31, 40, 41], "221156": [40, 41], "222": 36, "224474510468497": 36, "225": [5, 9, 10, 11, 13, 31, 34], "2260745900828": 9, "227": 31, "2272727272727275": [10, 12], "229": 31, "23": [6, 29, 31, 33, 36, 38, 42], "23009": 4, "23029": 4, "230325e": 35, "231": [31, 35], "231456": 36, "232": 43, "232786195286195": 12, "233": 31, "2335116942948": 31, "236": [31, 42], "23606798": 4, "237449": 31, "237674": 31, "237685": 31, "237878": 31, "238012": 31, "23809400314832": 40, "238265": 36, "238568e": 35, "2392": 37, "239230087765165": 37, "239660": 39, "24": [10, 31, 34, 35, 40, 41], "240": 36, "240000": 9, "241349": 36, "242": 31, "24264069": 4, "243": [40, 41], "244": 31, "245548": 35, "245849288611552": 31, "2479099815331125": 31, "247976e": 35, "24819317309326": 31, "2482525478734": 9, "2485207100591715": [10, 12], "248601": 42, "249": 42, "25": [9, 10, 12, 25, 31, 33, 35, 36, 38, 39, 42, 43], "250": [31, 36], "2500": [35, 36], "250000": 43, "250000e": 35, "25001": [40, 41, 42], "25007": [40, 41], "250091": 36, "25019": [40, 41], "25021": 42, "25023": 43, "250293e": 35, "251": [25, 31], "2517969187055087": 9, "252": [40, 41], "2524338627573": 9, "253214": 36, "253346511768115": 9, "254413": 36, "254551": 31, "2546": 37, "254870": 31, "256": 36, "256577": 43, "257": [33, 39], "2574774320441": 36, "25751906267658": 9, "25873604835377": 31, "2599999999999958": 10, "25it": 38, "26": [24, 31, 35, 36, 37], "260000": 9, "260701": 43, "261": [25, 31, 34], "262": 31, "262794": 41, "264571e": 35, "265": 31, "26598122042385": 31, "266": [34, 36], "267010": 35, "2679084943658": 31, "26868229516313": 31, "269": [31, 33, 39], "269811e": 35, "27": [31, 36], "270": [9, 10, 11, 13, 34], "2700171641628": 31, "270738": 39, "271571": 42, "272": 36, "27312573292198": 31, "273506": 36, "2737591256329": 31, "274181e": 35, "274606e": 35, "275": [35, 36], "275597": 31, "276": 35, "276247805620471": 36, "277": [31, 33], "27715682331046": 31, "277278e": [40, 41], "278": 36, "28": [31, 32, 42], "280": 31, "28000": 9, "280000": 9, "281": 31, "281009": 42, "281077e": 35, "28190312750286": 36, "282328e": 35, "282639e": 35, "282825": 40, "282839e": 35, "283": 31, "283208e": 35, "284524": 43, "284539e": 35, "285171141696564": 40, "28539667": 8, "285938e": 41, "28600199208284": 36, "286311587314138": 6, "2869": [24, 26], "287": [31, 43], "28723544907045": 31, "28827397": 8, "288600": 42, "288679": 40, "29": [31, 36], "290123": 36, "290276": 35, "291": 31, "2913": 39, "291578e": 35, "291599": 42, "292": 36, "293": 31, "295": 31, "295998e": 35, "296": 43, "2960994535205": 31, "296448": 36, "297179": 36, "297192": 36, "297386": 35, "29738612": 35, "29799827411202": 36, "2981": 40, "2983": 39, "2988": 39, "299": 33, "29906598": 35, "299066": 35, "29951275448596": 9, "29it": 36, "2d": [11, 32], "2f": 33, "3": [4, 5, 6, 8, 9, 10, 11, 12, 13, 15, 27, 29], "30": [31, 33, 36, 39, 43, 44], "3000": [31, 36], "300000": [9, 40, 41, 42, 43], "300001": [3, 7, 9], "300494": 34, "300895": 42, "300950": 40, "30135499": 8, "301750": 31, "3019": 40, "302290": 42, "303": 36, "3034": 39, "306": 31, "30626085843903": 36, "306288625624866": 40, "3070790123992": 31, "307171": 42, "308429e": 35, "3093548792433": 36, "309672e": 35, "30it": 36, "31": [9, 31, 44], "3103": 39, "311697653860971": 31, "3125": 35, "312974e": 35, "31297518163126": 31, "315": [9, 10, 11, 13, 31, 34], "316": 31, "316194e": 35, "317": 31, "31792032399716": 31, "318": [31, 36], "31843978140822": 31, "318793": 36, "319": 31, "32": [5, 9, 29, 31, 36], "320": 35, "320600": 43, "3207": 40, "32149019323896": 31, "321571": 35, "322": 31, "322511": 35, "323151": 40, "3238172557651": 31, "325000": 42, "325002048860028": 31, "3250742033597": 31, "325393": 31, "325632e": 35, "326242": 35, "327524e": 35, "328": 31, "32871203064286": 31, "32it": 36, "33": [6, 31, 32, 36, 42, 43], "33001": [40, 41], "33005": 42, "33015": 43, "332": 31, "333": [31, 36], "333103e": 35, "333330": [33, 39], "333484": [33, 39], "333537": [33, 39], "333558": [33, 39], "333611": [33, 39], "333660": 39, "333700": 39, "333740": 39, "334": 31, "335979": 35, "3376899440512": 31, "3393": 38, "33it": 38, "34": [31, 42], "34010668e": 7, "34013": [42, 43], "34017": 7, "34031": 43, "34037": 43, "34039": 42, "340790e": 35, "341": 31, "342": 42, "343335945824833": 36, "3435613098997": 31, "344": 36, "344063e": 35, "344179e": 35, "344499e": 42, "3447": 38, "344710e": 43, "3448": 38, "345417e": 35, "346": 42, "3464101615137755": 5, "346873651294004": 9, "347268": 42, "348596": 36, "34992672555518": 31, "34it": 39, "35": [6, 9, 31, 32, 36, 41], "3500": 36, "351111": 31, "35200453863293624": 8, "3524015028072": 31, "354": 31, "355": 34, "356": 36, "356085e": 35, "356348": 43, "357740": 43, "36": [31, 38, 40], "360": [9, 10, 11, 12, 13, 31, 34], "36011": 42, "36019": [2, 43], "36021": 43, "36031": 42, "36033": 2, "36043": 42, "360494": 42, "36053": 42, "36059": 42, "36089": 2, "36093": 43, "361": [31, 35], "36113": 42, "36115": 43, "36121": [40, 41], "361253": 36, "363343": 36, "363361": 36, "3639402156592": 31, "365000": 43, "36641794139831": 36, "367675e": 35, "37": [31, 38], "370": 36, "371": [31, 36], "374": 31, "37493167303575": 9, "3750": 35, "375000e": 35, "37507189211215": 31, "37576490805884": 36, "376": 31, "376452": 36, "376844": 36, "377": 31, "379": [40, 41], "38": [31, 43], "380": 36, "38012302e": [3, 8], "38065695297433": 36, "38169400609057": 31, "382": 36, "38227145890323": 31, "3827861952861946": 12, "383022": 34, "384": 31, "385298": 43, "385690": 43, "386278": 35, "387091": 42, "388": 31, "388937651487595": 36, "39": [31, 37, 38, 39, 42, 43], "390366e": 42, "3908": 35, "392": 31, "393": 31, "396": 36, "396747": 40, "39697788484186": 31, "3988165680473372": 12, "399": 31, "39939874215915": 36, "399421": 42, "3rd": [10, 35, 42, 43], "4": [3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 29, 36, 37], "40": [4, 9, 25, 31, 35, 38, 41], "400": 29, "4000": [31, 36], "40000": [3, 7, 9, 29, 34, 41], "400000": [34, 42], "400195303621": 31, "401": 36, "401124": 40, "40161185701731": 31, "401954e": 35, "402": [31, 35], "404376e": 35, "405307": 43, "4062": 36, "40653772061722": 31, "407": 36, "407015": 42, "407396": 35, "408": 31, "4086966106361": 31, "408914": 4, "409025": 35, "41": 31, "411": 43, "411124": [40, 41], "412": [40, 41], "412055": [40, 41], "4125015273365": 36, "415": 31, "41568872479706": 31, "41810472227377": 36, "418270257129": 31, "419": [31, 35], "42003": 42, "42007": 4, "42039": [2, 4, 41], "420469": 36, "42047": 43, "42049": [2, 4, 41, 43, 44], "42059": 43, "42061": 43, "42069": 43, "42073": 4, "42079": 42, "42085": 4, "421": [31, 36], "42101": 42, "421085e": 36, "42109": 42, "42111": 42, "421124": [40, 41], "42115": 43, "42121": 43, "42125": 42, "42129": 42, "42131": [42, 43], "422": 42, "422251": 42, "4222925698438": 9, "422652": 4, "423": 36, "424": 31, "42449780936565": 36, "425": 42, "4250237185032414": 5, "426124": 44, "427": 31, "427998e": 35, "428": [31, 36], "4286535909853": 31, "43": [35, 36, 40, 41], "430202": 40, "431124": [40, 41, 44], "431977": 36, "4326": [2, 31, 35, 36, 37, 38], "433": 31, "4347341620387": 31, "434951e": 43, "43575026244963": 36, "436": 35, "436124": 44, "4375": 35, "438": 36, "44": 6, "441124": [40, 41, 44], "44146152059986": 31, "442153e": [40, 41], "443458": 34, "443930e": 35, "444": 31, "444444444444445": 12, "445": 31, "446124": [41, 44], "447": 36, "447563e": 35, "449": 31, "45": [9, 10, 11, 13, 34], "4500": 36, "450887573964497": 12, "451368": 42, "454": 31, "455192e": 35, "455312467871126": 31, "457": 36, "459": 31, "46": 34, "460026": 43, "4604640495581": 31, "4605": 39, "462": [31, 43], "4626399863605": 31, "462801e": 35, "4637541814681": 31, "464": 35, "46406810989924": 31, "46428626165317": 9, "464543": 36, "46481030213619": 31, "465": 36, "4654511718278": 31, "4664895081685": 31, "467516e": 35, "468": 36, "46845881256164": 9, "46862676054138": 36, "468678977272724": 40, "469": 31, "469078276366588": 36, "46963692e": 36, "47000840562424": 9, "47028231": 13, "470425": 40, "471": 42, "471774": 39, "474": 31, "47458020804596": 31, "475": 31, "475344": 34, "475618051522": 31, "476": 31, "476724": 36, "477": 31, "47700633100357": 31, "47763402363177": 31, "477932": 43, "47814412070759": 40, "47831301322111": 31, "478527e": 35, "47866897e": 7, "47898266": 35, "478983": 35, "479106e": 35, "479607": 35, "48": [31, 33], "480": 31, "48011070480095": 31, "481": 31, "482": 42, "48223528985847": 31, "484039": 38, "48457649663337": 42, "48531991122005": 31, "487": 31, "487043e": 35, "4883": 35, "48885": 4, "48930987": 35, "489310": 35, "48it": 40, "490": 35, "490335": 42, "490678": 43, "491321e": 38, "49521343700425": 31, "49573073424695": 9, "4959": 36, "496371148989": 31, "497": 31, "4984156012293": 31, "498967": 36, "499": 31, "499411": 36, "4f": 37, "5": [3, 5, 7, 8, 9, 10, 11, 12, 13, 29, 32, 33, 36, 37, 39, 44], "50": [34, 35, 36, 38, 42, 43], "500": [3, 8, 29, 31, 34, 36, 37], "5000": [31, 35, 36], "500000": 43, "500000e": 35, "50003": 43, "50019": 42, "50023": 43, "501": 36, "504": [40, 41], "5068": [40, 41], "507": [40, 41], "508": 36, "509": 31, "51": 31, "510": 31, "5106507065328003": 31, "51079969541095": 31, "512": [31, 36], "512382": 40, "513": 31, "51308060330132": 31, "51396771377688": 31, "514": 35, "51466805e": [3, 8], "515": 31, "517309": 40, "51732783411336": 31, "51855229542514": 31, "519": 31, "5199996240335": 31, "52": [9, 31, 36], "52055471278891": 31, "521": 31, "52240": 4, "523": 31, "524": 31, "524056": 36, "524606": 43, "524700893642784": 9, "525": 31, "52548794337903": 31, "526495": 35, "52649515": 35, "526820": 34, "527864443249059": 12, "5289621426542": 31, "529001": 34, "529003": 44, "53": [9, 31, 36, 38], "530": 31, "5306285384275498": 9, "530888372832905": 31, "531986": 36, "532": [40, 41], "533296": 36, "533481": 40, "535": 42, "5358169887317": 31, "5361202155322": 31, "536776": 36, "5374122496355085": 31, "537623": 42, "5387549206406": 31, "5390010625901": 36, "539159": [40, 41], "539445": 42, "54": [33, 38], "540220": 36, "541": 43, "541045": 31, "541315": 36, "5419": 40, "542717390394078": 36, "543164": 42, "5434027777777798": 10, "54340278": 10, "543432e": 35, "54413144e": 36, "544871": 36, "545": 35, "545209": 31, "54535714285717": 40, "545416": 31, "546963": 36, "547207": 36, "548294": 31, "548982": 31, "549112426035503": 12, "55": [6, 41], "5500": 36, "550255": 38, "5504691463605988": 12, "550673": [40, 41], "55099734461928": 36, "551466": 31, "55343733049868": 36, "555": 43, "555143": 43, "556": 35, "556436": [40, 41], "556471": [40, 41], "55681949827738": 31, "558025": [40, 41], "559": 42, "56": [36, 40, 42], "561271e": 35, "5625": 35, "562911": 42, "564278e": 38, "564830": [40, 41], "566468": 4, "566481": 4, "566521": 36, "567181": 43, "569": 43, "569245": 43, "57061399215138": 31, "570672e": 42, "571369": 35, "5716": 35, "571970": 35, "573660": 40, "574298": 43, "57592092723812": 36, "576700": 36, "577242": 36, "577791e": 35, "578659e": 42, "579": 42, "58": [12, 33, 35, 42], "580058": 42, "58025221e": 40, "580614e": 35, "58070721486183": 31, "582798": 38, "583": 31, "5847": 37, "5850": 35, "587": 42, "58769932902283": 31, "588314e": 35, "5893986876048": 31, "589652954130884": 31, "59": [36, 43], "590": 41, "594676": 39, "59771789": 35, "597718": 35, "598170e": 35, "598269231002035": 31, "598535": 36, "5988333289926": 31, "599394e": 35, "59it": 39, "5aae61": 32, "6": [5, 8, 9, 10, 11, 12, 13, 29, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "60": 31, "6000": [31, 36], "60000": [9, 29], "600344": [40, 41], "601008738729746": 31, "601553": 42, "60186279711772": 31, "602242": 36, "602858e": 35, "60333362": 13, "60396671766017": 31, "605081": 36, "6051705066962": 31, "60555128": 4, "609438": 36, "60it": 39, "61": 31, "611480": 36, "612": 31, "612849": 35, "613496": 35, "614440": 4, "61453923492877": 31, "614562": 39, "616242e": 35, "61640252965907": 36, "6164978124731": 31, "617644883145928": 31, "618342": 42, "62": [31, 36, 40, 41], "620010": [40, 41], "6206": 36, "620803405890598": 9, "622": 31, "62200842332824": 31, "623": 31, "624234": 35, "62423403": 35, "624236": 36, "625": [10, 12, 35, 44], "6250": 35, "625000e": 35, "625427": 44, "6261606284401": 31, "628": 31, "628524": 38, "629350": 35, "6304": 36, "632858": 43, "633": 36, "633434": 36, "633872": 43, "634": 43, "634947": 36, "6352081433735": 31, "636": [31, 41], "636857": 43, "63687956281643": 31, "63708666646102": 31, "637424": [40, 41], "637979e": 35, "638550982259346": 31, "6386630811210166": 5, "64": [35, 36], "640": [33, 39], "642713207946493": 36, "6429803864779": 31, "6435210052487": 31, "644631": 36, "645": 36, "645393996449286": 31, "645747294684": 31, "647113e": 43, "649048e": 35, "64929267428977": 31, "64983095": 8, "65": 31, "6500": 36, "65000": 29, "652334": 36, "65261191763223": 31, "6530346357598": 31, "654": 43, "654812": 42, "65603911977024": 31, "656987": 42, "657": 43, "6577818786159": 31, "658212513150545": 31, "659": 34, "65921989070411": 31, "659756": 42, "660461": 43, "66058859963124": 31, "662": 36, "662744": 35, "663337": 42, "6643": 36, "66432": 34, "664646": 38, "665": 43, "6655005978438": 36, "66797506865373": 31, "668988496071829": 12, "671": [40, 41], "671094444673457": 31, "671315": 31, "671378": [31, 36], "671459e": 35, "673103": 43, "6749": 37, "6753709826502": 31, "67546701766707": 9, "6758": 37, "677": 43, "67749687987293": 36, "6783974224309782": 8, "67911947342787": 31, "68": [31, 33, 43], "680877": 44, "684106171502": 31, "684245e": 42, "684282": 42, "6853257044600705": 43, "685442": 43, "686": 42, "6875": 35, "689": [31, 36], "69": [31, 33], "691261185377": 36, "692": 36, "6922867158": 36, "692587": 43, "6928203230275509": 5, "693": 43, "693238": 36, "6949744": 13, "69602854": 13, "6965620853512": 31, "696596e": 35, "696655": 36, "699327e": 35, "6994082840236686": 12, "7": [3, 6, 8, 9, 10, 12, 13, 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "70": [24, 26], "7000": [31, 36], "700473": 34, "704020": 40, "706": 36, "70615833704335": 31, "70637848936525": 31, "707205": 43, "707327": 35, "707864": 36, "708": 36, "708155e": 35, "708315": 31, "708401": 42, "708844": 31, "709": 42, "709089": 35, "71": 31, "710706": 31, "712": 31, "712477e": 35, "715": 43, "715502": 36, "71584839734442": 31, "717101": 39, "71808346707526": 9, "71946771": 35, "719468": 35, "71it": 36, "72": 31, "7204192104105": 31, "720513": 34, "721": [40, 41], "72129368829498": 31, "72180532432975": 9, "72263681402603": 31, "72284475158114": 31, "724090": 34, "7243363658593012": 31, "724455358567752": 9, "72644527380828": 31, "72740449e": [3, 8], "728": [40, 41], "72916006e": 8, "73": [31, 35], "732441": 36, "732648": 36, "73271183855024": 31, "733921": 36, "734420": 36, "736": 34, "736665": 36, "73736564231757": 31, "738": [31, 42], "742": 31, "742198e": 35, "74233718690067": 31, "742790": 31, "74339224376814": 36, "74437591": 35, "744376": 35, "744675e": 35, "745": [40, 41], "746984e": 35, "748935": 34, "749329": 38, "75": [10, 12, 31, 33, 35, 36, 38, 40, 42, 43], "7500": [35, 36], "750000": 43, "750000e": 35, "7501437842243": 31, "752124": 35, "75388257201456": 31, "75394078058895": 31, "755602": 36, "756134": 36, "759069": 38, "76": [31, 43], "76039622005987": 31, "76067852233155": 31, "760905": 43, "762a83": [31, 32], "7638220314215": 31, "765": 25, "76505875155453": 31, "765146": 31, "765479": 36, "766008": [40, 41], "7672138047138048": 12, "767505": 35, "76750526": 35, "768622e": 35, "77": 25, "771111e": 43, "772099996699211": 36, "77272968527348": 31, "773": 25, "7745966692414834": 5, "7752958579881657": 12, "776": 31, "777": 10, "778474e": 35, "7789194687348": 36, "778941": 35, "779517": 43, "779787": [40, 41], "77it": 36, "78": 40, "7800038510683": 36, "78030747135494": 31, "780406e": 35, "780781e": 4, "781": 31, "78213173974365": 31, "784036": 42, "78509306690796": 31, "786": 10, "7883417508417505": 12, "78853": 4, "788809": 44, "79094449257357": 31, "79200013309745": 36, "7954545454545454": 10, "795520367595483": 7, "796418": 35, "79972318328916": 36, "8": [3, 5, 7, 9, 10, 12, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "8000": [31, 36], "80000": 9, "800064": 43, "801185": 43, "803996415126576": 36, "80480638925906": 31, "805222": 31, "80778907487542": 31, "80984954198823": 31, "80cdc1": 38, "81": [33, 40], "810265": 36, "811337": 36, "812": 42, "8125": 35, "81297711661153": 31, "814415e": 35, "81459916724543": 31, "816": [40, 41], "817863": 31, "818": 31, "818780": 44, "81901919": 39, "819103": 43, "82": [31, 40, 42], "8203621099379": 31, "82287362e": 7, "82380184599977": 31, "824114": 35, "824728249874155": 31, "825": 34, "82842712": 4, "828618e": 35, "82909048794102": 31, "829609945352054": 31, "83": [31, 40], "83032768328087": 36, "831391": 40, "838043": 39, "839134": 36, "83it": 39, "84": [31, 40], "8412232754002": 31, "84236013485516": 31, "84267974441974": 31, "843": 42, "84364743170343": 9, "844": 31, "844483862235393": 31, "84533547443391": 31, "846972e": 38, "847": 43, "847603": 36, "847620e": 35, "84868954476826": 31, "849220": 35, "84922016": 35, "8497041420118343": 12, "85": [12, 33, 36, 40], "8500": 36, "851185": 36, "85265986": 35, "852660": 35, "852939": 36, "85490067201857": 31, "85575520062633": 31, "857744057998787": 31, "857940058678224": 9, "8585979": 35, "858598": 35, "860991900760425": 36, "861": 34, "861458": 42, "86215475": 35, "862155": 35, "863477": 42, "86386526565153": 9, "864079": 36, "86662237704212": 31, "86it": 36, "87": 31, "87106047886697": 36, "871326": 38, "87133039855246": 31, "87395842894333": 31, "875": 44, "8750": 35, "875000e": 35, "875977e": 35, "877575e": 35, "878": 42, "87815789262632": 9, "879043": 42, "87it": 37, "88309726034151": 31, "8838": 36, "884205": 36, "885612e": 35, "888994": 43, "89": [29, 38], "8905537482715": 31, "8924548396273": 31, "895": 43, "89534": 41, "895497": 42, "896": 42, "897133": 35, "897284e": 35, "898245e": 35, "89984110553695": 7, "89it": 36, "9": [3, 4, 6, 8, 9, 10, 12, 13, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "90": [9, 10, 11, 13, 31, 34, 36], "9000": [31, 36], "900000": 42, "9003": 43, "900608845358136": 31, "900778": 43, "902991e": 35, "903476166101086": 31, "903773": 42, "904204e": 43, "904780": 35, "90478027": 35, "905": [40, 41], "90650338632196": 36, "90676540829": 40, "907773": 44, "908": 34, "90800853750102": 31, "908555": 38, "91": [31, 40], "91031223109565": 31, "911138570395592": 37, "91222896e": [3, 8], "9129": 4, "912914": 43, "913": 43, "91350": 4, "91380327517797": 9, "91416301739787": 31, "91425404617246": 31, "915994": 44, "9184996683511": 36, "919842": 36, "91it": 36, "920356": 40, "920779": 40, "92101476704724": 31, "92146189656636": 31, "922": 43, "92200000e": 40, "922321": 43, "9230517999226": 31, "923824296958912": 36, "925": 41, "92638153821945": 31, "9270": 37, "927684": 35, "927833": 43, "928600": 42, "93": [31, 42], "930238e": 35, "930495950380212": 36, "93049595e": 36, "933": 43, "933881": 43, "934750": 31, "93559809124235": 31, "935704": [40, 41], "936": [40, 41], "936610e": 35, "9375": 35, "939": [40, 41], "939120": 35, "939483": 40, "94": 34, "9417689846013": 31, "942269e": 35, "94300451436615": 36, "944": 31, "946308": 43, "9489257088419": 31, "949918937899707": 12, "95": [12, 31, 33], "9500": 36, "950000": [42, 43], "950179": 42, "95249653237697": 31, "952927e": 4, "9546403546353": 31, "95466232828718": 36, "9553193442247": 31, "957437e": 35, "958207e": [40, 41], "958282": 31, "95829021740866": 31, "959002e": 35, "96": 31, "961": [40, 41], "9614557671535335": 7, "964626": 40, "9692829902109": 31, "96961847": 13, "97": 31, "97097998057058": 31, "974452e": 35, "975": 34, "97586718066003": 31, "976144e": 35, "976618": 42, "977": 42, "977057": 36, "977408": 42, "97765967211234": 31, "978": [40, 41], "979345": 4, "97it": 40, "98": [31, 36, 40], "981609": 4, "9817928939993": 31, "981884": 35, "9843806262891": 40, "9894831771649137": 31, "99": 40, "991348": 43, "99198418e": 36, "9922577497215": 36, "9929787628823334": 8, "9948666113324": 31, "9963959396589": 31, "9970ab": 32, "997349965762": 9, "998328": 43, "9987755386882": 31, "99it": 38, "9f": 40, "A": [3, 7, 9, 10, 11, 12, 13, 31, 32, 33, 34, 42, 43], "AND": 41, "And": [32, 40], "As": [10, 31, 36], "At": [32, 39], "BUT": 33, "Be": 33, "But": [3, 24, 32, 34, 35, 40, 41, 42, 44], "By": [3, 31], "For": [32, 34, 35, 40], "If": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 23, 24, 31, 33, 34, 35, 36, 40, 41, 42, 43], "In": [10, 27, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44], "It": [2, 3, 5, 6, 8, 9, 10, 11, 12, 13, 31, 32, 33, 34, 35, 36, 38, 41, 42, 43, 44], "Its": [6, 32], "No": [25, 33, 38, 40], "Not": [1, 33, 34], "OF": 27, "On": [33, 37], "One": 38, "Or": 41, "That": [5, 8, 31, 36, 37, 38, 41], "The": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 24, 29, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "Their": [42, 43], "Then": [2, 9, 24, 36, 38, 40, 42, 43, 44], "There": [24, 31, 33, 35, 38, 41], "These": 34, "To": [24, 31, 35, 37, 44], "With": [24, 27, 32, 35, 37, 38, 39], "_": [32, 36, 39, 40], "_automat": 31, "_experiment": 31, "_lag": [31, 32], "_linear_manu": 31, "_model": 31, "_nestedsequ": [2, 3, 4, 5, 6, 8, 10, 11, 13], "_nugget": 32, "_rang": 32, "_sill": 32, "_supportsarrai": [2, 3, 4, 5, 6, 8, 10, 11, 13], "_weights_arrai": 1, "a6611a": 38, "a6dba0": 32, "ab": 40, "abl": [27, 40], "about": [2, 5, 24, 31, 33, 34, 35, 36, 38, 39, 41, 42, 43, 44], "abov": [12, 31, 32, 35, 38, 42, 43], "abrupt": [42, 43], "absolut": [5, 9, 11, 12, 31, 35, 38, 40, 41], "academ": 10, "accept": 2, "access": [20, 24], "account": [10, 36, 43], "accur": [34, 42, 43], "accuraci": [5, 42, 43], "achiev": [40, 41], "across": [37, 39], "activ": 27, "actual": [31, 32, 36, 39, 42, 43], "ad": [6, 35], "adapt": [1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "addit": [22, 34, 35, 38], "administr": 41, "advanc": 21, "advantag": 33, "affect": [3, 7, 33, 34, 35, 37, 38, 44], "after": [9, 27, 32, 35, 38, 40, 41, 42, 43, 44], "ag": 9, "again": [3, 41], "against": 12, "agg_lag": 9, "aggreg": [0, 1, 2, 3, 24, 26, 28, 35, 40, 41, 44], "aggregared_data": 9, "aggregatedvariogram": 9, "agregowanych": 28, "ai": 44, "air": [17, 28, 34], "air_pollut": 34, "algorithm": [3, 5, 7, 8, 9, 10, 13, 25, 31, 32, 33, 35, 36, 38, 41, 42, 43], "alia": [9, 10, 31], "alias": 31, "all": [1, 2, 3, 5, 6, 8, 9, 10, 11, 12, 21, 23, 31, 32, 34, 35, 36, 37, 38, 39, 40, 43], "all_filt": 38, "allow": [3, 5, 7, 8, 13, 36], "allow_approx_solut": [8, 13, 36], "allow_approximate_solut": [3, 5, 8, 37], "allow_lsa": [7, 42], "allowed_model": 33, "almost": [31, 40], "alon": [5, 24], "along": [27, 31, 35, 41, 42, 43, 44], "alpha": [31, 34, 35, 36, 37, 38, 40, 44], "alreadi": 37, "alter": 2, "alwai": [32, 33, 34, 36, 38, 40, 42, 43, 44], "america": [12, 33], "amplifi": [36, 38], "an": [2, 5, 7, 8, 9, 10, 11, 13, 31, 32, 33, 34, 35, 36, 38, 39, 40, 43], "analys": 33, "analysi": [8, 9, 11, 24, 29, 31, 34, 35, 38, 40, 41, 42, 43], "analyz": [29, 40, 41, 42, 43], "angl": [2, 3, 8, 10, 34, 36], "angles_between_representative_point": 2, "angles_to_unknown_block": 1, "ani": [2, 3, 4, 5, 6, 8, 9, 10, 11, 13, 31, 32, 33, 34, 40, 42, 43], "annot": 1, "anomal": 35, "anoth": [8, 33, 34, 35, 38, 40], "anyth": 2, "anywai": [3, 8], "apart": 33, "apcom": 5, "api": [1, 20, 21, 24, 34, 35], "append": [32, 36, 38, 40, 42, 43], "appli": [9, 31, 32, 33, 37], "applic": [5, 8, 10, 31, 36, 42], "approach": [30, 43], "appropri": 40, "approxim": [3, 5, 7, 8, 13, 31, 34, 36], "apt": 27, "ar": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 22, 23, 24, 25, 27, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "arbitrari": 36, "area": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 13, 21, 24, 28, 30, 31, 32, 33, 34, 36, 40, 41], "area_geometri": [2, 3, 4, 7, 9], "area_index": [2, 3, 4, 7, 9], "area_to_area_pk": [7, 43, 44], "area_to_point_pk": 7, "area_valu": [2, 3, 4, 7, 9], "areal": [7, 9, 24, 40, 41, 42, 43, 44], "areal_centroid": 40, "areal_input": 40, "argument": [35, 42, 43], "armstrong": [25, 32], "armstrong_data": 10, "around": [13, 31, 32, 35, 36, 38], "arr": [5, 33], "arrai": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 31, 32, 34, 35, 39, 40, 42, 43], "arraylik": [2, 3, 5, 6, 8, 10, 11, 13, 31], "arrow": 34, "art": 5, "artifici": 32, "as_cloud": [10, 31], "as_datafram": [10, 35], "asarrai": 32, "ascend": 38, "asid": 32, "assess": 17, "assign": [2, 6, 10, 11, 31, 33, 37, 40, 41], "associ": 12, "assum": [5, 10, 36, 37, 38, 42, 43], "assumpt": [10, 35, 36, 41], "ata": [3, 43], "ata_pk": 7, "atp": 3, "atp_pk": 7, "attent": [42, 43], "attr": 31, "attribut": [2, 3, 5, 8, 9, 10, 11, 12], "attributeerror": [2, 4, 5, 9, 12], "attributesettofalsewarn": 10, "author": [2, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "auto": 11, "autofit": [3, 5, 7, 12, 31, 33, 39, 40], "autom": [11, 35], "automat": [40, 41], "avail": [3, 5, 8, 9, 10, 11, 12, 31, 32, 36], "averag": [5, 9, 10, 31, 32, 35, 36, 40, 41, 42, 43], "average_inblock_semivari": 9, "average_semivari": [10, 38], "avg_block_to_block_semivari": 9, "avg_inblock_semivari": 9, "avg_rms": 36, "avoid": [23, 36, 40], "awai": [5, 9, 11, 12], "awar": [31, 42], "ax": [10, 34, 37, 38, 39, 40, 42, 43, 44], "axi": [9, 10, 11, 13, 34, 35, 39, 40], "b": [4, 10, 12, 33], "b_coordin": 41, "b_id": [42, 43], "b_valu": 41, "back": 35, "backend": 3, "bad": 31, "balanc": 35, "balenoptera": 10, "banff": 10, "bar": [3, 5, 8], "bare": 32, "base": [0, 1, 3, 5, 8, 9, 10, 12, 13, 17, 21, 24, 27, 30, 31, 32, 33, 35, 36, 39, 40, 43, 44], "base1": 40, "base2": 40, "base3": 40, "base4": 40, "base5": 40, "base6": 40, "baselin": [9, 10, 11, 13, 32, 34, 37], "basic": [10, 21, 25, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "batch": 40, "becaus": [5, 27, 31, 32, 33, 35, 36, 38, 40, 42, 43, 44], "becom": [6, 31, 36], "been": [9, 12, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "befor": [5, 8, 9, 31, 32, 33, 35, 36, 38, 40, 41, 42, 43], "begin": [9, 10, 11, 13, 31, 34, 36, 38], "behav": [31, 32, 34, 40, 41], "behavior": [31, 32, 35, 36, 37, 41, 42, 43], "behind": [31, 40], "being": 31, "below": [3, 9, 12, 31, 35, 38, 42, 43], "benchmark": [24, 30], "best": [31, 32, 33, 34, 36, 37, 38, 40], "bet": 31, "beta": [], "better": [3, 5, 24, 31, 34, 35, 36, 37, 38, 41, 42, 43], "between": [2, 4, 7, 8, 9, 10, 11, 12, 24, 31, 32, 33, 35, 36, 37, 38, 40, 41, 42, 43], "bia": [5, 8, 9, 11, 12, 24, 31, 36, 40, 42, 43], "bias": 38, "bias_experimental_model": 8, "bias_model": 8, "bias_valu": 8, "bibliographi": 24, "big": [8, 37, 41, 42, 43], "bigger": [9, 11, 12, 41], "bin": [8, 9, 10, 11, 13, 34, 35, 38, 42, 43], "bin_width": 35, "black": [31, 32, 34, 40, 44], "block": [0, 1, 3, 9, 10, 21, 24, 30, 41, 42, 43], "block_a": 2, "block_arr_to_dict": 1, "block_b": 2, "block_base_dist": 1, "block_coordin": 2, "block_data": [2, 41], "block_dataframe_to_dict": 1, "block_dist": 4, "block_id": [2, 7, 42, 43], "block_id_col_nam": 4, "block_index": [2, 3, 4, 7, 9], "block_pair": 2, "block_real_valu": 2, "block_representative_point": [2, 41], "block_to_block_semivari": 9, "block_to_blocks_angl": 1, "block_valu": [2, 41], "blockpk": 1, "blockpoissonkrig": 1, "blocks_dist": 2, "blocks_index": 2, "blocks_index_column": 2, "blocktoblockkrigingcomparison": 1, "blur": 32, "bonnin": 10, "book241284": 25, "bool": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 31], "boolean": 36, "bore": 32, "both": [2, 31, 34, 35, 38, 40, 41], "bottom": [34, 35, 38], "bound": 35, "boundari": 32, "box": [10, 38], "boxplot": [10, 38], "break": [1, 24], "breast": [40, 41, 42, 43, 44], "brew": 27, "bright": 34, "brighter": 34, "bring": 38, "buffer": [2, 3, 4, 5, 6, 8, 10, 11, 13], "bug": 18, "build": [9, 37, 38, 39, 40], "build_experimental_variogram": [3, 8, 9, 10, 31, 32, 33, 36, 37, 41], "build_mask_indic": 1, "build_theoretical_variogram": [3, 8, 9, 12, 29, 31, 32, 36, 37, 38], "build_variogram_model": 31, "build_variogram_point_cloud": 1, "built": [32, 41], "byte": [2, 3, 4, 5, 6, 8, 10, 11, 13], "c": [10, 12, 25, 27, 29, 33, 38], "c2a5cf": 32, "cadmium": 33, "cageo": 11, "calc_block_to_block_dist": 4, "calc_pair_dist": 2, "calc_point_to_point_dist": 1, "calcul": [1, 2, 4, 5, 8, 9, 10, 11, 12, 21, 29, 31, 33, 34, 35, 36, 38, 39, 40, 42, 43, 44], "calculate_angles_between_rep_point": 2, "calculate_angular_differ": 1, "calculate_angular_dist": 1, "calculate_average_p2b_semivari": 1, "calculate_avg_inblock_semivari": 9, "calculate_avg_semivariance_between_block": 9, "calculate_covari": 10, "calculate_deviation_decreas": 9, "calculate_deviation_ratio": 9, "calculate_distances_between_rep_point": 2, "calculate_experimental_variogram": 35, "calculate_model_error": 12, "calculate_point_support_dist": 2, "calculate_semivari": [10, 29], "calculate_spatial_dependence_index": [12, 33], "calculate_weighted_block_to_block_dist": 2, "call": [31, 32], "cambardella": [12, 33], "camera": 38, "can": [1, 2, 3, 5, 6, 7, 8, 10, 13, 24, 27, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "cancer": [40, 41, 42, 43, 44], "cancer_data": [2, 3, 4, 7, 9, 40, 41, 42, 43, 44], "cannot": [9, 12, 31, 32, 33, 36], "care": [31, 32, 33, 40], "case": [5, 14, 27, 29, 31, 36, 37, 38, 40, 41, 42, 43, 44], "catastroph": 36, "catch": 34, "categor": 33, "caus": 4, "caution": 35, "cautiou": 33, "cb": 3, "cdist": 4, "cell": [2, 4, 31, 38, 41, 42, 43], "censu": [41, 42, 43], "center": [9, 10, 11, 13, 31, 34, 35], "central": [12, 33], "centroid": [0, 1, 2, 3, 21, 24, 30, 40, 41, 43, 44], "centroid_pk": 7, "centroid_poisson_krig": [7, 42, 43, 44], "centroidpoissonkriginginput": 1, "challeng": 38, "chanc": [38, 42, 43], "chang": [10, 24, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "changelog": 24, "channel": 40, "chaotic": 32, "check": [5, 12, 20, 31, 32, 34, 36, 38, 40, 41, 42, 43], "check_id": 1, "check_nugget": 1, "check_rang": 1, "check_sil": 1, "check_undefin": 5, "chemic": 33, "choic": [36, 38], "choos": [31, 32, 40], "choropleth": [9, 40, 44], "chosen": [12, 31, 32, 36], "chosen_model": 31, "circl": [10, 31, 34], "circular": [9, 11, 12, 31, 32, 34], "circular_model": 31, "citi": [31, 33], "cividi": [32, 39], "clarif": [37, 38, 41, 42, 43], "clarifi": [42, 43], "clark": 5, "class": [2, 8, 9, 10, 11, 12, 21, 31, 32, 34, 35, 38, 41], "classic": [33, 36, 39], "clean": [10, 35, 38, 40], "clean_mask_indic": 1, "clearli": [39, 42, 43], "cli": 20, "clip": 5, "close": [5, 9, 10, 11, 12, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43], "closer": [33, 35, 37, 41, 42, 43], "closest": [1, 2, 3, 5, 6, 8, 9, 11, 12, 32, 33, 36, 37, 38, 41, 44], "closest_neighbor": 2, "cloud": [0, 1, 21, 30, 31, 40], "cloud_with": 38, "cloud_with_rem": 38, "cloud_without": 38, "cloud_without_rem": 38, "cluster": [3, 5, 7, 8, 13, 36], "clusterdetector": 1, "cmap": [31, 32, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44], "code": [2, 29, 34], "col": [32, 33], "collect": 10, "color": [31, 32, 40, 42, 43, 44], "column": [2, 3, 4, 31, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44], "com": 25, "come": [33, 35, 36, 42, 43], "command": 27, "commun": [16, 24], "compar": [5, 31, 33, 35, 36, 37, 38, 40, 41], "comparison": [8, 10, 31, 32, 33, 34, 38, 40], "complet": [1, 35], "complex": [2, 3, 4, 5, 6, 8, 10, 11, 13, 21, 41], "compound": 33, "comput": [3, 12, 25, 31, 40], "computation": 31, "concentr": [33, 34, 39], "concept": [34, 38, 42, 43, 44], "conda": 29, "condition": 32, "cone": 31, "configur": 27, "consid": [10, 12, 35, 38, 42, 43], "consider": 33, "consist": 41, "constant": [32, 37, 40], "contain": 38, "contribut": 18, "contributor": 14, "control": [6, 31, 32, 34, 36, 37, 41], "conveni": [42, 43, 44], "convolve2d": 32, "coo_matrix": 32, "coordin": [2, 4, 5, 6, 8, 9, 10, 11, 13, 31, 32, 34, 36, 42, 43, 44], "copernicu": 38, "copi": [10, 33, 38, 44], "copper": 33, "core": [0, 3, 9, 21, 22], "correct": [25, 31, 38], "correl": [10, 12, 24, 31, 32, 37], "could": [8, 10, 12, 13, 24, 31, 36, 37, 38, 42, 43, 44], "count": [10, 35, 36, 38, 40, 42, 43, 44], "counti": [24, 40, 41, 42, 43, 44], "countri": [24, 33], "cours": 17, "covari": [0, 1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41], "covariance_fn": 1, "covariogram": 10, "cover": [1, 31, 36, 38], "coviari": [10, 31], "covid": 24, "cr": [2, 3, 31, 35, 36, 37, 38, 40, 44], "cran": 33, "creat": [4, 5, 9, 10, 11, 12, 13, 24, 25, 27, 31, 33, 37, 40, 41, 42, 43], "creation": [3, 5, 7, 8, 13], "crete": 32, "crime": 28, "cross": [0, 34], "cross_valid": 5, "csv": [9, 31, 33, 35, 36, 37, 38, 39], "cubic": [9, 11, 12, 31, 32], "cubic_model": 31, "current": 9, "current_deviation_decreas": 9, "current_ratio": 9, "curv": [11, 12, 32, 33], "custom": [10, 31], "custom_bin": [10, 11, 31], "custom_weight": [9, 10, 11, 31], "cv": 10, "cvc": 35, "d": [2, 3, 4, 7, 9, 10, 11, 12, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "d9f0d3": 32, "d_": 37, "danger": 31, "danych": 28, "dark": 34, "darker": 34, "dash": 31, "dask": [1, 3], "data": [0, 1, 3, 6, 7, 8, 9, 10, 11, 12, 13, 17, 21, 24, 28, 29, 32, 33, 34, 35, 36, 37], "data_cr": [3, 44], "datafram": [2, 4, 10, 31, 36, 39, 42, 43], "dataset": [1, 2, 3, 5, 7, 8, 10, 13, 24, 26, 28, 32, 33, 34, 36, 38, 39, 40, 41, 42, 43, 44], "date": [31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "dcv": 9, "deal": [31, 35, 44], "debug": [9, 36], "decid": [2, 32, 33], "decis": [1, 24, 34, 38, 42, 43], "deconvolut": [0, 1, 2, 4, 10, 21, 24, 25, 41, 42, 43, 44], "decreas": [6, 9, 31, 37, 41], "def": 32, "default": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 31, 34, 36, 41, 42, 43], "defin": [9, 31, 32, 39, 40, 44], "define_whitening_matrix": 1, "definit": [32, 34], "degre": [3, 8, 9, 10, 11, 13, 31, 36], "deliv": 36, "dem": [3, 8, 11, 29, 31, 35, 36, 37, 38], "dem_fil": 31, "dem_geometri": [31, 35, 36, 37, 38], "denois": 43, "denomin": [10, 37, 40], "dens": [5, 9, 11, 12, 35, 40, 41, 42, 43], "densiti": [24, 35], "depend": [1, 9, 12, 18, 30, 31, 32, 34, 35, 36, 41], "deriv": [4, 8, 9, 11, 12, 31, 35, 36], "describ": [2, 9, 10, 11, 23, 31, 34, 35, 36, 38, 41, 42, 43], "descript": [12, 31, 33], "design": 2, "desir": 42, "detail": [4, 34], "detect": [10, 38], "determin": [38, 42, 43], "detrend": 8, "deutsch": [10, 25], "dev": [9, 22, 27], "develop": [22, 24, 37], "deviat": [0, 1, 10, 35, 38, 41, 42, 43], "deviation_direct": 9, "deviation_weight": [11, 12], "df": [31, 33, 34, 35, 36, 37, 38, 39], "dfc27d": 38, "dict": [2, 7, 8, 9, 10, 11, 12, 13, 31], "dict_kei": [2, 8, 10], "dict_represent": 31, "dictionari": [2, 8, 10, 11, 12, 13, 31], "did": 31, "didn": [9, 40], "differ": [5, 8, 9, 10, 12, 31, 32, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44], "digit": [31, 36, 38], "dim": 13, "dimens": [6, 13], "dimension": [6, 32], "diminish": 37, "dir_neighbors_selection_method": [31, 34, 39], "dir_var": 34, "direct": [0, 1, 2, 8, 9, 11, 12, 13, 30, 31, 35, 36], "directional_covari": 1, "directional_covariogram": 1, "directional_point_cloud": 1, "directional_semivariance_cloud": 1, "directional_semivariogram": 1, "directional_variogram": 10, "directional_weighted_semivari": 1, "directionalvariogram": [10, 34, 39], "directli": [31, 33, 35, 36, 38, 42, 43], "directori": 23, "dirvar": 39, "disaggreg": [17, 24], "disappoint": 32, "discord": [16, 40], "discret": [4, 34], "diseas": [17, 24], "dispers": [35, 40, 42, 43], "dissimilar": [10, 12, 31], "distanc": [0, 2, 3, 5, 7, 8, 9, 10, 11, 12, 21, 24, 31, 32, 34, 35, 36, 37, 38, 41], "distances_between_block": 9, "distances_between_neighbor": 2, "distances_between_point_support": 2, "distances_between_representative_point": 2, "distant": [5, 9, 10, 11, 12, 35, 36, 37, 38, 40, 41], "distinguish": 39, "distribut": [10, 27, 33, 35, 36, 39, 41, 42, 43, 44], "diverg": [42, 43], "divid": [9, 34, 35, 36, 37, 38, 40, 41, 44], "divis": [9, 38, 42, 43], "do": [2, 3, 5, 7, 8, 13, 24, 31, 34, 36, 40, 41, 42, 43], "document": [1, 20, 24, 35], "doe": [5, 27, 31, 36, 38, 41], "doesn": [1, 3, 37, 38], "doi": [4, 11, 24, 26], "domain": [31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "don": [3, 5, 7, 8, 13, 31, 32, 36, 37, 40], "done": [31, 40], "dordrecht": 10, "down": [35, 36, 38, 41], "downsid": 35, "downward": 41, "dozen": [36, 42, 43], "draw": [42, 43], "drawback": 37, "drift": 35, "driven": 36, "drop": 10, "drop_lags_without_pair": 10, "dropped_point": 2, "dt": 41, "dtype": [2, 3, 4, 5, 6, 8, 10, 11, 13, 35, 36, 38], "dubroca": 10, "due": [1, 2, 41], "dump": 13, "duplic": 36, "durbec": 10, "dure": [1, 2, 8, 9, 41, 42, 43], "dv": 9, "e": [2, 9, 10, 11, 12, 13, 25, 31, 33, 34, 39, 40, 42, 43, 44], "e7d4e8": [31, 32], "e_": 5, "each": [2, 5, 6, 8, 9, 10, 11, 24, 29, 31, 33, 34, 36, 38, 40, 41, 42, 43, 44], "earlier": 35, "earth": [11, 17], "easiest": 31, "easili": [31, 35], "east": [10, 36, 39], "eastern": 36, "ecolog": 10, "ecologi": [10, 41], "econom": [17, 28], "edg": 34, "edgecolor": [40, 44], "edit": 10, "editor": 15, "educ": 17, "edzer": [33, 39], "effect": [32, 34, 37], "effort": 10, "eg": 2, "element": 9, "eleph": 35, "elev": [31, 36, 38], "ellips": [9, 10, 11, 13, 34], "ellipt": [9, 10, 11, 13, 34], "els": 40, "emphas": 37, "empir": [10, 12], "empirical_smv": [10, 12], "empti": [31, 36, 39], "en": [5, 25], "encount": [27, 35], "end": [39, 41, 44], "enthusiast": 34, "entir": 36, "enumer": 40, "env": 27, "environ": 27, "epidemiologi": [40, 41], "epsg": [2, 31, 35, 36, 37, 38], "equal": [5, 6, 9, 10, 11, 12, 13, 31, 35, 36, 40, 41], "equat": [4, 5, 10], "equidist": 9, "eras": 42, "err": [3, 5, 39, 44], "err_to_nan": 7, "error": [1, 3, 4, 5, 7, 8, 9, 11, 12, 13, 29, 31, 32, 36, 37, 38, 39, 40, 41, 42, 43], "error_estim": [11, 12, 31], "errs_col": 40, "esa": 17, "especi": [10, 38, 40, 41, 44], "essenti": [35, 36, 41], "est": [3, 44], "estim": [2, 3, 5, 6, 8, 9, 11, 12, 13, 31, 33, 34, 36, 37, 38, 41, 42, 43], "etc": [36, 40], "ethem": 15, "ethmtrgt": 15, "euclidean": 4, "eur": 25, "evalu": [0, 12, 21], "even": [31, 32, 36, 37, 39, 40, 42, 43], "event": 33, "everi": [10, 31, 33, 34], "everyth": 34, "exact": 36, "examin": 32, "exampl": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 24, 31, 34, 35, 38, 39, 40, 42, 43, 44], "excel": [35, 38], "except": 41, "excit": 32, "exclud": 33, "exercis": 31, "exist": [12, 33, 38, 40], "exp_ind": 11, "exp_model": 40, "exp_semivar": 41, "exp_var": [33, 34, 35, 36, 37], "exp_variogram": [3, 8], "expect": [5, 8, 31, 41], "expected_valu": 8, "experi": [32, 36, 38, 41, 42, 43], "experimanet": 11, "experiment": [0, 1, 2, 3, 7, 8, 9, 11, 12, 21, 29, 33, 36, 37, 38, 39, 40, 41, 42, 43, 44], "experimental_block_semivari": 9, "experimental_indicator_variogram": [8, 11], "experimental_model": 11, "experimental_point_cloud": 10, "experimental_semivari": [10, 12, 35, 40], "experimental_semivariogram": 29, "experimental_variogram": [3, 5, 7, 9, 11, 12, 29, 31, 32, 33, 36, 37, 38, 39, 40], "experimentalfeaturewarn": 1, "experimentalindicatorvariogram": [8, 11], "experimentalvariogram": [2, 3, 4, 5, 7, 8, 9, 10, 12, 31, 34, 35, 36, 37, 38], "experimentalvariogrammodel": 1, "expert": 24, "explain": [31, 33], "explor": [30, 34, 35], "exponenti": [9, 11, 12, 31, 32], "exponential_model": 31, "export": [9, 12], "export_model": 9, "export_model_to_json": [9, 41], "extend": 33, "extent": [12, 34], "extern": [8, 33], "extrem": [35, 37, 40], "ey": 32, "f": [12, 31, 33, 37, 40], "face": 1, "fact": [38, 43], "factor": [5, 10, 40], "fall": [2, 34, 42], "fals": [2, 3, 5, 7, 8, 9, 10, 11, 12, 31, 32, 34, 35, 36, 37, 38, 39, 42, 43, 44], "familiar": 34, "far": 36, "fast": [34, 42], "faster": [6, 37, 42], "fb": 5, "featur": [8, 34, 40], "fed": 36, "feel": 31, "few": [10, 31, 32, 35, 36, 40, 41, 42, 43], "fewer": 36, "field": [12, 33], "fig": [38, 39, 40], "figsiz": [31, 32, 34, 38, 39, 40, 42, 43, 44], "figur": [10, 31, 32, 35, 36, 38], "file": [1, 9, 12, 22, 27, 31, 40], "filenam": [2, 3, 4, 7, 9], "fill": [31, 36], "filter": [1, 3, 32, 38], "filter_block": [1, 3], "fin": 10, "final": [9, 10, 32, 36, 38, 44], "final_regularized_variogram": 9, "final_theoretical_model": 9, "find": [2, 11, 12, 31, 33, 35, 38, 41], "fip": [2, 3, 4, 7, 9, 40, 41, 42, 43, 44], "first": [9, 10, 11, 12, 31, 32, 33, 34, 35, 36, 38, 40, 41, 44], "fit": [3, 5, 7, 8, 9, 11, 12, 25, 29, 33, 35, 38, 41, 42, 43], "fit_bia": 8, "fit_transform": [9, 41], "fit_trend": 8, "fitted_regression_model": 8, "fitted_valu": 12, "five": [10, 31, 39, 42, 43], "fix": [10, 11, 12, 31], "flag": 33, "flat": 31, "flatten": 31, "float": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 31, 32, 34, 35, 41], "float64": [35, 36, 38], "flow": 29, "fly": 2, "fname": [9, 12], "focus": 31, "folder": 39, "follow": [10, 31, 33, 41, 42, 43, 44], "forc": [5, 31, 40], "forecast": [5, 11, 12, 31, 42, 43], "forecast_bia": [5, 42, 43], "forg": [27, 29], "forget": 41, "form": [9, 32, 36, 37], "format": 33, "fortran": 25, "four": [10, 33, 36, 37, 38], "frac": [4, 5, 9, 10, 33, 37], "fraction": [11, 12, 31, 34, 40], "frame": [2, 40], "frequenc": [39, 42, 43], "fresh": 27, "from": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 21, 22, 24, 27, 28, 29, 31, 32, 33, 34, 36, 37, 39, 40, 41, 42, 43, 44], "from_dict": [12, 31], "from_ellips": 1, "from_ellipse_cloud": 1, "from_json": [12, 31, 42, 43, 44], "from_triangl": 1, "from_triangle_cloud": 1, "from_user_input": 2, "full": [5, 29, 31, 39], "fulli": 36, "function": [2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 21, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "further": [5, 9, 11, 12, 37, 38, 39], "futur": 1, "g": [2, 10, 31, 40, 42, 43, 44], "g_w": 10, "gain": 38, "gallach": 15, "gamma": 9, "gamma_": 9, "gamma_h": 9, "gamma_v": 9, "gaussian": [9, 11, 12, 31, 32], "gaussian_model": 31, "gb": 25, "gcc": 27, "gdf_pt": 40, "gener": [11, 28, 32, 35, 36, 37, 38, 41, 42, 43], "generate_logistic_map": 32, "geodatafram": [2, 3, 31, 35, 36, 37, 38, 39, 40, 42, 43, 44], "geograph": [4, 9, 25, 31, 36, 39, 41], "geographi": 17, "geologi": [9, 25, 41], "geologist": 24, "geometri": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "geometry_col": [40, 41, 42, 43, 44], "geometry_column_nam": [2, 3, 4, 7, 9, 41, 42, 43, 44], "geometryarrai": 8, "geopackag": [40, 44], "geopanda": [1, 2, 3, 4, 7, 8, 9, 27, 29, 31, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "geosci": 4, "geoscienc": 25, "geoseri": [8, 31], "geostatist": [5, 10, 25, 28, 31, 32], "geostatystyk\u0105": 28, "get": [2, 3, 10, 24, 27, 28, 31, 32, 33, 34, 35, 36, 38, 39, 40, 42, 43, 44], "get_aggregated_point_support_valu": 1, "get_areal_centroids_from_agg": 1, "get_areal_values_from_agg": 1, "get_blocks_valu": 2, "get_current_and_previous_lag": 1, "get_distances_between_known_block": 2, "get_distances_within_unknown": 1, "get_expected_valu": 8, "get_expected_values_map": 8, "get_indicator_map": 8, "get_lag": 1, "get_point_to_block_index": 2, "get_points_arrai": [2, 41], "get_study_max_rang": 1, "get_triangle_edg": 1, "get_weighted_dist": 2, "gi": [24, 25], "gist_earth": [31, 35, 36, 37, 38], "github": 35, "give": [38, 40, 43], "given": [2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 31, 34, 36, 40], "global": 36, "go": [34, 35, 36, 37, 38, 41], "goe": [35, 41], "good": [10, 31, 34, 36, 40, 41, 42, 43, 44], "goovaert": [4, 9, 11, 25, 41], "gorz\u00f3w": 31, "gpd": [2, 3, 4, 7, 8, 9, 29, 31, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "gpkg": [2, 3, 4, 7, 8, 9, 29, 34, 40, 41, 42, 43, 44], "gradual": 34, "graph": 35, "great": 32, "greater": [3, 5, 8, 10, 11, 12, 13, 31, 33, 35, 36, 37, 38, 39, 40], "green": 34, "grid": [2, 33, 39, 40, 44], "group": [9, 10, 11, 12, 22, 23, 31, 35, 38, 42, 43], "groupbi": 36, "grow": 31, "gstat": [33, 39], "gt": [37, 39, 42, 43, 44], "guess": [32, 35, 37], "guid": 34, "guinet": 10, "h": [9, 10, 34], "ha": [1, 5, 8, 9, 12, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "hack": 40, "half": [12, 34], "hand": [33, 37], "handi": 38, "handl": 1, "hashabl": [2, 7], "hasn": 9, "have": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 27, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "haven": 27, "he": 35, "head": [4, 31, 33, 34, 36, 39, 40, 41, 42, 43, 44], "headach": 35, "health": 10, "heavili": [1, 2, 35, 38, 42, 43], "height": 13, "help": 31, "here": [5, 23, 25, 31, 32, 35], "heterogen": 10, "hexagon": 42, "high": [21, 35, 37, 38, 40, 42, 43], "higher": [5, 35, 37], "hist": [39, 42, 43], "histogram": [39, 42, 43], "hope": 32, "horizont": [35, 38], "how": [3, 5, 8, 9, 11, 12, 24, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43], "howev": [41, 42, 43], "html": 3, "http": [3, 4, 5, 11, 24, 25, 26, 33], "huge": [42, 43], "hugoledoux": 15, "hundr": [33, 36], "hyperparamet": [31, 37], "i": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 23, 24, 27, 28, 29, 31, 32, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44], "id": [2, 3, 7, 9, 40, 42, 43, 44], "idea": [3, 10, 31, 34, 36, 38, 40, 41, 42, 43, 44], "ideal": [42, 43], "idw": [0, 21], "idw_pow": 37, "idw_pr": 37, "idw_rms": 37, "idx": 40, "ignor": [10, 36], "iguzquiza": 25, "ik": 11, "ikei": 40, "ikrig": 8, "iloc": 36, "imag": 32, "imagin": 36, "imap": 8, "implement": [10, 31], "import": [2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 29, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "importantli": [35, 42, 43], "impress": 38, "improv": 41, "imshow": 32, "in_cr": 31, "inaccur": 36, "inani": 15, "inblock": [2, 9], "inblock_semivari": [1, 9], "incid": [41, 42, 43], "includ": [10, 11, 33, 44], "increas": [3, 8, 9, 31, 36, 41], "independ": 41, "index": [2, 3, 4, 7, 9, 11, 12, 30, 36, 37, 38, 41], "index_column_nam": [2, 3, 4, 7, 9, 40, 41, 42, 43, 44], "indexcolnotuniqueerror": 1, "indic": [0, 1, 2, 10, 12, 24, 28, 33, 35, 38, 40, 42, 43], "indicator_map": 8, "indicator_predict": 8, "indicator_variogram": 8, "indicatorkrig": 8, "indicatorvariogram": [1, 8], "indicatorvariogramdata": 11, "individu": 38, "industri": 41, "inf": [31, 33], "infect": [24, 40, 44], "influenc": [6, 10, 24, 33, 37, 38], "info": 9, "inform": [2, 33, 35, 36, 41, 42, 43], "inhabit": 40, "initi": [2, 8, 9, 11, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 44], "initial_devi": 9, "initial_ratio": 32, "initial_regularized_model": 9, "inplac": [2, 10, 34, 35, 36, 37, 38, 40], "input": [2, 8, 31, 36, 38], "input_data": 13, "insight": [35, 38, 42, 43], "inspect": [38, 40], "instal": [22, 31, 32], "instanc": [2, 10, 31], "instead": [1, 2, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42], "int": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 31, 32, 36, 37, 38], "intend": 13, "intens": 31, "interest": [41, 42, 43], "intermedi": 21, "intern": [21, 35, 41], "interp": [3, 8], "interpol": [3, 5, 7, 8, 13, 17, 21, 24, 26, 28, 29, 31, 36, 37, 38, 42, 43], "interpolate_point": [1, 3, 38, 39, 40], "interpolate_points_dask": [1, 3], "interpolate_rast": 13, "interpolation_results_areal_to_point": 40, "interpret": 5, "interquartil": 35, "interv": [33, 34], "introduc": [1, 24, 36, 42], "invalid": 35, "invers": [0, 21, 24, 36, 37, 41], "inverse_distance_weight": [6, 37], "investig": 38, "invok": [10, 12, 35], "iowa": [12, 33], "ipykernel_21822": 39, "iqr": [10, 35, 40], "iqr_lower_limit": [10, 35, 40], "iqr_upper_limit": [10, 35, 40], "irregular": [4, 9, 25, 41, 42, 43], "irregularli": 41, "is_covari": [10, 31], "is_fit": 9, "is_semivari": [10, 31], "is_transform": 9, "is_weighted_by_point_support": 7, "isin": [36, 37, 38], "iso": [10, 39], "isotrop": [10, 11, 12, 39], "issu": [1, 20], "item": 37, "iter": [2, 6, 9, 12, 38, 41, 42, 43, 44], "its": [2, 12, 31, 32, 34, 37, 42], "j": [2, 9, 11, 12, 33], "join": [2, 16, 41], "joss": [24, 26, 28], "journal": [12, 24, 26, 33], "jp": 10, "json": [12, 13, 31, 41, 42, 43, 44], "jump": 32, "june": 24, "just": [33, 40, 41], "k": 36, "karlen": [12, 33], "kei": [2, 8, 10, 13], "kenohori": 15, "kernel": 35, "keyerror": [9, 12], "kilomet": 33, "kind": [5, 8, 10, 24, 35, 38, 39, 42, 43], "kluwer": 10, "know": [3, 5, 7, 8, 13, 24, 31, 32, 33, 36, 41, 42, 43], "knowledg": [32, 38], "known": [2, 3, 5, 6, 8, 13, 18, 36, 37], "known_geometri": [3, 6, 8, 13, 36, 37, 38, 39, 40], "known_loc": [3, 6, 8, 13, 29, 36, 37, 38, 39, 40], "known_point": [6, 8], "known_valu": [3, 6, 8, 13, 36, 37, 38, 39, 40], "konopka": [12, 33], "krige": [0, 1, 4, 5, 9, 10, 11, 13, 21, 24, 25, 28, 30, 31, 33, 35, 41], "kriged_result": 39, "kriging_pr": 37, "kriging_rms": 37, "kriging_typ": [3, 8], "krigingobject": 1, "kurtosi": [10, 35], "l": [10, 12, 33], "lack": 2, "lag": [5, 9, 10, 11, 12, 31, 32, 34, 36, 38, 40, 41], "lag_dist": 5, "lag_numb": 10, "lag_points_distribut": 5, "lakshaya": 15, "lakshayainani": 15, "lambda": 37, "lambda_": 37, "land": 38, "larg": [1, 3, 4, 5, 8, 12, 32, 35, 36, 37, 40, 41, 42, 43], "larger": [6, 12, 13, 31, 32, 34, 38], "largest": [2, 10, 38, 40], "last": [11, 12, 24, 27, 31, 32, 33, 35, 40, 42, 43, 44], "lat": [2, 3, 8, 29, 40, 41, 42, 43], "lat_col": 31, "lat_col_nam": [2, 4], "later": [35, 38], "latitud": [2, 3, 4, 8, 31, 35, 36, 37, 38], "law": [10, 33], "layer": [2, 3, 4, 7, 9, 34, 40, 41, 42, 43, 44], "layer_nam": [2, 3, 4, 7, 9], "lead": [3, 5, 7, 8, 13, 32, 33, 39], "leak": 36, "learn": [9, 24, 32, 33, 34, 36, 37, 38, 39, 40, 41], "least": [25, 35], "leav": [2, 31, 33, 34, 36, 41, 44], "left": [10, 35], "left_on": [42, 43], "legend": [31, 32, 34, 35, 36, 37, 38, 40, 42, 43, 44], "len": [6, 11, 31, 36, 37, 38, 40], "length": [2, 3, 5, 6, 8, 10, 11, 13, 32, 34], "less": [6, 10, 40, 41], "lesson": 32, "let": [10, 31, 32, 34, 36, 38, 39, 40, 42, 43], "leuangthong": 10, "level": [9, 10, 12, 21, 24, 33, 35, 38], "li": 31, "librari": [24, 27], "libspatialindex": 27, "libtiff": 27, "like": [2, 23, 31, 36, 40], "lim": 15, "limit": [5, 6, 8, 9, 12, 32, 33, 35, 36], "limit_deviation_ratio": 9, "line": [9, 10, 11, 13, 27, 31, 34, 35, 38], "linear": [5, 8, 9, 11, 12, 25, 31, 32, 34, 36, 37, 38], "linear_model": 31, "link": 33, "list": [1, 2, 6, 8, 9, 10, 11, 12, 22, 31, 36, 38], "literatur": 31, "live": 40, "ll": 37, "load": [5, 10, 35, 36, 37, 38, 40], "loc": [6, 35, 36, 37, 38], "local": 11, "locat": [3, 6, 7, 8, 10, 13, 37, 42, 43], "log": [9, 33, 39], "log_process": 9, "logarithm": 33, "logist": 32, "logistic_map": 32, "lon": [2, 3, 8, 29, 40, 41, 42, 43], "lon_col": 31, "lon_col_nam": [2, 4], "long": [27, 34, 35, 41, 42, 43, 44], "longer": 34, "longitud": [2, 3, 4, 8, 31, 35, 36, 37, 38], "look": [3, 31, 32, 33, 34, 35, 36, 38, 42, 43], "lot": 35, "low": [32, 33, 35, 37, 38, 40, 41, 42, 43], "lower": [9, 10, 12, 31, 33, 35, 38, 42, 43], "lowest": [9, 10, 31, 32, 35, 38], "lowest_rms": 31, "lt": [36, 37, 38, 39, 40, 41, 42, 43, 44], "lunch": 41, "lyme": 17, "m": [4, 10, 12, 25, 32, 33, 35], "machin": [24, 34, 36], "maco": 27, "mad": 40, "mae": [5, 11, 12, 31], "mai": [4, 8, 24, 27, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "main": [10, 41], "major": [9, 10, 11, 13, 34], "make": [3, 24, 32, 33, 34, 36], "manag": [33, 41], "mani": [3, 8, 9, 11, 12, 25, 31, 35, 36, 41, 42, 43, 44], "manual": [37, 38, 40], "map": [8, 9, 24, 31, 32, 34, 39, 40, 42, 43, 44], "marker": 34, "markers": [34, 44], "materi": 24, "math": 4, "mathemat": [9, 25, 41], "matplotlib": [31, 32, 34, 36, 38, 39, 40], "matrix": [3, 4, 5, 7, 8, 13, 32], "max": [10, 13, 35, 36, 38, 42, 43], "max_it": [9, 41], "max_no": 35, "max_nugget": [11, 12, 31, 33], "max_rang": [3, 5, 7, 8, 9, 10, 11, 12, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41], "max_sil": [11, 12, 31], "max_tick": [3, 8, 36, 39], "max_width": 35, "maxim": [9, 38, 41], "maximum": [2, 3, 5, 7, 8, 9, 10, 11, 12, 31, 32, 34, 35, 36, 41], "maximum_point_rang": 41, "maximum_rang": [40, 41], "md": 23, "mean": [5, 6, 8, 9, 10, 11, 12, 27, 31, 32, 35, 36, 37, 38, 39, 40, 41, 42, 43], "mean_absolute_error": 5, "mean_dir_pr": 39, "mean_directional_result": 39, "mean_filt": 32, "mean_relative_differ": 1, "meaning": 41, "measur": [5, 8, 10, 24, 26, 28, 33, 35, 36, 42, 43], "mec": [31, 32], "median": [10, 35, 38, 40, 42, 43], "mediterranean": 10, "memori": 4, "merg": [41, 42, 43], "messag": 27, "messi": 31, "meter": [31, 34, 36, 37, 38], "method": [1, 2, 3, 5, 8, 9, 10, 11, 12, 29, 31, 34, 35, 36, 38, 40, 41, 42, 44], "metric": [0, 4, 31, 32, 35, 36, 37, 38], "metricstypeselectionerror": [1, 12], "meus": [33, 39], "meuse_fil": [33, 39], "meuse_grid": 39, "meuse_grid_fil": 39, "middl": [35, 38], "might": [1, 12, 27, 31, 33, 34, 35, 36, 38, 40, 44], "mile": 33, "min": [10, 13, 35, 36, 38, 42, 43], "min_deviation_decreas": 9, "min_deviation_ratio": 9, "min_nugget": [11, 12, 31], "min_rang": [11, 12, 31], "min_sil": [11, 12, 31], "mine": 41, "minim": [9, 10, 11, 12, 31], "minimum": [3, 7, 9, 10, 11, 12, 32, 35], "minimum_deviation_decreas": 9, "minor": [9, 10, 11, 13, 34, 38], "minu": 9, "mirror": 31, "mislead": [42, 43], "miss": [8, 29, 31, 36, 40, 43], "mix": 38, "ml": 44, "mode": [35, 39], "model": [0, 1, 3, 7, 8, 9, 10, 11, 12, 13, 21, 24, 25, 28, 30, 33, 34, 35, 37, 41], "model_error": 12, "model_from_dict": 31, "model_from_json": 31, "model_nam": [31, 39], "model_param": 12, "model_paramet": 12, "model_rms": 31, "model_typ": 12, "models_group": [5, 9, 11, 12, 29, 31, 32, 33, 36, 37, 38, 39, 41], "moder": [12, 33], "modifi": 2, "modul": 21, "moli\u0144ski": [15, 24, 26, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "monei": 31, "monestiez": 10, "monitor": [1, 9, 35, 38], "moorman": [12, 33], "more": [4, 5, 6, 8, 9, 12, 24, 28, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44], "moreov": [31, 32], "most": [1, 5, 31, 32, 33, 34, 36, 37, 38, 40, 41, 42, 43], "mostli": [31, 33, 36, 38], "mountain": 36, "move": [36, 41], "mrd": 9, "msg": 31, "much": [34, 36, 37, 42], "multimod": 35, "multipl": [1, 2, 5, 8, 9, 11, 12, 29, 31, 32, 33, 34, 36, 38, 40, 41, 42, 43], "multipli": [12, 40], "multipolygon": [2, 40, 41, 43], "multivariateregress": 8, "must": [2, 3, 4, 5, 6, 8, 9, 10, 11, 13, 31, 32, 33, 34, 36, 37, 40, 41, 42, 43], "mxn": 4, "n": [3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 27, 32, 33, 34, 35, 36, 37, 38, 39, 40], "n_lag": 35, "n_sill_valu": [11, 12], "name": [2, 4, 5, 9, 11, 12, 27, 31, 32, 35, 36, 38, 39, 40], "nan": [7, 36, 42, 43, 44], "nanmean": 39, "ncol": [38, 39, 40], "ndarrai": [2, 3, 4, 5, 8, 9, 10, 12, 32], "ndarray_pydant": 1, "ne": [9, 10, 11, 13, 34, 39], "ne_sw_direct": 34, "need": [10, 31, 32, 35, 36, 42, 44], "neg": [3, 5, 7, 12, 25, 32, 35, 42, 43], "negative_prediction_to_zero": [3, 7], "neglig": [10, 31], "neighbor": [2, 3, 5, 6, 7, 8, 9, 10, 24, 31, 33, 34, 36, 37, 40, 42, 43, 44], "neighborhood": [33, 36], "neighbors_numb": 36, "neighbors_rang": [3, 5, 7, 8, 36, 40, 42, 43], "neighbour": [2, 3, 6, 7], "netherland": 10, "network": 14, "never": 31, "new": [6, 10, 31, 35, 36, 40], "new_val": 32, "next": [31, 33, 36, 38, 41], "ningchuan": 25, "nn": 36, "no_closest_neighbor": 2, "no_neighbor": [3, 5, 6, 8, 29, 36, 37, 39, 40], "no_possible_neighbor": 2, "nois": [36, 38], "non": [10, 11, 31, 33, 35], "none": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 31, 33, 36], "normal": [9, 31, 33, 35, 39, 41], "north": [10, 39], "northeastern": [10, 40, 41, 42, 43, 44], "northwestern": 10, "note": [2, 4, 5, 9, 10, 33, 34, 35, 36, 38, 42, 43], "notebook": [34, 40], "noth": 12, "novak": [12, 33], "now": [1, 27, 31, 35, 36, 37, 38, 40, 41, 43], "np": [2, 3, 5, 6, 8, 9, 10, 11, 12, 13, 31, 32, 33, 35, 36, 37, 38, 39, 40, 42, 43, 44], "npy": 10, "nrow": [38, 39, 40], "ns_direct": 34, "nthe": 31, "nugget": [5, 9, 11, 12, 29, 31, 32, 33, 36, 38, 39, 40, 41], "number": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 32, 35, 36, 37, 38, 40, 42, 43, 44], "number_of_lag": 40, "number_of_neighbor": [2, 3, 5, 7, 8, 13, 37, 42, 43, 44], "number_of_neighbour": 6, "number_of_nugget": [11, 12, 31], "number_of_rang": [11, 12, 31], "number_of_sil": [11, 12, 31], "number_of_threshold": [8, 11], "number_of_tri": 36, "number_of_work": [3, 8], "numer": 33, "numpi": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44], "nw": [9, 10, 11, 13, 34, 39], "nw_se_direct": 34, "o": [1, 2, 3, 4, 7, 9, 10, 31, 32], "object": [2, 3, 9, 10, 31, 33, 35, 40, 41, 44], "oblig": 31, "observ": [2, 3, 5, 6, 8, 10, 11, 12, 13, 17, 24, 31, 32, 34, 35, 36, 40, 41], "obtain": [37, 40], "occur": 41, "offici": 1, "ok": [5, 8], "ok_interpol": 36, "ol": [3, 5, 7, 8, 13, 31, 36], "old": [1, 2], "omnidirect": [9, 10, 11, 13, 34], "omnidirectional_covari": 1, "omnidirectional_covariogram": 1, "omnidirectional_point_cloud": 1, "omnidirectional_semivari": 1, "omnidirectional_variogram": 1, "omnidirectional_variogram_cloud": 1, "onc": [6, 9, 34], "one": [8, 10, 13, 33, 34, 35, 36, 38, 40, 41, 42, 43], "ones": 32, "ongo": 40, "onli": [3, 8, 9, 10, 11, 12, 31, 32, 34, 35, 36, 38, 40, 42, 43], "open": [24, 26], "oper": [1, 3, 9, 27, 41], "opinion": [32, 34], "opportun": 37, "opposit": 41, "opt_dev": 9, "optim": [1, 9, 11, 12, 31, 32, 33, 34, 41], "optimal_devi": 9, "optimal_model": 33, "option": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 31, 33, 36], "orang": 35, "order": [2, 10, 33, 38], "ordinari": [0, 1, 5, 13, 21, 24, 25, 28, 30, 38, 42, 43, 44], "ordinary_krig": [1, 8, 29, 36, 37, 40, 42, 43, 44], "org": [3, 4, 5, 11, 24, 26, 33], "origin": [9, 10, 11, 13, 34, 41], "oscil": [32, 41], "other": [1, 2, 4, 9, 10, 24, 28, 31, 32, 33, 34, 35, 36, 37, 38, 40, 42, 43, 44], "other_block": 2, "otherwis": [2, 11, 13, 36], "our": [5, 10, 16, 31, 32, 33, 34, 35, 36, 37, 38, 40, 42, 43, 44], "out_cr": 31, "outcom": [35, 38], "outlier": [10, 30, 42, 43], "output": [8, 10, 31, 32, 35, 40, 41, 42, 43, 44], "over": [5, 8, 10, 31, 32, 36, 38, 39, 40, 41, 42, 43, 44], "overcom": [24, 42, 43], "overestim": [5, 12, 42, 43], "overfit": 31, "overlap": 2, "overview": 21, "overwrit": [10, 12, 35], "overwritten": 12, "own": [32, 42], "p": [2, 3, 4, 5, 7, 9, 10, 11, 12, 25, 31, 32, 33, 37, 40, 41], "p_": [4, 5, 9], "packag": [1, 8, 18, 22, 24, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "page": 32, "pair": [2, 5, 9, 10, 11, 12, 31, 32, 35, 38, 41], "panda": [1, 2, 3, 8, 31, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "param": 13, "paramet": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44], "parameter": 12, "parametr": 11, "pardo": 25, "parkin": [12, 33], "parse_kriging_input": 1, "parse_point_support_distances_arrai": 1, "part": [32, 35, 36, 38, 40, 41, 42, 43], "partial": [11, 12, 31], "partial_sil": 31, "particular": [42, 43], "pass": [2, 11, 12, 31, 33, 36, 37, 40, 44], "path": 32, "pattern": [38, 40, 42, 43], "pcol1": 40, "pcol2": 40, "pd": [2, 3, 4, 8, 31, 33, 35, 36, 37, 38, 39, 42, 43], "pdf": 33, "pebesma": [33, 39], "penal": [5, 41], "peopl": 24, "per": [5, 9, 35, 36, 38, 40, 44], "percent": [5, 33], "percentag": [5, 11, 12, 31, 33], "perform": [2, 5, 7, 8, 9, 12, 31, 34, 36, 38, 39, 40, 41, 42, 43, 44], "phenomenon": 33, "physalu": 10, "pick": [34, 42, 43], "pictur": 34, "piec": [42, 43], "pipelin": [0, 1, 21, 31, 35], "pivot": 36, "pixel": [13, 32, 38], "place": [9, 10, 11, 13, 34, 38, 40], "plain": 36, "plane": 34, "plasma": 44, "pleas": 24, "plot": [8, 9, 10, 11, 12, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44], "plot_devi": 9, "plot_deviation_chang": 41, "plot_experimental_bias_model": 8, "plot_theoretical_bias_model": 8, "plot_trend_surfac": 8, "plot_variogram": [9, 41], "plot_weight": 9, "plot_weights_chang": 41, "plt": [31, 32, 34, 36, 38, 39, 40], "plu": [31, 35], "pm2": 34, "pm2_5": 34, "point": [0, 1, 3, 5, 6, 9, 10, 11, 12, 13, 21, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 36, 37, 39, 41, 42, 43], "point_cloud_filt": 38, "point_cloud_semivari": 1, "point_data": 29, "point_dist": [1, 4], "point_support": [2, 3, 7, 9, 41, 42, 43, 44], "point_support_blocks_index_nam": 2, "point_support_data": [2, 3, 4, 7, 9], "point_support_to_dict": 1, "point_support_tot": 2, "points_data": 5, "points_from_xi": [31, 35, 36, 37, 38, 39], "points_geometry_column": [2, 3, 4, 7, 9, 41, 42, 43, 44], "points_to_lon_lat": 1, "points_value_column": [2, 3, 4, 7, 9, 41, 42, 43, 44], "points_variogram": 5, "pointsupport": [1, 2, 3, 4, 7, 9, 21, 41, 42, 43, 44], "pointsupportdist": 2, "poisson": [0, 1, 10, 21, 24, 28, 30, 31, 40, 41], "poland": [31, 34], "pole": 10, "polish": 31, "pollut": [17, 28, 34], "polygon": [2, 4, 7, 24, 40, 41, 42, 43], "polygon_id": [40, 41, 42, 43, 44], "polygon_lay": [40, 41, 42, 43, 44], "polygon_valu": [40, 41, 42, 43, 44], "polynomi": 32, "poorli": [40, 41, 42, 43], "pop": 2, "pop10": [2, 3, 4, 7, 9, 41, 42, 43, 44], "popul": [2, 4, 10, 24, 35, 36, 37, 38, 40, 41, 42, 43, 44], "popular": 5, "population_lay": [41, 42, 43, 44], "posit": [5, 12, 32, 35, 40, 42, 43], "possibl": [8, 10, 12, 31, 32, 33, 34, 40], "possible_variogram": 10, "potenti": [3, 7], "power": [6, 8, 9, 11, 12, 31, 32, 36, 37, 42, 43], "power_model": 31, "pp": [5, 25], "practic": 33, "pre": [32, 40], "precis": 36, "pred": [5, 6, 39, 42, 43], "pred_col_nam": 40, "predefin": 31, "predict": [3, 5, 7, 8, 9, 12, 24, 29, 37, 38, 39, 42, 43, 44], "predicted_arrai": 5, "preds_col": 40, "prep_theo": 38, "prep_theo_no_out": 38, "prepar": [10, 11, 29, 33, 35], "prepare_pk_known_area": 1, "preprocess": 38, "presenc": [4, 9, 25, 41], "present": [10, 32, 34, 38, 40], "preserv": 13, "previou": [32, 43], "price": 33, "primarili": 38, "print": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 29, 31, 33, 36, 37, 40, 42, 43], "privaci": 24, "privat": 1, "probabl": [24, 32, 36, 38, 40, 41, 42, 43], "problem": [27, 31, 36, 41, 42, 43], "proc": 5, "proc_no_interpol": 38, "proc_raw_interpol": 38, "proce": [31, 35, 38, 40], "procedur": [9, 41], "process": [2, 3, 5, 8, 9, 10, 12, 17, 21, 24, 31, 33, 36, 37, 38, 39, 40, 42, 43, 44], "process_mean": [8, 36], "produc": [38, 44], "product": 31, "profound": 1, "program": [11, 25, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "progress": [2, 3, 8], "progress_bar": [3, 5, 8, 36, 38], "project": [2, 3, 27, 31, 33], "pronounc": [38, 39], "properli": 27, "properti": [2, 5, 9, 12, 31, 33, 34, 35, 38, 42, 43], "proport": 37, "protect": [12, 24], "protect_from_overwrit": 12, "provid": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 24, 36, 39], "ps_block": [2, 3, 4, 7, 9], "ps_geometri": [2, 3, 4, 7, 9], "ps_layer_nam": [2, 3, 4, 7, 9], "ps_valu": [2, 3, 4, 7, 9], "pt": [36, 41], "ptp": 33, "public": [4, 10, 33], "publicznych": 28, "publish": 10, "purpl": 34, "purpos": [13, 31, 32, 36], "put": 36, "pw": 37, "py": [35, 39], "pyinterpol": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 21, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "pyplot": [31, 32, 34, 36, 38, 39, 40], "pyproj": 2, "pyproject": [22, 27], "python": [24, 26, 27, 28, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "python3": 27, "pythonem": 28, "q": 40, "q1": [35, 38], "q2": 38, "q3": [35, 38], "qgi": 44, "qualiti": [28, 36], "quantil": 38, "quartil": [10, 35, 38, 42, 43], "question": [32, 40], "quick": 31, "quickli": 37, "quickstart": 24, "r": [12, 32, 33, 39], "r_df": 31, "radii": 34, "radiu": 41, "rais": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 31, 37], "raise_when_negative_error": [3, 7, 42, 43], "raise_when_negative_predict": [3, 7], "random": [8, 11, 33, 38, 42, 43], "randomli": [33, 36, 42, 43], "rang": [3, 5, 7, 8, 9, 11, 12, 13, 29, 31, 32, 34, 35, 36, 38, 40, 42, 43], "rare": [10, 36, 39], "raster": 0, "raster_data": 13, "raster_dict": 13, "rate": [2, 3, 4, 7, 9, 10, 24, 28, 40, 41, 42, 43, 44], "rather": [31, 38, 41], "ratio": [3, 5, 9, 11, 12, 13, 33, 42, 43], "ratio_perc": 12, "raw": [1, 38], "raw_interpol": 38, "raw_no_interpol": 38, "raw_theo": 38, "raw_theo_no_out": 38, "raw_variogram_filt": 38, "rawpoint": 1, "re": [24, 36, 37, 41, 44], "reach": 31, "read": [1, 7, 12, 29, 31, 35, 38], "read_block": 1, "read_csv": [1, 31, 33, 35, 36, 37, 38, 39], "read_fil": [2, 3, 4, 7, 8, 9, 29, 34, 40, 41, 42, 43, 44], "read_txt": 1, "readi": 40, "real": [3, 5, 8, 9, 12, 31, 32, 35, 36, 38], "real_arrai": 5, "realist": 31, "realiz": [36, 42, 43], "realli": 36, "reason": [32, 33, 38], "recal": [10, 34], "recommed": 34, "recommend": [3, 5, 7, 8, 13, 36], "record": [11, 12, 36], "rectangular": 42, "recurr": 32, "red": [33, 34, 39, 40, 44], "reduc": 33, "ref_input": 9, "refactor": 1, "refer": [2, 4, 5, 9, 11, 12, 24, 31, 37], "reference_input": [10, 12], "reflect": 40, "reg": [3, 44], "reg_mod": 41, "reg_variogram": 9, "regard": 24, "region": [24, 42, 43, 44], "regress": 8, "regualr": 9, "regular": [1, 2, 3, 9, 21, 24, 30, 31, 40], "regular_grid_point": 40, "regularize_variogram": 9, "regularized_model": 9, "regularized_semivari": 9, "regularized_vari": 9, "regularized_variogram": [9, 41, 42, 43, 44], "rel": [5, 9, 34, 42, 43], "relat": [31, 32, 33, 36, 37, 38, 41], "releas": [1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "reliabl": 43, "rememb": [31, 37], "remot": 44, "remov": [1, 2, 8, 10, 31, 34, 36, 39], "remove_outli": [10, 35, 38, 40], "rental": 33, "rep_point": 2, "rep_points_column_nam": 2, "repeat": [42, 43], "repetit": 9, "report": [], "repres": [2, 4, 5, 31, 32, 33, 34, 35, 38, 40, 42, 43], "represent": [2, 24, 32, 35, 42, 44], "representative_point": [40, 41, 42, 43], "representative_points_arrai": [2, 3, 7], "representative_points_column_nam": 2, "representative_points_from_centroid": 2, "representative_points_from_largest_area": 2, "representative_points_from_random_sampl": 2, "reproduc": 31, "reproject": [2, 31], "reproject_flat": 31, "reps_deviation_decreas": 9, "requir": [11, 12, 18, 27, 36, 37, 40, 41, 44], "research": 5, "reshap": 32, "resist": 31, "resolut": 24, "resourc": 25, "respect": 40, "respons": [8, 36], "result": [6, 7, 8, 9, 12, 13, 36, 37, 38, 39, 40, 41, 42, 43], "retriev": [2, 36, 41], "return": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 31, 32, 33, 35, 36, 44], "return_dist": 2, "return_param": 12, "rgeometri": 39, "rid": 3, "right": [10, 35, 36], "right_on": [42, 43], "rise": [35, 40], "risk": [17, 24, 40, 42, 44], "rmse": [3, 5, 9, 11, 12, 31, 32, 36, 40, 42, 43, 44], "role": 31, "room": 35, "root": [5, 9, 11, 12, 31, 32, 36, 37, 42, 43], "root_mean_squared_error": 5, "roughli": 38, "row": [2, 4, 31, 32, 35], "rtree": 27, "run": [24, 27, 31, 36, 38, 41, 42, 43], "runetimeerror": [8, 9, 10], "runtimewarn": [35, 39], "rush": 31, "rx_": 32, "rxn": 32, "s11004": 4, "safe": [9, 11, 12, 31, 33, 41], "sagepub": 25, "same": [1, 2, 3, 5, 6, 8, 9, 10, 11, 12, 13, 29, 31, 32, 34, 35, 36, 37, 38, 40, 43], "samivari": 9, "sampl": [2, 5, 8, 31, 33, 36, 37, 38, 42, 43], "sample_id": [42, 43], "satellit": 38, "satur": 38, "save": [9, 12, 31, 35, 40, 41], "scalabl": 42, "scalar": 35, "scale": [12, 33], "scan": 36, "scatter": [10, 31, 32], "scatterplot": [10, 35], "scenario": [31, 36, 38, 40], "scienc": [11, 12, 17, 33], "scientist": 24, "scipi": [4, 32, 35], "score": [35, 38], "scott": 15, "scottgallach": 15, "scratch": 32, "sdesabbata": 15, "sdi": 33, "se": [9, 10, 11, 13, 34, 39], "sea": 10, "sean": 15, "seanjunheng2": 15, "search": [3, 5, 7, 8, 31, 33, 36, 41, 42, 43], "search_radiu": 29, "second": [8, 10, 32, 35, 36], "see": [4, 8, 9, 10, 11, 12, 31, 34, 35, 36, 38, 40, 41, 42, 43], "seem": 40, "seen": [33, 41], "select": [2, 3, 5, 8, 9, 10, 11, 12, 13, 31, 34, 36, 42, 43], "select_centroid_poisson_kriging_data": 1, "select_distances_between_block": 2, "select_neighbors_pk_centroid": 1, "select_neighbors_pk_centroid_with_angl": 1, "select_poisson_kriging_data": 1, "select_values_between_lag": 1, "select_values_in_rang": 1, "select_values_in_range_from_datafram": 1, "semi": [31, 34], "semi_major_axis_s": 34, "semi_model": 40, "semivar": 29, "semivari": [0, 2, 5, 9, 11, 12, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41], "semivariance_between_point_support": 9, "semivariance_fn": 1, "semivariogram": [0, 1, 2, 4, 5, 7, 8, 10, 13, 21, 24, 25, 30, 35, 37, 38], "semivariogram_model": [3, 7, 13, 42, 43, 44], "semivariogramerrormodel": 1, "sens": [3, 44], "sensor": 38, "separ": [9, 11, 42, 43, 44], "sequenc": 32, "seri": 2, "serv": 37, "server": 16, "servic": 38, "set": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 32, 33, 34, 35, 37, 38, 39, 40, 42, 43], "set_blocks_dataset": 1, "set_current_as_optim": 9, "set_index": [34, 40], "set_titl": [38, 39, 40], "set_xlabel": 38, "set_ylabel": 38, "setdifferencewarn": 1, "setup": 24, "seven": 32, "shape": [6, 31, 32, 38, 41, 42, 43, 44], "sharei": 40, "sharex": 40, "sharpli": 38, "shell": 20, "short": 34, "shorter": [34, 39], "shortest": 41, "should": [1, 2, 5, 6, 8, 9, 11, 12, 22, 27, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43], "shouldn": [5, 12, 34, 35, 38, 41], "show": [2, 3, 5, 8, 9, 10, 11, 12, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43], "show_progress_bar": 8, "show_semivariogram": 9, "shp": 40, "side": 10, "sig": [7, 42, 43], "sign": [31, 38, 41], "signal": [32, 35], "signific": [37, 38, 41], "sill": [3, 7, 9, 11, 12, 29, 31, 32, 33, 36, 40], "sill_from_valu": 12, "sill_from_vari": [11, 12], "similar": [2, 3, 5, 6, 8, 10, 11, 13, 31, 32, 33, 34, 36, 38, 42], "simonmolinski": [15, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "simpl": [0, 5, 21, 24, 30, 32, 33, 37, 40], "simple_krig": [1, 8, 36], "simplest": 36, "simpli": [42, 43], "simplif": 42, "simplifi": [36, 37, 43], "simul": [32, 35, 36], "simultan": 34, "singl": [2, 9, 10, 11, 12, 13, 31, 32, 34, 36, 37, 42, 43], "singular": [3, 5, 7, 8, 13], "situat": 31, "size": [4, 8, 9, 10, 11, 13, 32, 34, 40, 41, 42, 43, 44], "sk": [5, 8], "sk_interpol": 36, "sk_mean": 5, "skew": [10, 33, 35, 40], "skip": 40, "slice": 39, "slightli": [32, 38], "slow": 41, "slower": 43, "slowli": 41, "small": [9, 32, 37, 40, 41, 42, 43], "smaller": [6, 9, 32, 34, 35, 38, 40, 41], "smallest": 34, "smape": [5, 11, 12, 31], "smooth": [3, 21, 40, 43], "smooth_area_to_point_pk": 1, "smooth_block": [1, 3, 44], "smooth_plot_data": 44, "smoother": 32, "smrd": 9, "so": [10, 24, 31, 36, 41, 42], "social": [17, 24], "societi": [12, 33], "socio": [17, 28], "softwar": [24, 26], "soil": [12, 33], "some": [1, 25, 27, 31, 32, 33, 38, 40, 41, 42], "someon": 40, "someth": 31, "sometim": [10, 31, 33, 34, 42, 43], "sophist": [35, 36], "sort": [36, 38], "sourc": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 24, 26, 37], "south": [10, 39], "southeastern": 10, "southwestern": 10, "space": [11, 12, 31], "spars": [10, 32, 42, 43], "sparse_data": 32, "spatial": [1, 2, 4, 9, 10, 12, 17, 24, 26, 28, 29, 30, 31, 32, 34, 35, 36, 39, 40, 41, 42, 43, 44], "spatial_depend": 31, "spatial_dependency_level": 12, "spatial_dependency_ratio": [12, 33], "spatial_dependency_strength": [12, 33], "spatial_index": 31, "spatialindex": 27, "speak": 32, "speci": 41, "special": [31, 32, 34], "specif": [5, 8, 10, 31, 34, 35, 36, 38], "specifi": 2, "spectral_r": [40, 42, 43, 44], "sph": 40, "spheric": [8, 9, 11, 12, 29, 31, 32, 39, 40], "spherical_model": 31, "springer": [25, 32], "sql": 34, "sqrt": [5, 36, 37, 42, 43], "squar": [5, 9, 11, 12, 25, 31, 32, 36, 37, 38, 42, 43], "squared_error": [42, 43], "src": [21, 35], "stabil": 41, "stabl": [], "stage": 38, "standard": [10, 35, 38, 42, 43], "start": [31, 32, 33, 34, 35, 36, 41, 42, 43, 44], "stat": [10, 38], "state": [32, 40], "statement": 43, "station_id": 34, "stationari": 31, "statist": [10, 24, 31, 36, 38, 42, 43], "statu": [5, 31], "std": [10, 35, 36, 38, 42, 43], "step": [9, 23, 27, 30, 31, 32, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44], "step_siz": [3, 5, 7, 8, 9, 10, 11, 12, 13, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41], "step_size_point": 41, "steroid": 35, "still": [31, 32, 35, 36, 39, 41], "stop": 9, "store": [2, 9, 11, 12, 31, 40, 41, 44], "store_dropped_point": 2, "store_model": 9, "str": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 40, 41], "straight": 34, "straightforward": 44, "strength": [9, 12, 31, 33, 36], "string": [2, 10], "strong": [12, 31, 33, 36], "stronger": 6, "structur": [0, 3, 5, 6, 8, 10, 11, 13, 18, 32, 41], "studi": [5, 8, 12, 36, 41], "subplot": [11, 38, 39, 40], "subset": [10, 36], "substanti": 33, "subtract": 35, "sudo": 27, "suffici": 41, "suitabl": 38, "sum": [10, 11, 12], "sum_": [4, 5, 9, 10, 37], "summari": 40, "support": [0, 3, 4, 7, 9, 24, 35, 40, 41, 42, 43, 44], "suptitl": 40, "sure": [31, 34, 36, 42, 43], "surf_blur": 32, "surfac": [8, 21, 36], "sw": [9, 10, 11, 13, 34, 39], "swath": [], "symmetr": [5, 9, 11, 12, 31], "symmetric_mean_absolute_percentage_error": 5, "symmetric_mean_relative_differ": 1, "system": [2, 8, 9, 10, 11, 13, 27, 31, 32, 34, 36], "szymon": [15, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "szymono": 35, "t": [1, 2, 3, 5, 7, 8, 9, 12, 13, 23, 27, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41], "tail": [35, 39], "take": [2, 3, 8, 10, 31, 32, 33, 36, 38, 40, 41, 42, 43], "taken": 36, "target_cr": 2, "task": 38, "teach": 36, "technic": 32, "techniqu": [8, 17, 24, 36, 37, 38, 42, 43, 44], "tell": [5, 31, 35, 38, 40, 42, 43], "temperatur": [10, 39], "tend": [10, 33], "termin": [9, 27], "test": [9, 10, 11, 12, 18, 21, 31, 32, 35, 36, 37, 38, 40, 42, 43], "test_sampl": 36, "text": 31, "th": [3, 5, 6, 8, 10, 11, 13, 37], "than": [3, 5, 6, 8, 9, 10, 11, 12, 13, 31, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43], "thank": [25, 40], "thei": [2, 31, 36, 38, 43], "them": [3, 8, 9, 25, 31, 32, 36, 38, 40, 41, 42, 43, 44], "theo": [3, 7], "theo_ind": 11, "theo_semi": 40, "theo_var": [12, 36, 37], "theo_variogram": [3, 8], "theoret": [0, 1, 3, 8, 9, 11, 21, 28, 29, 32, 33, 36, 39, 41, 44], "theoretical_block_model": 9, "theoretical_indicator_variogram": 11, "theoretical_model": [3, 5, 8, 9, 29, 36, 37, 38, 39, 40], "theoretical_semivari": 9, "theoretical_semivariogram": 40, "theoretical_valu": 12, "theoretical_var": 12, "theoretical_variogram_model": 12, "theoreticalindicatorvariogram": [1, 8, 11], "theoreticalmodelfunct": 1, "theoreticalsemivariogram": 40, "theoreticalvariogram": [2, 3, 4, 5, 7, 8, 9, 12, 13, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44], "theoreticalvariogrammodel": [1, 12], "theori": 32, "theoriticalvariogram": 31, "therefor": 33, "thi": [1, 2, 3, 5, 7, 8, 9, 11, 12, 13, 24, 27, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "thing": [33, 35, 37], "third": [10, 38], "those": [1, 2, 3, 10, 27, 31, 32, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44], "three": [27, 31, 32, 34, 35], "threshold": [8, 11], "through": 41, "thu": [5, 32, 34, 35, 36, 38, 40, 41], "time": [10, 31, 32, 35, 36, 38, 40, 41, 42, 43], "titl": [31, 32, 34, 38], "to_cr": [35, 36, 37, 38], "to_dict": [12, 31], "to_fil": [40, 44], "to_json": [12, 31], "to_numpi": [38, 39, 40, 42, 43], "to_tiff": 1, "tobiasz": 15, "tobiaszwojnar": 15, "tobler": [10, 33], "todo": 20, "toler": [8, 9, 10, 11, 13, 31, 34, 36, 39], "toml": [22, 27], "too": [34, 35, 36, 38, 40, 41, 42, 43, 44], "tool": [21, 24, 35, 38], "top": [34, 35, 38, 40], "top_limit": 38, "total": [2, 11, 12, 31, 33], "total_pop10": 41, "toward": [35, 40], "tqdm": [36, 37, 42, 43], "trace": 31, "track": [9, 41], "tracker": [], "train": [36, 37, 38, 42, 43], "train_without_outli": 38, "transform": [1, 2, 3, 9, 21, 24, 29, 31, 32, 33, 35, 36, 37, 38, 40, 41, 44], "transform_blocks_to_numpi": 1, "transform_cr": 2, "transform_ps_to_dict": 1, "transit": [42, 43], "treat": [31, 34, 38], "trend": [8, 24, 31, 34, 35, 41], "trend_model": 8, "trend_valu": 8, "tri": 11, "triangle_mask": 1, "triangular": 34, "tricki": [32, 35], "true": [2, 3, 5, 7, 8, 9, 10, 11, 12, 13, 31, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44], "try": [42, 43], "tune": 43, "tupl": [2, 5, 8, 12, 33], "turco": [12, 33], "turgut": 15, "tutori": [20, 21, 24, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "two": [2, 4, 5, 8, 9, 31, 32, 33, 34, 35, 36, 38, 39, 41, 42, 43, 44], "type": [1, 3, 5, 6, 8, 9, 10, 11, 12, 13, 31, 35, 38, 40], "u": [5, 10, 31, 32, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44], "u_": [4, 9], "u_i": 10, "uk": [8, 25], "unabl": 37, "unbias": 36, "uncertainti": [11, 29, 40], "uncertainty_col_nam": 40, "unchang": 2, "undefin": [5, 9, 12, 31], "undefinedsmapewarn": 5, "under": [35, 42, 43], "underestim": [5, 12, 42, 43], "underforecast": 5, "understand": [3, 31, 34, 35, 38, 41, 44], "understood": [42, 43], "undesir": 44, "unfortun": 37, "uniform": 38, "union": [2, 4, 8, 10, 12], "uniqu": [2, 4], "unique_block": 2, "unit": [3, 4, 8, 9, 21, 25, 32, 34, 40, 41], "univers": [0, 24], "universalkrig": 8, "unknown": [3, 6, 7, 8, 12, 32, 37, 40], "unknown_block_index": [7, 42, 43], "unknown_loc": [3, 6, 8, 29, 36, 37, 38, 39, 40], "unknown_po": 6, "unknown_point": [8, 29], "unnecessari": 40, "unreli": [38, 42, 43], "unsupport": 9, "untouch": 31, "up": [10, 31, 33, 35, 38], "updat": [1, 2, 9, 11, 12, 24, 31], "upper": [33, 35, 38], "url": 28, "us": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 24, 27, 29, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "use_all_model": 8, "use_all_neighbors_in_rang": [3, 5, 8, 36, 39, 40], "use_point_support_cr": 2, "usecol": [33, 39], "useless": [32, 38], "user": [1, 2, 9, 12, 30, 34, 35, 40], "usual": [5, 29, 31, 32, 34, 36, 41], "util": 36, "v": [9, 12, 25, 33, 35], "v_": [4, 9], "v_h": 9, "val": [32, 37, 41], "val_col_nam": 4, "valid": [0, 34, 35, 36, 38, 43], "validate_bin": 1, "validate_direct": 1, "validate_direction_and_toler": 1, "validate_krig": 5, "validate_plot_attributes_for_experimental_variogram": 1, "validate_plot_attributes_for_experimental_variogram_class": 1, "validate_point": 1, "validate_selected_error": 1, "validate_semivariance_weight": 1, "validate_theoretical_variogram": 1, "validate_toler": 1, "validate_weight": 1, "validation_result": 5, "valu": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 29, 31, 32, 33, 34, 35, 37, 38, 39, 40, 41, 42, 43, 44], "value1": 32, "value2": 32, "value_a": 2, "value_b": 2, "value_col": 34, "value_column_nam": [2, 3, 4, 7, 9, 40, 41, 42, 43, 44], "valueerror": [6, 7, 9, 12], "var": [12, 39], "varfit": 25, "vari": [43, 44], "variabl": [12, 33, 34, 36, 37, 40, 41], "varianc": [3, 5, 7, 8, 10, 11, 12, 29, 31, 32, 33, 34, 35, 36, 39, 42, 43], "variat": [33, 34], "variogram": [0, 1, 3, 5, 7, 8, 11, 12, 13, 21, 24, 25, 28, 29, 30, 33, 36, 37, 39, 40, 41, 44], "variogram_cloud": [35, 40], "variogram_model_typ": [12, 31], "variogram_rang": 31, "variogram_weighting_method": [9, 41], "variogramcloud": [10, 35, 38, 40], "variogrammodelnotseterror": 1, "variogrampoint": [1, 10, 11], "vc": [10, 35, 40], "vc1000": 35, "ve": [35, 36, 43], "vector": 6, "verbos": [2, 3, 9, 12, 41, 42, 43, 44], "veri": [3, 8, 31, 32, 33, 34, 35, 37, 40, 42, 43, 44], "version": 18, "view": [5, 38], "vignett": 33, "violin": [10, 38, 40], "violinplot": [10, 38], "visibl": [35, 38], "visual": [0, 8, 31, 34, 35, 38, 40, 42, 43, 44], "visul": 38, "vital": 31, "viz": 21, "vmin": [31, 35, 36, 37, 38], "voila": 37, "vol": 25, "volum": [10, 40], "vv": 39, "w": [9, 10, 11, 13, 34, 39], "wa": [1, 2, 9, 10, 24, 25, 32], "wai": [2, 10, 31, 32, 33, 35, 37, 40], "want": [2, 3, 5, 8, 34, 36, 40, 44], "warn": [5, 10, 11, 12, 31], "we": [3, 5, 7, 8, 10, 13, 24, 29, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "we_direct": 34, "weak": [12, 32, 33, 34], "web": 33, "week": 17, "weight": [0, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 21, 24, 25, 31, 32, 36, 37, 38, 41], "weight_experimental_semivari": 1, "weighted_avg_point_support_semivari": 1, "weighted_block_to_block_dist": 2, "weighted_root_mean_squared_error": 5, "weightedblock2blocksemivari": 1, "weightedblock2pointsemivari": 1, "weighting_method": [5, 9], "weights_arrai": 1, "well": [5, 8, 31, 34, 36, 38, 41, 42, 43], "were": [4, 31], "weren": 2, "west": [10, 36, 39], "western": 36, "whale": 10, "what": [3, 5, 7, 8, 13, 31, 32, 34, 40, 41, 42, 43], "wheel": 27, "when": [2, 3, 5, 7, 8, 9, 10, 11, 12, 13, 31, 32, 35, 36, 37, 38, 40, 41, 42, 43], "whenev": 33, "where": [2, 3, 4, 5, 8, 9, 10, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43], "which": [2, 8, 10, 12, 27, 31, 32, 34, 37, 38, 40], "while": 7, "whisker": [35, 38], "white": [40, 44], "whole": [9, 31, 36], "why": [5, 8, 35, 36, 37, 38, 40, 41], "wide": [42, 43], "width": [8, 13, 34], "wielkopolski": 31, "wiki": 5, "wikipedia": 5, "wildli": [31, 36], "wise": 9, "with_stat": 38, "with_std": 38, "within": [2, 3, 5, 6, 8, 9, 10, 11, 12, 31, 32, 33, 34, 35, 36, 41, 43], "without": [27, 31, 32, 33, 38, 40], "without_stat": 38, "without_std": 38, "wkt": 2, "wojnar": 15, "won": [23, 31, 32, 41], "word": [32, 38, 40], "work": [5, 11, 12, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44], "world": [32, 33, 36, 38], "worldwid": 24, "worsen": 36, "worst": [36, 42, 43], "would": [23, 40], "wrap": 32, "wrmse": 5, "wrmse_closest": 5, "wrmse_dens": 5, "wrmse_dist": 5, "wrong": [12, 31, 42, 43], "wronggeometrytypeerror": 1, "wzbogacani": 28, "x": [2, 3, 4, 5, 6, 7, 8, 10, 11, 13, 21, 24, 29, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41], "x1": 32, "x2": 32, "x_": 32, "x_i": 10, "xiao": 25, "xlabel": [31, 32, 36, 38], "xn": 32, "xyval": 32, "y": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41], "y1": 32, "y2": 32, "y_": 5, "ye": 35, "yellow": 34, "yet": [9, 12, 27, 37], "yhat": [9, 12, 31, 32, 36], "ylabel": [31, 32, 36, 38, 39, 42, 43], "you": [3, 5, 7, 8, 13, 23, 24, 27, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44], "your": [3, 5, 7, 8, 9, 13, 24, 27, 32, 34, 35, 37, 38, 40], "z": [10, 28, 35, 37, 38], "z_": 37, "z_hat": 8, "z_i": 10, "z_lower_limit": [10, 35, 38], "z_upper_limit": [10, 35, 38], "z_w": 10, "zero": [3, 9, 10, 11, 12, 31, 35, 36, 37, 40, 41], "zhat": [7, 42, 43], "zinc": [33, 39], "zscore": [10, 35, 38], "zx11_2ts7tjfsny482gs54s80000gr": 39, "\u03c6": 17}, "titles": ["API", "Changes between version 0.x and 1.x", "Core data structures", "Pipelines", "Distance", "Models evaluation", "Inverse Distance Weighting (IDW)", "Block and Poisson Kriging", "Point Kriging", "Semivariogram Deconvolution", "Experimental Semivariance and Covariance", "Indicator Semivariogram", "Theoretical Semivariogram", "Visualization", "Community", "Contributors", "Network", "Use Cases", "Development", "Known Bugs", "Development", "Package structure", "Requirements and dependencies (version >= 1)", "Tests and contribution", "Pyinterpolate", "Bibliography", "Citation", "Setup", "Learning Materials", "Quickstart", "Tutorials", "Semivariogram exploration", "Semivariogram models", "Spatial Dependency Index", "Directional Semivariogram", "Variogram Points Cloud", "Ordinary and Simple Kriging", "Benchmarking Kriging", "Outliers and Kriging", "Directional Ordinary Kriging", "Blocks to points with Ordinary Kriging", "Semivariogram Regularization", "Poisson Kriging Centroid-based approach", "Area-to-area Poisson Kriging", "Area-to-Point Poisson Kriging"], "titleterms": {"": 15, "0": 1, "1": [1, 22, 24, 31, 32, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44], "2": [24, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "3": [31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "4": [31, 32, 33, 34, 35, 38, 39, 40, 41, 42, 43, 44], "5": [31, 34, 35, 38, 40, 41, 42, 43], "6": 31, "The": 27, "addit": 27, "advanc": 30, "aggreg": 9, "analyz": [35, 38], "api": [0, 33], "approach": 42, "ar": 1, "area": [7, 42, 43, 44], "author": 15, "automat": 31, "avail": 1, "base": [7, 38, 42], "bechmark": 37, "beginn": 30, "benchmark": 37, "between": 1, "bibliographi": 25, "block": [2, 4, 7, 40, 44], "blog": 28, "box": 35, "bug": 19, "build": 27, "calcul": 32, "canva": 40, "case": [17, 34], "centroid": [7, 42], "chang": 1, "changelog": [31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "chapter": [31, 32], "check": 35, "citat": [24, 26], "class": 1, "cloud": [10, 35, 38], "commun": 14, "compar": [32, 34, 39], "conda": 27, "content": [24, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "contribut": 23, "contributor": 15, "core": 2, "covari": 10, "creat": [32, 34, 35, 36, 38, 39], "cross": 5, "data": [2, 31, 38, 39, 40, 41, 42, 43, 44], "dataset": 31, "deconvolut": 9, "depend": [22, 27, 33], "detect": [35, 40], "develop": [18, 20], "deviat": 9, "differ": [33, 38], "direct": [10, 34, 39], "distanc": [4, 6], "distribut": 38, "do": 33, "each": 35, "east": 34, "element": 33, "error": 27, "evalu": [5, 36, 42, 43], "exampl": [8, 33], "experiment": [10, 31, 32, 34, 35], "explor": 31, "export": [31, 41, 44], "extent": 33, "fail": 27, "filter": [42, 43], "fit": [31, 32, 36, 40], "from": [35, 38], "function": 1, "guidelin": 27, "i": [33, 35], "idw": [6, 37], "import": [24, 31], "includ": 34, "index": 33, "indic": [8, 11], "instal": [27, 29], "intermedi": 30, "interpol": [39, 40], "introduct": [24, 37], "invers": 6, "isotrop": 34, "joss": 15, "known": 19, "krige": [3, 7, 8, 29, 36, 37, 38, 39, 40, 42, 43, 44], "lag": 35, "lead": 34, "learn": 28, "libspatialindex_c": 27, "linux": 27, "load": [42, 43, 44], "locat": 36, "longer": 1, "maintain": 15, "manual": 31, "materi": 28, "metric": 5, "model": [5, 31, 32, 36, 38, 39, 40, 42, 43, 44], "more": 35, "network": 16, "new": 1, "north": 34, "northeast": 34, "northwest": 34, "notebook": 27, "notic": 24, "ordinari": [3, 8, 29, 36, 39, 40], "outlier": [35, 38, 40], "output": [36, 37], "over": 33, "packag": 21, "paramet": 41, "perform": 37, "pip": 27, "pipelin": 3, "plot": 35, "point": [2, 4, 7, 8, 35, 38, 40, 44], "poisson": [3, 7, 42, 43, 44], "post": 28, "potenti": 38, "predict": 36, "prepar": [31, 38, 39, 40, 41, 42, 43, 44], "prerequisit": [31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "present": 28, "process": [34, 41], "public": 28, "pyinterpol": 24, "pylibtiff": 27, "quickstart": 29, "random": 32, "raster": 13, "regular": [41, 42, 43, 44], "remov": [35, 38, 40], "requir": 22, "resourc": 35, "result": 44, "review": 15, "same": 33, "scatter": 35, "semivari": 10, "semivariogram": [9, 11, 12, 31, 32, 34, 36, 39, 40, 41, 42, 43, 44], "set": [31, 36, 41], "setup": 27, "simpl": [8, 36], "smooth": 44, "so": 27, "south": 34, "southeast": 34, "southwest": 34, "spatial": 33, "statist": 35, "structur": [2, 21], "studi": 33, "support": [1, 2], "surfac": 32, "tabl": [31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44], "temporarili": 1, "test": 23, "theoret": [12, 31], "tool": 37, "topic": 27, "tutori": 30, "univers": 8, "unknown": 36, "us": [17, 33], "valid": [5, 37], "valu": 36, "variogram": [9, 10, 31, 32, 34, 35, 38], "version": [1, 22, 24], "violin": 35, "visual": [13, 41], "we": 33, "weight": 6, "west": 34, "what": 33, "why": 33, "work": 27, "workshop": 28, "x": 1}})
\ No newline at end of file
diff --git a/src/pyinterpolate/distance/block.py b/src/pyinterpolate/distance/block.py
index a73f154e..55c6c5e5 100644
--- a/src/pyinterpolate/distance/block.py
+++ b/src/pyinterpolate/distance/block.py
@@ -62,87 +62,6 @@ def _calc_b2b_dist_from_dataframe(
)
-# def _calc_b2b_dist_from_dataframe(
-# ps_blocks: Union[pd.DataFrame, gpd.GeoDataFrame],
-# lon_col_name: Union[str, Hashable],
-# lat_col_name: Union[str, Hashable],
-# val_col_name: Union[str, Hashable],
-# block_id_col_name: Union[str, Hashable],
-# verbose=False
-# ) -> pd.DataFrame:
-# r"""
-# Function calculates distances between the blocks' point supports.
-#
-# Parameters
-# ----------
-# ps_blocks : Union[pd.DataFrame, gpd.GeoDataFrame]
-# DataFrame with point supports and block indexes.
-#
-# lon_col_name : Union[str, Hashable]
-# Longitude or x coordinate.
-#
-# lat_col_name : Union[str, Hashable]
-# Latitude or y coordinate.
-#
-# val_col_name : Union[str, Hashable]
-# The point support values column.
-#
-# block_id_col_name : Union[str, Hashable]
-# Column with block names / indexes.
-#
-# verbose : bool, default = False
-# Show progress bar.
-#
-# Returns
-# -------
-# block_distances : DataFrame
-# Indexes and columns are block indexes, cells are distances.
-#
-# """
-# calculated_pairs = set()
-# unique_blocks = list(ps_blocks[block_id_col_name].unique())
-#
-# col_set = [lon_col_name, lat_col_name, val_col_name]
-#
-# results = []
-#
-# for block_i in tqdm(unique_blocks, disable=not verbose):
-# for block_j in unique_blocks:
-# # Check if it was estimated
-# if not (block_i, block_j) in calculated_pairs:
-# if block_i == block_j:
-# results.append([block_i, block_j, 0])
-# else:
-# i_value = ps_blocks[
-# ps_blocks[block_id_col_name] == block_i
-# ]
-# j_value = ps_blocks[
-# ps_blocks[block_id_col_name] == block_j
-# ]
-# value = _calculate_block_to_block_distance(
-# i_value[col_set].to_numpy(),
-# j_value[col_set].to_numpy()
-# )
-# results.append([block_i, block_j, value])
-# results.append([block_j, block_i, value])
-# calculated_pairs.add((block_i, block_j))
-# calculated_pairs.add((block_j, block_i))
-#
-# # Create output dataframe
-# df = pd.DataFrame(data=results, columns=['block_i', 'block_j', 'z'])
-# df = df.pivot_table(
-# values='z',
-# index='block_i',
-# columns='block_j'
-# )
-#
-# # sort
-# df = df.reindex(columns=unique_blocks)
-# df = df.reindex(index=unique_blocks)
-#
-# return df
-
-
# noinspection PyUnresolvedReferences
def _calc_b2b_dist_from_ps(ps_blocks: 'PointSupport') -> Dict:
r"""
@@ -213,6 +132,27 @@ def calc_block_to_block_distance(
AttributeError
Blocks are provided as DataFrame but column names were not given.
+ Notes
+ -----
+ The weighted distance between blocks is derived from the equation 3 given
+ in publication [1] from References.
+
+ .. math:: d(v_{a}, v_{b})=\frac{1}{\sum_{s=1}^{P_{a}} \sum_{s'=1}^{P_{b}} n(u_{s}) n(u_{s'})} * \sum_{s=1}^{P_{a}} \sum_{s'=1}^{P_{b}} n(u_{s})n(u_{s'})||u_{s}-u_{s'}||
+
+ where:
+ * :math:`P_{a}` and :math:`P_{b}`: number of points :math:`u_{s}`
+ and :math:`u_{s'}` used to discretize the two units :math:`v_{a}`
+ and :math:`v_{b}`
+ * :math:`n(u_{s})` and :math:`n(u_{s'})` - population size in
+ the cells :math:`u_{s}` and :math:`u_{s'}`
+
+ References
+ ----------
+ .. [1] Goovaerts, P. Kriging and Semivariogram Deconvolution in the
+ Presence of Irregular Geographical Units.
+ Math Geosci 40, 101–128 (2008).
+ https://doi.org/10.1007/s11004-007-9129-1
+
Examples
--------
>>> import os
@@ -291,60 +231,6 @@ def calc_block_to_block_distance(
return block_distances
-# def _calculate_block_to_block_distance(ps_block_1: np.ndarray,
-# ps_block_2: np.ndarray) -> float:
-# r"""
-# Function calculates distance between two blocks' point supports.
-#
-# Parameters
-# ----------
-# ps_block_1 : numpy array
-# Point support of the first block.
-#
-# ps_block_2 : numpy array
-# Point support of the second block.
-#
-# Returns
-# -------
-# weighted_distances : float
-# Weighted point-support distance between blocks.
-#
-# Notes
-# -----
-# The weighted distance between blocks is derived from the equation given
-# in publication [1] from References. This distance is weighted by
-#
-# References
-# ----------
-# .. [1] Goovaerts, P. Kriging and Semivariogram Deconvolution in the
-# Presence of Irregular Geographical Units.
-# Math Geosci 40, 101–128 (2008).
-# https://doi.org/10.1007/s11004-007-9129-1
-#
-# TODO
-# ----
-# * Add reference equation to the special part of the documentation.
-# """
-#
-# a_shape = ps_block_1.shape[0]
-# b_shape = ps_block_2.shape[0]
-# ax = ps_block_1[:, 0].reshape(1, a_shape)
-# bx = ps_block_2[:, 0].reshape(b_shape, 1)
-# dx = ax - bx
-# ay = ps_block_1[:, 1].reshape(1, a_shape)
-# by = ps_block_2[:, 1].reshape(b_shape, 1)
-# dy = ay - by
-# aval = ps_block_1[:, -1].reshape(1, a_shape)
-# bval = ps_block_2[:, -1].reshape(b_shape, 1)
-# w = aval * bval
-#
-# dist = np.sqrt(dx ** 2 + dy ** 2, dtype=float, casting='unsafe')
-#
-# wdist = dist * w
-# distances_sum = np.sum(wdist) / np.sum(w)
-# return distances_sum
-
-
def select_neighbors_in_range(data: pd.DataFrame,
current_lag: float,
previous_lag: float):
diff --git a/src/pyinterpolate/semivariogram/experimental/experimental_semivariogram.py b/src/pyinterpolate/semivariogram/experimental/experimental_semivariogram.py
index d039e664..9dab8008 100644
--- a/src/pyinterpolate/semivariogram/experimental/experimental_semivariogram.py
+++ b/src/pyinterpolate/semivariogram/experimental/experimental_semivariogram.py
@@ -27,7 +27,7 @@ def calculate_semivariance(ds: Union[ArrayLike, VariogramPoints] = None,
custom_bins: Union[ArrayLike, Any] = None,
custom_weights: ArrayLike = None,
) -> np.ndarray:
- """
+ r"""
Calculates experimental semivariance.
Parameters
@@ -95,11 +95,12 @@ def calculate_semivariance(ds: Union[ArrayLike, VariogramPoints] = None,
We calculate the empirical semivariance as:
- .. math:: g(h) = 0.5 * n(h)^(-1) * (SUM|i=1, n(h)|: [z(x_i + h) - z(x_i)]^2)
+ .. math:: g(h) = 0.5 * \frac{1}{n(h)} * \sum_{i=1}^{n(h)}{[z(x_i + h) - z(x_i)]^2}
where:
- :math:`h`: lag,
+ - :math:`n(h)`: number of point pairs within the lag :math:`h`,
- :math:`g(h)`: empirical semivariance for lag :math:`h`,
- :math:`n(h)`: number of point pairs within a specific lag,
- :math:`z(x_i)`: point a (value of observation at point a),