pgeof


Namepgeof JSON
Version 0.2.0 PyPI version JSON
download
home_pagehttps://github.com/drprojects/point_geometric_features
SummaryCompute the geometric features associated with each point's neighborhood:
upload_time2024-04-17 12:39:57
maintainerNone
docs_urlNone
authorNone
requires_python<3.13,>=3.8
licenseMIT License Copyright (c) 2023-2024 Damien Robert, Loic Landrieu, Romain Janvier Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords point clouds features 3d lidar
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">

# Point Geometric Features

[![python](https://img.shields.io/badge/-Python_3.9_%7C_3.10_%7C_3.11_%7C_3.12-blue?logo=python&logoColor=white)](#)
![C++](https://img.shields.io/badge/c++-%2300599C.svg?style=for-the-badge&logo=c%2B%2B&logoColor=white)
[![license](https://img.shields.io/badge/License-MIT-green.svg?labelColor=gray)](#)


</div>


## 📌 Description

The `pgeof` library provides utilities for fast, parallelized computing ⚡ of **local geometric 
features for 3D point clouds** ☁️ **on CPU** .

<details>
<summary><b>️List of available features ️👇</b></summary>

- linearity
- planarity
- scattering
- verticality (two formulations)
- normal_x
- normal_y
- normal_z
- length
- surface
- volume
- curvature
- optimal neighborhood size
</details>

`pgeof` allows computing features in multiple fashions: **on-the-fly subset of features** 
_a la_ [jakteristics](https://jakteristics.readthedocs.io), **array of features**, or 
**multiscale features**. Moreover, `pgeof` also offers functions for fast **K-NN** or 
**radius-NN** searches 🔍. 

Behind the scenes, the library is a Python wrapper around C++ utilities.
The overall code is not intended to be DRY nor generic, it aims at providing efficient as 
possible implementations for some limited scopes and usages.

## 🧱 Installation

### From binaries

```bash
python -m pip install pgeof 
```

or 

```bash
python -m pip install git+https://github.com/drprojects/point_geometric_features
```

### Building from sources

`pgeof` depends on [Eigen library](https://eigen.tuxfamily.org/), [Taskflow](https://github.com/taskflow/taskflow), [nanoflann](https://github.com/jlblancoc/nanoflann) and [nanobind](https://github.com/wjakob/nanobind).
The library adheres to [PEP 517](https://peps.python.org/pep-0517/) and uses [scikit-build-core](https://github.com/scikit-build/scikit-build-core) as build backend. 
Build dependencies (`nanobind`, `scikit-build-core`, ...) are fetched at build time.
C++ third party libraries are embedded as submodules.


```bash
# Clone project
git clone --recurse-submodules https://github.com/drprojects/point_geometric_features.git
cd point_geometric_features

# Build and install the package
python -m pip install .
```

## 🚀 Using Point Geometric Features

Here we summarize the very basics of `pgeof` usage. 
Users are invited to use `help(pgeof)` for further details on parameters.

At its core `pgeof` provides three functions to compute a set of features given a 3D point cloud and
some precomputed neighborhoods.

```python
import pgeof

# Compute a set of 11 predefined features per points
pgeof.compute_features(
    xyz, # The point cloud. A numpy array of shape (n, 3)
    nn, # CSR data structure see below
    nn_ptr, # CSR data structure see below
    k_min = 1 # Minimum number of neighbors to consider for features computation
    verbose = false # Basic verbose output, for debug purposes
)
```

```python
# Sequence of n scales feature computation
pgeof.compute_features_multiscale(
    ...
    k_scale # array of neighborhood size
)
```

```python
# Feature computation with optimal neighborhood selection as exposed in Weinmann et al., 2015
# return a set of 12 features per points (11 + the optimal neighborhood size)
pgeof.compute_features_optimal(
    ...
    k_min = 1, # Minimum number of neighbors to consider for features computation
    k_step = 1, # Step size to take when searching for the optimal neighborhood
    k_min_search = 1, # Starting size for searching the optimal neighborhood size. Should be >= k_min 
)
```

⚠️ Please note that for theses three functions the **neighbors are expected in CSR format**. 
This allows expressing neighborhoods of varying sizes with dense arrays (e.g. the output of a 
radius search).

We provide very tiny and specialized **k-NN** and **radius-NN** search routines. 
They rely on `nanoflann` C++ library and should be **faster and lighter than `scipy` and 
`sklearn` alternatives**.

Here are some examples of how to easily compute and convert typical k-NN or radius-NN neighborhoods to CSR format (`nn` and `nn_ptr` are two flat `uint32` arrays):

```python
import pgeof
import numpy as np

# Generate a random synthetic point cloud and k-nearest neighbors
num_points = 10000
k = 20
xyz = np.random.rand(num_points, 3).astype("float32")
knn, _ = pgeof.knn_search(xyz, xyz, k)

# Converting k-nearest neighbors to CSR format
nn_ptr = np.arange(num_points + 1) * k
nn = knn.flatten()

# You may need to convert nn/nn_ptr to uint32 arrays
nn_ptr = nn_ptr.astype("uint32")
nn = nn.astype("uint32")

features = pgeof.compute_features(xyz, nn, nn_ptr)
```

```python
import pgeof
import numpy as np

# Generate a random synthetic point cloud and k-nearest neighbors
num_points = 10000
radius = 0.2
k = 20
xyz = np.random.rand(num_points, 3).astype("float32")
knn, _ = pgeof.radius_search(xyz, xyz, radius, k)

# Converting radius neighbors to CSR format
nn_ptr = np.r_[0, (knn >= 0).sum(axis=1).cumsum()]
nn = knn[knn >= 0]

# You may need to convert nn/nn_ptr to uint32 arrays
nn_ptr = nn_ptr.astype("uint32")
nn = nn.astype("uint32")

features = pgeof.compute_features(xyz, nn, nn_ptr)
```

At last, and as a by-product, we also provide a function to **compute a subset of features on the fly**. 
It is inspired by the [jakteristics](https://jakteristics.readthedocs.io) python package (while 
being less complete but faster).
The list of features to compute is given as an array of `EFeatureID`.

```python
import pgeof
from pgeof import EFeatureID
import numpy as np

# Generate a random synthetic point cloud and k-nearest neighbors
num_points = 10000
radius = 0.2
k = 20
xyz = np.random.rand(num_points, 3)

# Compute verticality and curvature
features = pgeof.compute_features_selected(xyz, radius, k, [EFeatureID.Verticality, EFeatureID.Curvature])
```

## Known limitations

Some functions only accept `float` scalar types and `uint32` index types, and we avoid implicit
cast / conversions.
This could be a limitation in some situations (e.g. point clouds with `double` coordinates or 
involving very large big integer indices).
Some C++ functions could be templated / to accept other types without conversion.
For now, this feature is not enabled everywhere, to reduce compilation time and enhance code 
readability. 
Please let us know if you need this feature !

By convention, our normal vectors are forced to be oriented towards positive Z values. 
We make this design choice in order to return consistently-oriented normals. 

## Testing

Some basic tests and benchmarks are provided in the `tests` directory.
Tests can be run in a clean and reproducible environments via `tox` (`tox run` and
`tox run -e bench`).

## 💳 Credits
This implementation was largely inspired from [Superpoint Graph](https://github.com/loicland/superpoint_graph). The main modifications here allow: 
- parallel computation on all points' local neighborhoods, with neighborhoods of varying sizes
- more geometric features
- optimal neighborhood search from this [paper](http://lareg.ensg.eu/labos/matis/pdf/articles_revues/2015/isprs_wjhm_15.pdf)
- some corrections on geometric features computation

Some heavy refactoring (port to nanobind, test, benchmarks), packaging, speed optimization, feature addition (NN search, on the fly feature computation...) were funded by:

Centre of Wildfire Research of Swansea University (UK) in collaboration with the Research Institute of Biodiversity (CSIC, Spain) and the Department of Mining Exploitation of the University of Oviedo (Spain).

Funding provided by the UK NERC project (NE/T001194/1):

'Advancing 3D Fuel Mapping for Wildfire Behaviour and Risk Mitigation Modelling'

and by the Spanish Knowledge Generation project (PID2021-126790NB-I00):

‘Advancing carbon emission estimations from wildfires applying artificial intelligence to 3D terrestrial point clouds’.

## License

Point Geometric Features is licensed under the MIT License. 

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/drprojects/point_geometric_features",
    "name": "pgeof",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.13,>=3.8",
    "maintainer_email": null,
    "keywords": "point clouds features 3D LiDAR",
    "author": null,
    "author_email": "Loic Landrieu <loic.landrieu@enpc.fr>, Damien Robert <damien.robert@uzh.ch>",
    "download_url": "https://files.pythonhosted.org/packages/bb/df/ab0013b54b38c2c7cd0d502cf93331b0e0174fddd0ed38d32c942f22924a/pgeof-0.2.0.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n\n# Point Geometric Features\n\n[![python](https://img.shields.io/badge/-Python_3.9_%7C_3.10_%7C_3.11_%7C_3.12-blue?logo=python&logoColor=white)](#)\n![C++](https://img.shields.io/badge/c++-%2300599C.svg?style=for-the-badge&logo=c%2B%2B&logoColor=white)\n[![license](https://img.shields.io/badge/License-MIT-green.svg?labelColor=gray)](#)\n\n\n</div>\n\n\n## \ud83d\udccc Description\n\nThe `pgeof` library provides utilities for fast, parallelized computing \u26a1 of **local geometric \nfeatures for 3D point clouds** \u2601\ufe0f **on CPU** .\n\n<details>\n<summary><b>\ufe0fList of available features \ufe0f\ud83d\udc47</b></summary>\n\n- linearity\n- planarity\n- scattering\n- verticality (two formulations)\n- normal_x\n- normal_y\n- normal_z\n- length\n- surface\n- volume\n- curvature\n- optimal neighborhood size\n</details>\n\n`pgeof` allows computing features in multiple fashions: **on-the-fly subset of features** \n_a la_ [jakteristics](https://jakteristics.readthedocs.io), **array of features**, or \n**multiscale features**. Moreover, `pgeof` also offers functions for fast **K-NN** or \n**radius-NN** searches \ud83d\udd0d. \n\nBehind the scenes, the library is a Python wrapper around C++ utilities.\nThe overall code is not intended to be DRY nor generic, it aims at providing efficient as \npossible implementations for some limited scopes and usages.\n\n## \ud83e\uddf1 Installation\n\n### From binaries\n\n```bash\npython -m pip install pgeof \n```\n\nor \n\n```bash\npython -m pip install git+https://github.com/drprojects/point_geometric_features\n```\n\n### Building from sources\n\n`pgeof` depends on [Eigen library](https://eigen.tuxfamily.org/), [Taskflow](https://github.com/taskflow/taskflow), [nanoflann](https://github.com/jlblancoc/nanoflann) and [nanobind](https://github.com/wjakob/nanobind).\nThe library adheres to [PEP 517](https://peps.python.org/pep-0517/) and uses [scikit-build-core](https://github.com/scikit-build/scikit-build-core) as build backend. \nBuild dependencies (`nanobind`, `scikit-build-core`, ...) are fetched at build time.\nC++ third party libraries are embedded as submodules.\n\n\n```bash\n# Clone project\ngit clone --recurse-submodules https://github.com/drprojects/point_geometric_features.git\ncd point_geometric_features\n\n# Build and install the package\npython -m pip install .\n```\n\n## \ud83d\ude80 Using Point Geometric Features\n\nHere we summarize the very basics of `pgeof` usage. \nUsers are invited to use `help(pgeof)` for further details on parameters.\n\nAt its core `pgeof` provides three functions to compute a set of features given a 3D point cloud and\nsome precomputed neighborhoods.\n\n```python\nimport pgeof\n\n# Compute a set of 11 predefined features per points\npgeof.compute_features(\n    xyz, # The point cloud. A numpy array of shape (n, 3)\n    nn, # CSR data structure see below\n    nn_ptr, # CSR data structure see below\n    k_min = 1 # Minimum number of neighbors to consider for features computation\n    verbose = false # Basic verbose output, for debug purposes\n)\n```\n\n```python\n# Sequence of n scales feature computation\npgeof.compute_features_multiscale(\n    ...\n    k_scale # array of neighborhood size\n)\n```\n\n```python\n# Feature computation with optimal neighborhood selection as exposed in Weinmann et al., 2015\n# return a set of 12 features per points (11 + the optimal neighborhood size)\npgeof.compute_features_optimal(\n    ...\n    k_min = 1, # Minimum number of neighbors to consider for features computation\n    k_step = 1, # Step size to take when searching for the optimal neighborhood\n    k_min_search = 1, # Starting size for searching the optimal neighborhood size. Should be >= k_min \n)\n```\n\n\u26a0\ufe0f Please note that for theses three functions the **neighbors are expected in CSR format**. \nThis allows expressing neighborhoods of varying sizes with dense arrays (e.g. the output of a \nradius search).\n\nWe provide very tiny and specialized **k-NN** and **radius-NN** search routines. \nThey rely on `nanoflann` C++ library and should be **faster and lighter than `scipy` and \n`sklearn` alternatives**.\n\nHere are some examples of how to easily compute and convert typical k-NN or radius-NN neighborhoods to CSR format (`nn` and `nn_ptr` are two flat `uint32` arrays):\n\n```python\nimport pgeof\nimport numpy as np\n\n# Generate a random synthetic point cloud and k-nearest neighbors\nnum_points = 10000\nk = 20\nxyz = np.random.rand(num_points, 3).astype(\"float32\")\nknn, _ = pgeof.knn_search(xyz, xyz, k)\n\n# Converting k-nearest neighbors to CSR format\nnn_ptr = np.arange(num_points + 1) * k\nnn = knn.flatten()\n\n# You may need to convert nn/nn_ptr to uint32 arrays\nnn_ptr = nn_ptr.astype(\"uint32\")\nnn = nn.astype(\"uint32\")\n\nfeatures = pgeof.compute_features(xyz, nn, nn_ptr)\n```\n\n```python\nimport pgeof\nimport numpy as np\n\n# Generate a random synthetic point cloud and k-nearest neighbors\nnum_points = 10000\nradius = 0.2\nk = 20\nxyz = np.random.rand(num_points, 3).astype(\"float32\")\nknn, _ = pgeof.radius_search(xyz, xyz, radius, k)\n\n# Converting radius neighbors to CSR format\nnn_ptr = np.r_[0, (knn >= 0).sum(axis=1).cumsum()]\nnn = knn[knn >= 0]\n\n# You may need to convert nn/nn_ptr to uint32 arrays\nnn_ptr = nn_ptr.astype(\"uint32\")\nnn = nn.astype(\"uint32\")\n\nfeatures = pgeof.compute_features(xyz, nn, nn_ptr)\n```\n\nAt last, and as a by-product, we also provide a function to **compute a subset of features on the fly**. \nIt is inspired by the [jakteristics](https://jakteristics.readthedocs.io) python package (while \nbeing less complete but faster).\nThe list of features to compute is given as an array of `EFeatureID`.\n\n```python\nimport pgeof\nfrom pgeof import EFeatureID\nimport numpy as np\n\n# Generate a random synthetic point cloud and k-nearest neighbors\nnum_points = 10000\nradius = 0.2\nk = 20\nxyz = np.random.rand(num_points, 3)\n\n# Compute verticality and curvature\nfeatures = pgeof.compute_features_selected(xyz, radius, k, [EFeatureID.Verticality, EFeatureID.Curvature])\n```\n\n## Known limitations\n\nSome functions only accept `float` scalar types and `uint32` index types, and we avoid implicit\ncast / conversions.\nThis could be a limitation in some situations (e.g. point clouds with `double` coordinates or \ninvolving very large big integer indices).\nSome C++ functions could be templated / to accept other types without conversion.\nFor now, this feature is not enabled everywhere, to reduce compilation time and enhance code \nreadability. \nPlease let us know if you need this feature !\n\nBy convention, our normal vectors are forced to be oriented towards positive Z values. \nWe make this design choice in order to return consistently-oriented normals. \n\n## Testing\n\nSome basic tests and benchmarks are provided in the `tests` directory.\nTests can be run in a clean and reproducible environments via `tox` (`tox run` and\n`tox run -e bench`).\n\n## \ud83d\udcb3 Credits\nThis implementation was largely inspired from [Superpoint Graph](https://github.com/loicland/superpoint_graph). The main modifications here allow: \n- parallel computation on all points' local neighborhoods, with neighborhoods of varying sizes\n- more geometric features\n- optimal neighborhood search from this [paper](http://lareg.ensg.eu/labos/matis/pdf/articles_revues/2015/isprs_wjhm_15.pdf)\n- some corrections on geometric features computation\n\nSome heavy refactoring (port to nanobind, test, benchmarks), packaging, speed optimization, feature addition (NN search, on the fly feature computation...) were funded by:\n\nCentre of Wildfire Research of Swansea University (UK) in collaboration with the Research Institute of Biodiversity (CSIC, Spain) and the Department of Mining Exploitation of the University of Oviedo (Spain).\n\nFunding provided by the UK NERC project (NE/T001194/1):\n\n'Advancing 3D Fuel Mapping for Wildfire Behaviour and Risk Mitigation Modelling'\n\nand by the Spanish Knowledge Generation project (PID2021-126790NB-I00):\n\n\u2018Advancing carbon emission estimations from wildfires applying artificial intelligence to 3D terrestrial point clouds\u2019.\n\n## License\n\nPoint Geometric Features is licensed under the MIT License. \n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2023-2024 Damien Robert, Loic Landrieu, Romain Janvier  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
    "summary": "Compute the geometric features associated with each point's neighborhood:",
    "version": "0.2.0",
    "project_urls": {
        "Homepage": "https://github.com/drprojects/point_geometric_features",
        "Repository": "https://github.com/drprojects/point_geometric_features"
    },
    "split_keywords": [
        "point",
        "clouds",
        "features",
        "3d",
        "lidar"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "125fff11362d40bed8dce871b6115a9724894b65ed1f4507f524bf0aa3f3843c",
                "md5": "b4cc9b1942da9e64322b4eeebb588cba",
                "sha256": "cfcafabd579d32784910265cf90ba1fba315b18ad205087c5bb47d2ceecb3aeb"
            },
            "downloads": -1,
            "filename": "pgeof-0.2.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b4cc9b1942da9e64322b4eeebb588cba",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.13,>=3.8",
            "size": 142080,
            "upload_time": "2024-04-17T12:34:37",
            "upload_time_iso_8601": "2024-04-17T12:34:37.651893Z",
            "url": "https://files.pythonhosted.org/packages/12/5f/ff11362d40bed8dce871b6115a9724894b65ed1f4507f524bf0aa3f3843c/pgeof-0.2.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "631a9807b07939363d35b2527ca140f014d16f1315b42345267b3e062b86009e",
                "md5": "2b5a19b0d02f71ed84ea216bd880dc22",
                "sha256": "bb59b9df1a320df9fe8e35ad009ee4693dc1526f3d16141686b4f6f921bd4116"
            },
            "downloads": -1,
            "filename": "pgeof-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2b5a19b0d02f71ed84ea216bd880dc22",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.13,>=3.8",
            "size": 218405,
            "upload_time": "2024-04-17T12:34:39",
            "upload_time_iso_8601": "2024-04-17T12:34:39.310251Z",
            "url": "https://files.pythonhosted.org/packages/63/1a/9807b07939363d35b2527ca140f014d16f1315b42345267b3e062b86009e/pgeof-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a32f2bce6fdeb0f4ea269d9fe8f334e4f25cbe735091eff8afef068df9af25b",
                "md5": "56721b9c8f311280e81f3f416ef0dc92",
                "sha256": "eb965b093b4fc3f5eeb0c8eda6321bc53c47766b26c66abd2211759a21e6f49b"
            },
            "downloads": -1,
            "filename": "pgeof-0.2.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "56721b9c8f311280e81f3f416ef0dc92",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.13,>=3.8",
            "size": 525332,
            "upload_time": "2024-04-17T12:34:41",
            "upload_time_iso_8601": "2024-04-17T12:34:41.164251Z",
            "url": "https://files.pythonhosted.org/packages/1a/32/f2bce6fdeb0f4ea269d9fe8f334e4f25cbe735091eff8afef068df9af25b/pgeof-0.2.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5491d91dbe765b729a8cd2424902f28c5a674d61a50ca03883d7a8ea87a8247",
                "md5": "55afaaceaa6758139ee6080eb439bd8c",
                "sha256": "af6348f63e29e0f07444a2d7cf1f639c8fc7af0dcfda704333b9ab3c399122a2"
            },
            "downloads": -1,
            "filename": "pgeof-0.2.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "55afaaceaa6758139ee6080eb439bd8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.13,>=3.8",
            "size": 167103,
            "upload_time": "2024-04-17T12:34:43",
            "upload_time_iso_8601": "2024-04-17T12:34:43.090296Z",
            "url": "https://files.pythonhosted.org/packages/d5/49/1d91dbe765b729a8cd2424902f28c5a674d61a50ca03883d7a8ea87a8247/pgeof-0.2.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9cbed69539e563d2886df30b92e805471e4a8b278743441f2f4b5c79ae17cbb2",
                "md5": "da2bd44d45f0d1799b4c109b0a252ae7",
                "sha256": "618e62676687ee903e30529de8630e278e68fda68cfb0f37802d0e29b2401e1b"
            },
            "downloads": -1,
            "filename": "pgeof-0.2.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "da2bd44d45f0d1799b4c109b0a252ae7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.13,>=3.8",
            "size": 141933,
            "upload_time": "2024-04-17T12:34:44",
            "upload_time_iso_8601": "2024-04-17T12:34:44.606532Z",
            "url": "https://files.pythonhosted.org/packages/9c/be/d69539e563d2886df30b92e805471e4a8b278743441f2f4b5c79ae17cbb2/pgeof-0.2.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42e1c89c454bf297975d0d1328574d92ba93c3377607dc0d2e35b7fc4c74b6e7",
                "md5": "64adb5dbbff2409ead9f25149f2fc547",
                "sha256": "59c8a7661d4ffb8f04b1ae7b315e63cfc97579561b9041a6486556336d441f31"
            },
            "downloads": -1,
            "filename": "pgeof-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "64adb5dbbff2409ead9f25149f2fc547",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.13,>=3.8",
            "size": 218235,
            "upload_time": "2024-04-17T12:34:46",
            "upload_time_iso_8601": "2024-04-17T12:34:46.163228Z",
            "url": "https://files.pythonhosted.org/packages/42/e1/c89c454bf297975d0d1328574d92ba93c3377607dc0d2e35b7fc4c74b6e7/pgeof-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7add214dc03d57fa94f8da34d1a548ee4396fba202f28e8f07114028478c976b",
                "md5": "e3ff29000979aab388a9ff28b1a38a9c",
                "sha256": "3a5e1dbd56070fa50fea75fa9551430829592d353f2004a007995b4a5aa26119"
            },
            "downloads": -1,
            "filename": "pgeof-0.2.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e3ff29000979aab388a9ff28b1a38a9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.13,>=3.8",
            "size": 525275,
            "upload_time": "2024-04-17T12:34:47",
            "upload_time_iso_8601": "2024-04-17T12:34:47.643577Z",
            "url": "https://files.pythonhosted.org/packages/7a/dd/214dc03d57fa94f8da34d1a548ee4396fba202f28e8f07114028478c976b/pgeof-0.2.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "167a2d6143e082e062e41b0d9eed0c6a8567c7460c9089adc14e46f06bd3af27",
                "md5": "edbd685549d410ae5efa9a6e73ec3b7e",
                "sha256": "c6227c5f8df6b851af83f708f3af9022a67113cdc4840d91a66c7e3bbf312e50"
            },
            "downloads": -1,
            "filename": "pgeof-0.2.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "edbd685549d410ae5efa9a6e73ec3b7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.13,>=3.8",
            "size": 166964,
            "upload_time": "2024-04-17T12:34:49",
            "upload_time_iso_8601": "2024-04-17T12:34:49.032782Z",
            "url": "https://files.pythonhosted.org/packages/16/7a/2d6143e082e062e41b0d9eed0c6a8567c7460c9089adc14e46f06bd3af27/pgeof-0.2.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f0dda04a79d06519224b8699544b924ebf05cba71bf1fb3faf53d0814a70ce95",
                "md5": "cc4facc14242592fa76ecc9a8b90542c",
                "sha256": "20afc0c8e48f936a4617817606e4103c09d112f5cf3eed6d672ba06126755b8e"
            },
            "downloads": -1,
            "filename": "pgeof-0.2.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cc4facc14242592fa76ecc9a8b90542c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.13,>=3.8",
            "size": 141149,
            "upload_time": "2024-04-17T12:34:50",
            "upload_time_iso_8601": "2024-04-17T12:34:50.259587Z",
            "url": "https://files.pythonhosted.org/packages/f0/dd/a04a79d06519224b8699544b924ebf05cba71bf1fb3faf53d0814a70ce95/pgeof-0.2.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7008ced943801d151fcf1feb6f0170d47748d0817a23ded2822228750bdfbfe4",
                "md5": "6cc6cbc92316d03463acbd36c46fd8a4",
                "sha256": "63adcbefcd3b2ffd167e8d0c8da018a46edbe992885fd484fe7bb3dac49a9e34"
            },
            "downloads": -1,
            "filename": "pgeof-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6cc6cbc92316d03463acbd36c46fd8a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.13,>=3.8",
            "size": 216387,
            "upload_time": "2024-04-17T12:34:51",
            "upload_time_iso_8601": "2024-04-17T12:34:51.491257Z",
            "url": "https://files.pythonhosted.org/packages/70/08/ced943801d151fcf1feb6f0170d47748d0817a23ded2822228750bdfbfe4/pgeof-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b549fd573f44c1371e8107c63766e72b7f6efaa790eb58120bcaf0e3cd8ccbc",
                "md5": "0100decd7921ecd6f1aa9d536c943b8e",
                "sha256": "371c062eea4887d07617efe0771aadc942de947873a865f1b170bd7dc31b2bfb"
            },
            "downloads": -1,
            "filename": "pgeof-0.2.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0100decd7921ecd6f1aa9d536c943b8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.13,>=3.8",
            "size": 523912,
            "upload_time": "2024-04-17T12:34:52",
            "upload_time_iso_8601": "2024-04-17T12:34:52.812177Z",
            "url": "https://files.pythonhosted.org/packages/6b/54/9fd573f44c1371e8107c63766e72b7f6efaa790eb58120bcaf0e3cd8ccbc/pgeof-0.2.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "518b3124cd0d6818ddbd9379ddedf251b107e31c1ebda8a1646562bc434e35ac",
                "md5": "b0ebf9f1af2a86841d4a8285654a56a5",
                "sha256": "8a0e07ff8d45f5d73cd7f3c2bd39832feba6b856ca420326aab32257cf805af0"
            },
            "downloads": -1,
            "filename": "pgeof-0.2.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b0ebf9f1af2a86841d4a8285654a56a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.13,>=3.8",
            "size": 166331,
            "upload_time": "2024-04-17T12:34:54",
            "upload_time_iso_8601": "2024-04-17T12:34:54.360846Z",
            "url": "https://files.pythonhosted.org/packages/51/8b/3124cd0d6818ddbd9379ddedf251b107e31c1ebda8a1646562bc434e35ac/pgeof-0.2.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d1825412c0501a5bdc48a8ff08854c44db370bee1def4df80d443c9c689bd0b",
                "md5": "697033405d61d4c9267ec8d3593b19c7",
                "sha256": "72a4eed3a5c87adbbc81ef4792e68c0c3c6f6dae7fd0804c0b66535d1ad7fc42"
            },
            "downloads": -1,
            "filename": "pgeof-0.2.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "697033405d61d4c9267ec8d3593b19c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.13,>=3.8",
            "size": 142193,
            "upload_time": "2024-04-17T12:34:56",
            "upload_time_iso_8601": "2024-04-17T12:34:56.812214Z",
            "url": "https://files.pythonhosted.org/packages/6d/18/25412c0501a5bdc48a8ff08854c44db370bee1def4df80d443c9c689bd0b/pgeof-0.2.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf25a2130f691f109c60cc2c7b67823e0fe60f7df7cd316689e03c4567ba66bb",
                "md5": "565370e82dd72adc6659a39d4a057e33",
                "sha256": "ae130a5e192f4b387a1b55e99dc0fac957473f1540527be502cffa4e50418205"
            },
            "downloads": -1,
            "filename": "pgeof-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "565370e82dd72adc6659a39d4a057e33",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.13,>=3.8",
            "size": 218584,
            "upload_time": "2024-04-17T12:34:58",
            "upload_time_iso_8601": "2024-04-17T12:34:58.355269Z",
            "url": "https://files.pythonhosted.org/packages/bf/25/a2130f691f109c60cc2c7b67823e0fe60f7df7cd316689e03c4567ba66bb/pgeof-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b81372c562a3652526ea342363fc3b55235a7f46dc97df34625960368a41e48e",
                "md5": "eff93d98676448f46c765ec9fa63c1e2",
                "sha256": "ec09254792dcfe48fa365406b3a045d9e674cf5a8cc76377c1d674f44d042ef4"
            },
            "downloads": -1,
            "filename": "pgeof-0.2.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eff93d98676448f46c765ec9fa63c1e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.13,>=3.8",
            "size": 525477,
            "upload_time": "2024-04-17T12:35:00",
            "upload_time_iso_8601": "2024-04-17T12:35:00.233448Z",
            "url": "https://files.pythonhosted.org/packages/b8/13/72c562a3652526ea342363fc3b55235a7f46dc97df34625960368a41e48e/pgeof-0.2.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18d46769e1c7393e920438b007c7bd37698d4ff9ea99305ee6d82ad6e5e0b021",
                "md5": "6f668cb66a2948e2b19ee103a21d55ce",
                "sha256": "2d3f5767f4716a7caf3f99c824f4f31ce0da24f7c3af9d7d54c177d13768a356"
            },
            "downloads": -1,
            "filename": "pgeof-0.2.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6f668cb66a2948e2b19ee103a21d55ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.13,>=3.8",
            "size": 167570,
            "upload_time": "2024-04-17T12:35:02",
            "upload_time_iso_8601": "2024-04-17T12:35:02.046024Z",
            "url": "https://files.pythonhosted.org/packages/18/d4/6769e1c7393e920438b007c7bd37698d4ff9ea99305ee6d82ad6e5e0b021/pgeof-0.2.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bbdfab0013b54b38c2c7cd0d502cf93331b0e0174fddd0ed38d32c942f22924a",
                "md5": "3d25c7053b533903e89ecce4d743db74",
                "sha256": "9b564e9f8179cf6ad469d39b8797f717720b97c3a3fd9d6beba127424bd7573a"
            },
            "downloads": -1,
            "filename": "pgeof-0.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "3d25c7053b533903e89ecce4d743db74",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.13,>=3.8",
            "size": 69037002,
            "upload_time": "2024-04-17T12:39:57",
            "upload_time_iso_8601": "2024-04-17T12:39:57.799954Z",
            "url": "https://files.pythonhosted.org/packages/bb/df/ab0013b54b38c2c7cd0d502cf93331b0e0174fddd0ed38d32c942f22924a/pgeof-0.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-17 12:39:57",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "drprojects",
    "github_project": "point_geometric_features",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pgeof"
}
        
Elapsed time: 0.22767s