PyKrige


NamePyKrige JSON
Version 1.7.2 PyPI version JSON
download
home_pageNone
SummaryKriging Toolkit for Python.
upload_time2024-05-27 22:29:22
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseBSD-3-Clause
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # PyKrige

[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.3738604.svg)](https://doi.org/10.5281/zenodo.3738604)
[![PyPI version](https://badge.fury.io/py/PyKrige.svg)](https://badge.fury.io/py/PyKrige)
[![Conda Version](https://img.shields.io/conda/vn/conda-forge/pykrige.svg)](https://anaconda.org/conda-forge/pykrige)
[![Build Status](https://github.com/GeoStat-Framework/PyKrige/workflows/Continuous%20Integration/badge.svg?branch=main)](https://github.com/GeoStat-Framework/PyKrige/actions)
[![Coverage Status](https://coveralls.io/repos/github/GeoStat-Framework/PyKrige/badge.svg?branch=main)](https://coveralls.io/github/GeoStat-Framework/PyKrige?branch=main)
[![Documentation Status](https://readthedocs.org/projects/pykrige/badge/?version=stable)](http://pykrige.readthedocs.io/en/stable/?badge=stable)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)


<p align="center">
<img src="https://github.com/GeoStat-Framework/GeoStat-Framework.github.io/raw/master/docs/source/pics/PyKrige_250.png" alt="PyKrige-LOGO" width="251px"/>
</p>

Kriging Toolkit for Python.

## Purpose

The code supports 2D and 3D ordinary and universal kriging. Standard
variogram models (linear, power, spherical, gaussian, exponential) are
built in, but custom variogram models can also be used. The 2D universal
kriging code currently supports regional-linear, point-logarithmic, and
external drift terms, while the 3D universal kriging code supports a
regional-linear drift term in all three spatial dimensions. Both
universal kriging classes also support generic 'specified' and
'functional' drift capabilities. With the 'specified' drift capability,
the user may manually specify the values of the drift(s) at each data
point and all grid points. With the 'functional' drift capability, the
user may provide callable function(s) of the spatial coordinates that
define the drift(s). The package includes a module that contains
functions that should be useful in working with ASCII grid files (`\*.asc`).

See the documentation at <http://pykrige.readthedocs.io/> for more
details and examples.

## Installation

PyKrige requires Python 3.5+ as well as numpy, scipy. It can be
installed from PyPi with,

``` bash
pip install pykrige
```

scikit-learn is an optional dependency needed for parameter tuning and
regression kriging. matplotlib is an optional dependency needed for
plotting.

If you use conda, PyKrige can be installed from the <span
class="title-ref">conda-forge</span> channel with,

``` bash
conda install -c conda-forge pykrige
```

## Features

### Kriging algorithms

-   `OrdinaryKriging`: 2D ordinary kriging with estimated mean
-   `UniversalKriging`: 2D universal kriging providing drift terms
-   `OrdinaryKriging3D`: 3D ordinary kriging
-   `UniversalKriging3D`: 3D universal kriging
-   `RegressionKriging`: An implementation of Regression-Kriging
-   `ClassificationKriging`: An implementation of Simplicial Indicator
    Kriging

### Wrappers

-   `rk.Krige`: A scikit-learn wrapper class for Ordinary and Universal
    Kriging

### Tools

-   `kriging_tools.write_asc_grid`: Writes gridded data to ASCII grid file (`\*.asc`)
-   `kriging_tools.read_asc_grid`: Reads ASCII grid file (`\*.asc`)
-   `kriging_tools.write_zmap_grid`: Writes gridded data to zmap file (`\*.zmap`)
-   `kriging_tools.read_zmap_grid`: Reads zmap file (`\*.zmap`)

### Kriging Parameters Tuning

A scikit-learn compatible API for parameter tuning by cross-validation
is exposed in
[sklearn.model\_selection.GridSearchCV](http://scikit-learn.org/stable/modules/generated/sklearn.model_selection.GridSearchCV.html).
See the [Krige
CV](http://pykrige.readthedocs.io/en/latest/examples/08_krige_cv.html#sphx-glr-examples-08-krige-cv-py)
example for a more practical illustration.

### Regression Kriging

[Regression kriging](https://en.wikipedia.org/wiki/Regression-Kriging)
can be performed with
[pykrige.rk.RegressionKriging](http://pykrige.readthedocs.io/en/latest/examples/07_regression_kriging2d.html).
This class takes as parameters a scikit-learn regression model, and
details of either the `OrdinaryKriging` or the `UniversalKriging`
class, and performs a correction step on the ML regression prediction.

A demonstration of the regression kriging is provided in the
[corresponding
example](http://pykrige.readthedocs.io/en/latest/examples/07_regression_kriging2d.html#sphx-glr-examples-07-regression-kriging2d-py).

### Classification Kriging

[Simplifical Indicator
kriging](https://www.sciencedirect.com/science/article/abs/pii/S1002070508600254)
can be performed with
[pykrige.ck.ClassificationKriging](http://pykrige.readthedocs.io/en/latest/examples/10_classification_kriging2d.html).
This class takes as parameters a scikit-learn classification model, and
details of either the `OrdinaryKriging` or the `UniversalKriging` class,
and performs a correction step on the ML classification prediction.

A demonstration of the classification kriging is provided in the
[corresponding
example](http://pykrige.readthedocs.io/en/latest/examples/10_classification_kriging2d.html#sphx-glr-examples-10-classification-kriging2d-py).

## License

PyKrige uses the BSD 3-Clause License.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "PyKrige",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "\"Sebastian M\u00fcller, Roman Yurchak\" <info@geostat-framework.org>",
    "keywords": null,
    "author": null,
    "author_email": "\"Benjamin S. Murphy, Sebastian M\u00fcller\" <info@geostat-framework.org>",
    "download_url": "https://files.pythonhosted.org/packages/ea/00/d815833441d8c52bf4a6930952e77d3de77d0bf67b3202ccc12dabdae279/pykrige-1.7.2.tar.gz",
    "platform": null,
    "description": "# PyKrige\n\n[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.3738604.svg)](https://doi.org/10.5281/zenodo.3738604)\n[![PyPI version](https://badge.fury.io/py/PyKrige.svg)](https://badge.fury.io/py/PyKrige)\n[![Conda Version](https://img.shields.io/conda/vn/conda-forge/pykrige.svg)](https://anaconda.org/conda-forge/pykrige)\n[![Build Status](https://github.com/GeoStat-Framework/PyKrige/workflows/Continuous%20Integration/badge.svg?branch=main)](https://github.com/GeoStat-Framework/PyKrige/actions)\n[![Coverage Status](https://coveralls.io/repos/github/GeoStat-Framework/PyKrige/badge.svg?branch=main)](https://coveralls.io/github/GeoStat-Framework/PyKrige?branch=main)\n[![Documentation Status](https://readthedocs.org/projects/pykrige/badge/?version=stable)](http://pykrige.readthedocs.io/en/stable/?badge=stable)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n\n\n<p align=\"center\">\n<img src=\"https://github.com/GeoStat-Framework/GeoStat-Framework.github.io/raw/master/docs/source/pics/PyKrige_250.png\" alt=\"PyKrige-LOGO\" width=\"251px\"/>\n</p>\n\nKriging Toolkit for Python.\n\n## Purpose\n\nThe code supports 2D and 3D ordinary and universal kriging. Standard\nvariogram models (linear, power, spherical, gaussian, exponential) are\nbuilt in, but custom variogram models can also be used. The 2D universal\nkriging code currently supports regional-linear, point-logarithmic, and\nexternal drift terms, while the 3D universal kriging code supports a\nregional-linear drift term in all three spatial dimensions. Both\nuniversal kriging classes also support generic 'specified' and\n'functional' drift capabilities. With the 'specified' drift capability,\nthe user may manually specify the values of the drift(s) at each data\npoint and all grid points. With the 'functional' drift capability, the\nuser may provide callable function(s) of the spatial coordinates that\ndefine the drift(s). The package includes a module that contains\nfunctions that should be useful in working with ASCII grid files (`\\*.asc`).\n\nSee the documentation at <http://pykrige.readthedocs.io/> for more\ndetails and examples.\n\n## Installation\n\nPyKrige requires Python 3.5+ as well as numpy, scipy. It can be\ninstalled from PyPi with,\n\n``` bash\npip install pykrige\n```\n\nscikit-learn is an optional dependency needed for parameter tuning and\nregression kriging. matplotlib is an optional dependency needed for\nplotting.\n\nIf you use conda, PyKrige can be installed from the <span\nclass=\"title-ref\">conda-forge</span> channel with,\n\n``` bash\nconda install -c conda-forge pykrige\n```\n\n## Features\n\n### Kriging algorithms\n\n-   `OrdinaryKriging`: 2D ordinary kriging with estimated mean\n-   `UniversalKriging`: 2D universal kriging providing drift terms\n-   `OrdinaryKriging3D`: 3D ordinary kriging\n-   `UniversalKriging3D`: 3D universal kriging\n-   `RegressionKriging`: An implementation of Regression-Kriging\n-   `ClassificationKriging`: An implementation of Simplicial Indicator\n    Kriging\n\n### Wrappers\n\n-   `rk.Krige`: A scikit-learn wrapper class for Ordinary and Universal\n    Kriging\n\n### Tools\n\n-   `kriging_tools.write_asc_grid`: Writes gridded data to ASCII grid file (`\\*.asc`)\n-   `kriging_tools.read_asc_grid`: Reads ASCII grid file (`\\*.asc`)\n-   `kriging_tools.write_zmap_grid`: Writes gridded data to zmap file (`\\*.zmap`)\n-   `kriging_tools.read_zmap_grid`: Reads zmap file (`\\*.zmap`)\n\n### Kriging Parameters Tuning\n\nA scikit-learn compatible API for parameter tuning by cross-validation\nis exposed in\n[sklearn.model\\_selection.GridSearchCV](http://scikit-learn.org/stable/modules/generated/sklearn.model_selection.GridSearchCV.html).\nSee the [Krige\nCV](http://pykrige.readthedocs.io/en/latest/examples/08_krige_cv.html#sphx-glr-examples-08-krige-cv-py)\nexample for a more practical illustration.\n\n### Regression Kriging\n\n[Regression kriging](https://en.wikipedia.org/wiki/Regression-Kriging)\ncan be performed with\n[pykrige.rk.RegressionKriging](http://pykrige.readthedocs.io/en/latest/examples/07_regression_kriging2d.html).\nThis class takes as parameters a scikit-learn regression model, and\ndetails of either the `OrdinaryKriging` or the `UniversalKriging`\nclass, and performs a correction step on the ML regression prediction.\n\nA demonstration of the regression kriging is provided in the\n[corresponding\nexample](http://pykrige.readthedocs.io/en/latest/examples/07_regression_kriging2d.html#sphx-glr-examples-07-regression-kriging2d-py).\n\n### Classification Kriging\n\n[Simplifical Indicator\nkriging](https://www.sciencedirect.com/science/article/abs/pii/S1002070508600254)\ncan be performed with\n[pykrige.ck.ClassificationKriging](http://pykrige.readthedocs.io/en/latest/examples/10_classification_kriging2d.html).\nThis class takes as parameters a scikit-learn classification model, and\ndetails of either the `OrdinaryKriging` or the `UniversalKriging` class,\nand performs a correction step on the ML classification prediction.\n\nA demonstration of the classification kriging is provided in the\n[corresponding\nexample](http://pykrige.readthedocs.io/en/latest/examples/10_classification_kriging2d.html#sphx-glr-examples-10-classification-kriging2d-py).\n\n## License\n\nPyKrige uses the BSD 3-Clause License.\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "Kriging Toolkit for Python.",
    "version": "1.7.2",
    "project_urls": {
        "Changelog": "https://github.com/GeoStat-Framework/PyKrige/blob/main/CHANGELOG.md",
        "Conda-Forge": "https://anaconda.org/conda-forge/pykrige",
        "Documentation": "https://pykrige.readthedocs.io",
        "Homepage": "https://github.com/GeoStat-Framework/PyKrige",
        "Source": "https://github.com/GeoStat-Framework/PyKrige",
        "Tracker": "https://github.com/GeoStat-Framework/PyKrige/issues"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c022ff87203ebbe231c7101304a46ebf4ea00632a976a6e9c470d487c905a832",
                "md5": "e8471b730486088a816c5aa92a5cbfb8",
                "sha256": "5975b5fd939266835c197289dbdb2dd2c2408f9cb56246019c43d5353eaa3ea3"
            },
            "downloads": -1,
            "filename": "PyKrige-1.7.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e8471b730486088a816c5aa92a5cbfb8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 224865,
            "upload_time": "2024-05-27T22:28:47",
            "upload_time_iso_8601": "2024-05-27T22:28:47.261261Z",
            "url": "https://files.pythonhosted.org/packages/c0/22/ff87203ebbe231c7101304a46ebf4ea00632a976a6e9c470d487c905a832/PyKrige-1.7.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8851f9312aa28fee96670e9012b8a162864309d8cc3317e5788d84ec7520a660",
                "md5": "01a7c42967eeffb91164ad46abbe2985",
                "sha256": "54bf6252e3fa91a6d798e7d9669108154d2f6866283da6f6029d2813667e64ea"
            },
            "downloads": -1,
            "filename": "PyKrige-1.7.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "01a7c42967eeffb91164ad46abbe2985",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 212934,
            "upload_time": "2024-05-27T22:28:49",
            "upload_time_iso_8601": "2024-05-27T22:28:49.536117Z",
            "url": "https://files.pythonhosted.org/packages/88/51/f9312aa28fee96670e9012b8a162864309d8cc3317e5788d84ec7520a660/PyKrige-1.7.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b729d524db356834989799b11efb83361a2ae7720f3c55ed1be67e369da57475",
                "md5": "4a8d5460c73c2c451da6ce99687cde10",
                "sha256": "855032b06995b4789d42e4ccd99a2484fabd3fad30d79525b8fe913cc8ff0546"
            },
            "downloads": -1,
            "filename": "PyKrige-1.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4a8d5460c73c2c451da6ce99687cde10",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 909738,
            "upload_time": "2024-05-27T22:28:51",
            "upload_time_iso_8601": "2024-05-27T22:28:51.452110Z",
            "url": "https://files.pythonhosted.org/packages/b7/29/d524db356834989799b11efb83361a2ae7720f3c55ed1be67e369da57475/PyKrige-1.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a995442c539400f640c14ae10f1f88e4b85ed1511b19d8cd03fb03e79a046e3",
                "md5": "49b70c1cff9773c81eec2baf83408fb5",
                "sha256": "479917f68b448d3952cf572126ea0a859da4780d50c8ff4be00d41f3dc9396b7"
            },
            "downloads": -1,
            "filename": "PyKrige-1.7.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "49b70c1cff9773c81eec2baf83408fb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 205755,
            "upload_time": "2024-05-27T22:28:52",
            "upload_time_iso_8601": "2024-05-27T22:28:52.871123Z",
            "url": "https://files.pythonhosted.org/packages/1a/99/5442c539400f640c14ae10f1f88e4b85ed1511b19d8cd03fb03e79a046e3/PyKrige-1.7.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aacd65fab13b7ffb8c219ec0f3b7308e5be9c50721562e212e1f302e4d467727",
                "md5": "b243aae1b5869aaf400017cc8841da15",
                "sha256": "725bac8d185078f6e9853acb89cf2cc6eee3ce193419c0c7ec2b9b43b55f4057"
            },
            "downloads": -1,
            "filename": "PyKrige-1.7.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b243aae1b5869aaf400017cc8841da15",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 224629,
            "upload_time": "2024-05-27T22:28:54",
            "upload_time_iso_8601": "2024-05-27T22:28:54.655858Z",
            "url": "https://files.pythonhosted.org/packages/aa/cd/65fab13b7ffb8c219ec0f3b7308e5be9c50721562e212e1f302e4d467727/PyKrige-1.7.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac911282b2561a455eda659b481816771f722b3c68fad75506a5d4d70d0f1726",
                "md5": "11709a39cb71c20d7238123f1cb70f1d",
                "sha256": "b4e68fc84df9fb521a27a1bec2dee60c12a95988712fee31e0a8753c5e51f3df"
            },
            "downloads": -1,
            "filename": "PyKrige-1.7.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "11709a39cb71c20d7238123f1cb70f1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 212734,
            "upload_time": "2024-05-27T22:28:56",
            "upload_time_iso_8601": "2024-05-27T22:28:56.507043Z",
            "url": "https://files.pythonhosted.org/packages/ac/91/1282b2561a455eda659b481816771f722b3c68fad75506a5d4d70d0f1726/PyKrige-1.7.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51a320535a4e2ab56539dfd169fbad55fd302745bde52d6e4041a1dc02324e97",
                "md5": "f08f575ab0120cb3f29e00ff2b237fdd",
                "sha256": "175f1b12dfe3cd1751f2c70c872c8d16ca712b55569fe98fd5ae4bd58fb49cc3"
            },
            "downloads": -1,
            "filename": "PyKrige-1.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f08f575ab0120cb3f29e00ff2b237fdd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 979627,
            "upload_time": "2024-05-27T22:28:58",
            "upload_time_iso_8601": "2024-05-27T22:28:58.601666Z",
            "url": "https://files.pythonhosted.org/packages/51/a3/20535a4e2ab56539dfd169fbad55fd302745bde52d6e4041a1dc02324e97/PyKrige-1.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50c4b2465d12e370dc4a20539a163b7ca84d0bb6dc8a41a37dbed9b7069bcb97",
                "md5": "119cffb5bffc1d069dc129614a23a37c",
                "sha256": "36b8fec0e761f6406de992f16dbc6f82a7616a918f6e2dc0a13002a419831827"
            },
            "downloads": -1,
            "filename": "PyKrige-1.7.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "119cffb5bffc1d069dc129614a23a37c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 205591,
            "upload_time": "2024-05-27T22:29:00",
            "upload_time_iso_8601": "2024-05-27T22:29:00.846865Z",
            "url": "https://files.pythonhosted.org/packages/50/c4/b2465d12e370dc4a20539a163b7ca84d0bb6dc8a41a37dbed9b7069bcb97/PyKrige-1.7.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f57a0161ed40ca24be480a02067410a849317d38d736fa3894190c0dc4280ab",
                "md5": "856de2dadf62c5a3aa9841b573c54425",
                "sha256": "91cd18ec9044d28fe5b397e5788b712b7f36c0c116de22ae7d56952f83b253ca"
            },
            "downloads": -1,
            "filename": "PyKrige-1.7.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "856de2dadf62c5a3aa9841b573c54425",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 227348,
            "upload_time": "2024-05-27T22:29:02",
            "upload_time_iso_8601": "2024-05-27T22:29:02.851592Z",
            "url": "https://files.pythonhosted.org/packages/1f/57/a0161ed40ca24be480a02067410a849317d38d736fa3894190c0dc4280ab/PyKrige-1.7.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2cf8a4d6909126020c4193051c97a86b5a7bd6e312f96c88f85794a4b69ab8ce",
                "md5": "0f4e5747c17fb703ffb4ca8f34b22664",
                "sha256": "2bdc676f5d3ddad2552dbf1e6d9699cc186039379dd0a84a5c9c2c27cbf9dc53"
            },
            "downloads": -1,
            "filename": "PyKrige-1.7.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0f4e5747c17fb703ffb4ca8f34b22664",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 214825,
            "upload_time": "2024-05-27T22:29:04",
            "upload_time_iso_8601": "2024-05-27T22:29:04.834715Z",
            "url": "https://files.pythonhosted.org/packages/2c/f8/a4d6909126020c4193051c97a86b5a7bd6e312f96c88f85794a4b69ab8ce/PyKrige-1.7.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0139214da796fd63f74bfe78be57cda7d1ab0305a0b2345974ce0d65955f219c",
                "md5": "3d89f31222d90e930f730154c36a7cc9",
                "sha256": "a6e15c999435de303f76413b41d6ba4d271e12d96a93ac2f1acd4d80d526fab2"
            },
            "downloads": -1,
            "filename": "PyKrige-1.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3d89f31222d90e930f730154c36a7cc9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 961681,
            "upload_time": "2024-05-27T22:29:06",
            "upload_time_iso_8601": "2024-05-27T22:29:06.854630Z",
            "url": "https://files.pythonhosted.org/packages/01/39/214da796fd63f74bfe78be57cda7d1ab0305a0b2345974ce0d65955f219c/PyKrige-1.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e5f1df7322867f2279ce82a79211196c1dfd62c230bd62a889e0016ea4f6c7cf",
                "md5": "85a61d183bc748f0719b684661327e8e",
                "sha256": "e0138c1dfdbbaeb76df20a304f90deeccec56951518ceae81e34bfbbb49649f5"
            },
            "downloads": -1,
            "filename": "PyKrige-1.7.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "85a61d183bc748f0719b684661327e8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 205914,
            "upload_time": "2024-05-27T22:29:08",
            "upload_time_iso_8601": "2024-05-27T22:29:08.626438Z",
            "url": "https://files.pythonhosted.org/packages/e5/f1/df7322867f2279ce82a79211196c1dfd62c230bd62a889e0016ea4f6c7cf/PyKrige-1.7.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef424a55f3d4bbcbd8588ee4173b6a32b7daac459dcaf596fb54560da3f03644",
                "md5": "9a8d068a012fbf4b7d9b30f2d92f7505",
                "sha256": "77c673dd7440ea80dcdd27f9a96371feeaa4eaaaa3cf5c70f75474aa19c6574f"
            },
            "downloads": -1,
            "filename": "PyKrige-1.7.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9a8d068a012fbf4b7d9b30f2d92f7505",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 224902,
            "upload_time": "2024-05-27T22:29:10",
            "upload_time_iso_8601": "2024-05-27T22:29:10.512215Z",
            "url": "https://files.pythonhosted.org/packages/ef/42/4a55f3d4bbcbd8588ee4173b6a32b7daac459dcaf596fb54560da3f03644/PyKrige-1.7.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c0721d78a3d9fd7a32e057db8e47221fa0cb2e1196b5ed96cd2edb5bd85e8e2",
                "md5": "194b2c8edbd2e77989e6dcd7aa1de9b2",
                "sha256": "8fbd401edda1aff0a2031cacf8ddf5ba737c283dfc0d89b2cb249c0b0987b221"
            },
            "downloads": -1,
            "filename": "PyKrige-1.7.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "194b2c8edbd2e77989e6dcd7aa1de9b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 213717,
            "upload_time": "2024-05-27T22:29:12",
            "upload_time_iso_8601": "2024-05-27T22:29:12.318807Z",
            "url": "https://files.pythonhosted.org/packages/6c/07/21d78a3d9fd7a32e057db8e47221fa0cb2e1196b5ed96cd2edb5bd85e8e2/PyKrige-1.7.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18eb08d7e9c339ad57d06855bc14543d05a5b87e775a982777f890c49d57088e",
                "md5": "97503247fd7beb7c4217496fa3605edf",
                "sha256": "86a872bf47c72eaf5cf8d30eb56b6eea21ac0c47e4468a3d4b44586651b7d9aa"
            },
            "downloads": -1,
            "filename": "PyKrige-1.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "97503247fd7beb7c4217496fa3605edf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 924782,
            "upload_time": "2024-05-27T22:29:13",
            "upload_time_iso_8601": "2024-05-27T22:29:13.586597Z",
            "url": "https://files.pythonhosted.org/packages/18/eb/08d7e9c339ad57d06855bc14543d05a5b87e775a982777f890c49d57088e/PyKrige-1.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50f08534db70f3c54b9563833a0665655f8e677a8e2cceb3d7bb46d4936d0a03",
                "md5": "698d1abc35cbef6c48370353e396e262",
                "sha256": "8195c4371374f49075dfd94b82caa1fd5be10fa7fb9892947e959c337b4924b5"
            },
            "downloads": -1,
            "filename": "PyKrige-1.7.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "698d1abc35cbef6c48370353e396e262",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 206738,
            "upload_time": "2024-05-27T22:29:14",
            "upload_time_iso_8601": "2024-05-27T22:29:14.995106Z",
            "url": "https://files.pythonhosted.org/packages/50/f0/8534db70f3c54b9563833a0665655f8e677a8e2cceb3d7bb46d4936d0a03/PyKrige-1.7.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "097681b2b99afc614cbc5ba878772d42c13421b7ea0ffa8cfba71879b4f2403a",
                "md5": "14032ae20941c61de2e12208e57757f8",
                "sha256": "4982734bbbd562fd8affdfd23d10a5f77a61690a1e75fc0e5514a0c016a813eb"
            },
            "downloads": -1,
            "filename": "PyKrige-1.7.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "14032ae20941c61de2e12208e57757f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 226029,
            "upload_time": "2024-05-27T22:29:16",
            "upload_time_iso_8601": "2024-05-27T22:29:16.718746Z",
            "url": "https://files.pythonhosted.org/packages/09/76/81b2b99afc614cbc5ba878772d42c13421b7ea0ffa8cfba71879b4f2403a/PyKrige-1.7.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f316e82ba491e2bad3272f86e73409668388cb2503773f3a6d3c829a764a63a",
                "md5": "934e79f8e805bca3e802588deda8610d",
                "sha256": "7d742ed9240d31c3b082570c3d99bf1a0a0b02d49c723cb69a12ed52fc2faf27"
            },
            "downloads": -1,
            "filename": "PyKrige-1.7.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "934e79f8e805bca3e802588deda8610d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 214192,
            "upload_time": "2024-05-27T22:29:17",
            "upload_time_iso_8601": "2024-05-27T22:29:17.902624Z",
            "url": "https://files.pythonhosted.org/packages/7f/31/6e82ba491e2bad3272f86e73409668388cb2503773f3a6d3c829a764a63a/PyKrige-1.7.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb9254bde5a6c097b3267c7f29e9650c52842c970c1184d2b311a3e95ae34e37",
                "md5": "9220369c79d9b3af154574d9202be8cc",
                "sha256": "e588f5e087f08356e4089e0dd83266e751e8821a8feff33a52a4ffc888ce321a"
            },
            "downloads": -1,
            "filename": "PyKrige-1.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9220369c79d9b3af154574d9202be8cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 915016,
            "upload_time": "2024-05-27T22:29:19",
            "upload_time_iso_8601": "2024-05-27T22:29:19.300475Z",
            "url": "https://files.pythonhosted.org/packages/bb/92/54bde5a6c097b3267c7f29e9650c52842c970c1184d2b311a3e95ae34e37/PyKrige-1.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24e2e3dbfe7a35b719892e09f313ddba26fa2679db6d080a9782c3975a55dbde",
                "md5": "8684abeb5b9829477cfb6849cded96b1",
                "sha256": "7e2944e111b530991f937bd79fcc04d9d74e64785bdc672ea12626f19cbdbfdd"
            },
            "downloads": -1,
            "filename": "PyKrige-1.7.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8684abeb5b9829477cfb6849cded96b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 206756,
            "upload_time": "2024-05-27T22:29:21",
            "upload_time_iso_8601": "2024-05-27T22:29:21.212320Z",
            "url": "https://files.pythonhosted.org/packages/24/e2/e3dbfe7a35b719892e09f313ddba26fa2679db6d080a9782c3975a55dbde/PyKrige-1.7.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea00d815833441d8c52bf4a6930952e77d3de77d0bf67b3202ccc12dabdae279",
                "md5": "097c8619ce4fe3bed1c0e578550245c8",
                "sha256": "25b45a4173714c0b62098d19019404cb3978fa8bd8abae9ba55a272a53979e35"
            },
            "downloads": -1,
            "filename": "pykrige-1.7.2.tar.gz",
            "has_sig": false,
            "md5_digest": "097c8619ce4fe3bed1c0e578550245c8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 618688,
            "upload_time": "2024-05-27T22:29:22",
            "upload_time_iso_8601": "2024-05-27T22:29:22.519007Z",
            "url": "https://files.pythonhosted.org/packages/ea/00/d815833441d8c52bf4a6930952e77d3de77d0bf67b3202ccc12dabdae279/pykrige-1.7.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-27 22:29:22",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "GeoStat-Framework",
    "github_project": "PyKrige",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pykrige"
}
        
Elapsed time: 0.30767s