Skip to main content

implemention of points2grid algorithm

Reason this release was yanked:

broken build

Project description

pypoints2grid

Python library wrapping the points2grid algorithm for generate Digital Elevation Models (DEMs) from pointclouds. The original points2grid software was developed by the San Diego Supercomputer Center.

Acknowledgements

Installation

pip install pypoints2grid

Usage

Note unlike the original C++ version of points2grid, pypoints2grid isn't a command line tool and doesn't read or write data from/to file or handle point cloud classification filtering. Use other libraries, like laspy and rasterio for handeling IO and preparing your data.

from pypoints2grid import points2grid

dem = points2grid(pts, cell_size, bounds=None, radius=0, window_size=3, grid_data=['idw'], verbose=False)

Parameters

  • pts: list of lists or numpy array of shape (n, 3) containing x, y, z coordinates of points

  • cell_size: size of the grid cells in meters

  • bounds: list of 4 floats containing the bounds of the grid in the form (xmin, ymin, xmax, ymax). points outside these bounds will be ignored. If None, all points will be included.

  • radius: radius of the search circle in meters. If 0, the radius will be computed from the cell size.

  • window_size: size of the window used for the moving average filter. If 0, no moving average filter will be applied. For more information about radius and window_size see the original points2grid documentation

  • grid_data: list of strings containing the data interpolations you want returned. Possible values are

    • 'idw' (inverse distance weighted interpolation)
    • 'min' (minimum of the points in the cell)
    • 'max' (maximum of the points in the cell)
    • 'mean' (mean of the points in the cell)
    • 'std' (standard deviation of the points in the cell)
  • verbose: if True, print progress information

Returns

An (n,m) or (n, m, k) dimensional numpy array containing the interpolated data. n and m are the number of cells in the x and y directions, and k is the number of data interpolations requested. The order of the data interpolations is the same as the order in the grid_data parameter. If k = 1 then the returned array will be 2 dimensional.

Example

A complete script for generating a DEM from a point cloud using laspy and rasterio:

import laspy
import rasterio
import numpy as np
from time import time

from pypoints2grid import points2grid

las = laspy.read("pointcloud.las")
crs = las.header.parse_crs()

# filter out only ground (classififation 2) and water (classification 9)
ground = las.points[(las.classification == 2) | (las.classification == 9)]
pts = np.vstack((ground.x, ground.y, ground.z)).T

x_min, y_min, z_min = pts.min(axis=0)
x_max, y_max, z_max = pts.max(axis=0)

print(f"loaded {pts.shape[0]} points")
print(f"with bounds: ({x_min}, {y_min}), ({x_max}, {y_max})")
cell_size = 0.5

print("creating grid")
start_time = time()
dem = points2grid(pts, cell_size)
print(f"grid created in {round(time() - start_time, 2)} seconds")

transform = rasterio.transform.from_origin(x_min, y_max, cell_size, cell_size)


with rasterio.open(
        "dem.tif",
        "w",
        driver="GTiff",
        height=dem.shape[0],
        width=dem.shape[1],
        count=1,
        dtype=dem.dtype,
        crs=crs,
        transform=transform,
) as dst:
   dst.write(dem, 1)

License

pypoins2grid is licensed under the MIT license. The original points2grid software is licensed under the BSD 4-clause license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pypoints2grid-0.2.0.tar.gz (12.4 kB view details)

Uploaded Source

Built Distributions

pypoints2grid-0.2.0-pp310-pypy310_pp73-win_amd64.whl (75.1 kB view details)

Uploaded PyPy Windows x86-64

pypoints2grid-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (109.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pypoints2grid-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (114.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pypoints2grid-0.2.0-cp313-cp313-win_amd64.whl (76.8 kB view details)

Uploaded CPython 3.13 Windows x86-64

pypoints2grid-0.2.0-cp313-cp313-win32.whl (70.4 kB view details)

Uploaded CPython 3.13 Windows x86

pypoints2grid-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

pypoints2grid-0.2.0-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

pypoints2grid-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (113.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

pypoints2grid-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (117.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

pypoints2grid-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (74.7 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pypoints2grid-0.2.0-cp313-cp313-macosx_10_14_universal2.whl (141.8 kB view details)

Uploaded CPython 3.13 macOS 10.14+ universal2 (ARM64, x86-64)

pypoints2grid-0.2.0-cp312-cp312-win_amd64.whl (76.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

pypoints2grid-0.2.0-cp312-cp312-win32.whl (70.4 kB view details)

Uploaded CPython 3.12 Windows x86

pypoints2grid-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

pypoints2grid-0.2.0-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

pypoints2grid-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (113.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pypoints2grid-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (117.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

pypoints2grid-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (74.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pypoints2grid-0.2.0-cp312-cp312-macosx_10_14_universal2.whl (141.7 kB view details)

Uploaded CPython 3.12 macOS 10.14+ universal2 (ARM64, x86-64)

pypoints2grid-0.2.0-cp311-cp311-win_amd64.whl (76.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

pypoints2grid-0.2.0-cp311-cp311-win32.whl (70.2 kB view details)

Uploaded CPython 3.11 Windows x86

pypoints2grid-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

pypoints2grid-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

pypoints2grid-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (113.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pypoints2grid-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (117.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

pypoints2grid-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (75.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pypoints2grid-0.2.0-cp311-cp311-macosx_10_14_universal2.whl (143.7 kB view details)

Uploaded CPython 3.11 macOS 10.14+ universal2 (ARM64, x86-64)

pypoints2grid-0.2.0-cp310-cp310-win_amd64.whl (75.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

pypoints2grid-0.2.0-cp310-cp310-win32.whl (68.9 kB view details)

Uploaded CPython 3.10 Windows x86

pypoints2grid-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

pypoints2grid-0.2.0-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

pypoints2grid-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (112.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pypoints2grid-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (116.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pypoints2grid-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (74.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pypoints2grid-0.2.0-cp310-cp310-macosx_10_14_universal2.whl (140.9 kB view details)

Uploaded CPython 3.10 macOS 10.14+ universal2 (ARM64, x86-64)

File details

Details for the file pypoints2grid-0.2.0.tar.gz.

File metadata

  • Download URL: pypoints2grid-0.2.0.tar.gz
  • Upload date:
  • Size: 12.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pypoints2grid-0.2.0.tar.gz
Algorithm Hash digest
SHA256 bb1e75f41d3b6e00b9ae46ee0af5def379c32865c636fcc6e96206d04e6c72d3
MD5 d0ea71d05c23cf8e575a0c240998a8b9
BLAKE2b-256 f97b6d5efa0e2b7fb5c596d1428bdc5577d241b0898b77056ef10453786605ee

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c20e2be58f4bf4a61956c5cd668032eb8522588abd0739f9663086dce6603fa9
MD5 c440fc4bb4b250a792e73de7dab41e0f
BLAKE2b-256 71ca3ef27a435dba8d6428872b4bf13ae708da623560654cd8848a97b3cd44db

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ffbddef2c68c01ceadb1f525eb28d853b14994f4bf576f861ee64a2b241c0fba
MD5 8393a38ef6c2a80487c7ad09b7723692
BLAKE2b-256 8219d9fd42977e233364fc560fd33416e7f690eda0b6ce60a5382596b8e69bbc

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 381e08d643dc2f5ce75e7bea0e7fed42e86e0281e29a81a9135d3e742fc9307a
MD5 f6b7dd8d9fc00b64ca493273ce0d4ffc
BLAKE2b-256 359f712e9239332ab679a98d851a6558dbc2fba62f5f61f0439ba6d956f669c3

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5661f3c27bf534b049f4ae68dfa1197bc2bc6405d54e2737010c018d06acb75c
MD5 7396389d42732e836e4617bcf24a8c10
BLAKE2b-256 05314a4439101849e487648c6f327532b961b948c8e83b817217343ac970bab9

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2b25ef3dc5f9d16fe77c8b9a0cb495154bc5c2b91d6c2ab3b5eb8503496a6525
MD5 5857bf854bdcd6d83393eec2e16ea211
BLAKE2b-256 fe2eb974a661ee51c9453c65c7e0b1b2fc50927caab370686730b49f99193717

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c368b06c21114aa34faa69ef4c1c5b7517dcf6f414d08d90ad426d810772a3ed
MD5 39a953943c160318f40285dd1b5a5fd9
BLAKE2b-256 c4b88410a65178e3e9838821bc28dadebc8595ee293d68bb8829408d5c4781e2

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 400628dbca21703d2984bf7d59d7ce9467e0c1fb5f5fb43e4e27c27800feab7d
MD5 e2d660b9a3ae4243edb1bf0ed797ae9e
BLAKE2b-256 ca2b4ab22278605fa1128e7d63982b4fcc5faa817fa7f8d237734f828de4b116

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75281d8c232f4c291d0f6ce1ba1d4474cf4046a136c7a5d0ec096dc0340ccf3f
MD5 139a98bc3d3d6420088ddc8a285e3741
BLAKE2b-256 c3d555239cdb563a29c645aceebb59729b6a31c67a2d8975a11fa17631b76c99

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b86dcf3980ab96977f7034707cefaaaa0a6e325463c07651a5718a2955f64eed
MD5 28625bc537f370fcc65316edeb3ab8e6
BLAKE2b-256 e87af1b7510b7f691f7be9b89bacfac8666507092a063ebbde3f855a05b8cece

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a225b825c8c4bc3da7a93a0056fc9ce95246979fd15adc998cf5423ba93b446
MD5 6e468be1801ca1ee2dd5288d759b213c
BLAKE2b-256 029acc9d82cc020e4252e8ba44ec50214ee9f6e01e0acbd0a3311137b13a82a2

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp313-cp313-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp313-cp313-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 e45055301061ec87e688fc396a8f5559c2217f3e37c1af80cb6fbfc369c2bff9
MD5 9fd859eb298bf096aa9a21afe142afe3
BLAKE2b-256 967af84e668bcd320e0cf9c7d5ea5720e39421b9e8cbd6fb6dedca90d02eff57

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 00f393cf9f30a2221d689a48011914f84d2f35b3182484bb9a163f1846c7ccc0
MD5 82aca7bbe228e71f2538a50ff3461f85
BLAKE2b-256 6801f30f14e419275fab2f0eb876ae60913c7d6ccdd04e4e1343b44861036ccb

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d85fe46eb4ea80e2adb406c419e74ddd10f9ef0f17cf91d87634c4b95eb86f0e
MD5 19ce5c8e4d58794bc376366baa033918
BLAKE2b-256 bd600368f8fa92a0c6db31e2f831071cfd5f70e4f626ba030bd68bc72c43fad5

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11cb487f418f855c103309a1531f5a3be2e5170ac9efec5eae8c4976ead2ccea
MD5 da847a6a3bd684b49af24d51f86144d9
BLAKE2b-256 05b81724109866423eebc1ed5730e17ddb68482d509c7db0d401096d50bbf690

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1863641333683d7335c148c9531697c8a5d3e467a3a07f7f387180875b7f5e5e
MD5 161a59ffcc127a430b76f2b582fe7b65
BLAKE2b-256 9ae6778a9543452d244dccec539894ad0a088b2142f219b513c1376dfb365a81

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5531d14ba60c6a8861bc6e4b6542942913006c906db9fe3d1856b563070761b7
MD5 3a5643383e169ebe6a2a557819b4668e
BLAKE2b-256 a481afead8f3d2293c4574849d9c0865bc3280838c9afafedf00ba1a9a1288d3

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a5c2b4d2b4343a86c43341d0845d24a3a1de98538c27da34ff7d81d00805b05e
MD5 c4a24ac075dffe3fcedd0df6a091c0ff
BLAKE2b-256 146f998c714cda68e0f257a694135958759b90dff06e1022f155231750dcd050

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0476b31b5326b958abab972fec70ad1370ae1de33630a7d5d8930e30d1aea0a9
MD5 f5334d64dc074cb1dea386d690d481ac
BLAKE2b-256 303620d4beaf4b5fbab09a98ae7635498c028afa5beef44aaa95514a931401e9

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp312-cp312-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp312-cp312-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 f5d54635251e0b6fec43a3ac643666ad91afe11a10a73c72e3eba21e992e3c36
MD5 4654503048c7ee9898b022033fec8109
BLAKE2b-256 2268dd7c0ee090e103f1aa2105c3320425f4b128bbafcc39c615d1bd20f3650e

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4bd47de23eae8b2b7b5148a38849ebdd36f4f627eba0495892489db8c270cef0
MD5 428bec4a5b804997b70d30b9176ee4f4
BLAKE2b-256 2955ba605747547d926f26a01cb091283acead753e31d0a08f3af3108eb27c88

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 aa1af263873bd307b087bcc0626b80cc50f1345da7515b5a0f1dc4fee37c4f7e
MD5 bfaf4df47cbe7d4b71412052e2c30623
BLAKE2b-256 7b3b6629f0c108ffe93e3342e98475adc76938b787fd3da07a53253dbfd819d4

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3fd50937386cac8c5f9ed8eea5a3b7738c421ce44fed1a20c9557b630aef70b
MD5 5ad9153cd2e9926a4ad8a32a121beae8
BLAKE2b-256 cb1f26e0964c7cf6ffe86e06b0a9f7711ab21d20319ba128e1c1d193cbc94523

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fec8c398564da606d00cfb3776899c651233ebfbfd094e9a1a52502f42be3824
MD5 2371f0b46fd287367fef1237467055d6
BLAKE2b-256 070df78d310bbc5adc791b06a73b9d1fe744e52c7074c32fc816a9956f58a777

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88cdff66efec5a45cb0070fcb977e17f34ba400068c3a4f1e7aa9c533fbfd11b
MD5 0a48c8f732dada340c93de5f8548108a
BLAKE2b-256 ef35594def66f6cc04d12db453121252684ab4eae537f31d88574ad50cafc0c7

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8fba84dd1692f4b110aab488a99c48e5df59bc7b83b6c6866462088732015adb
MD5 0203be1d82128678e62092ad2470c238
BLAKE2b-256 1ac9d9c58d129bc78306d193ee487484a6db9b12b8171b59b9f1c3ccb3faa6b3

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c6d8ea4eef8b773ab72753c0df7113bdbb5d51640f0b9eb646d8bff8f998c7d
MD5 ddfd7af5982de46a7f34b62b18179603
BLAKE2b-256 a1ba4b2e7108a7d3ab3aa6ac44b150d1fffdbd406624512c91e4b2fa1242af0a

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp311-cp311-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp311-cp311-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 e40bc528012f7a1eafc50726d5e0dcd5f7a635dab60779706d23588d83c94cf1
MD5 eae51e1eb6201a6ba4251b043a97eae8
BLAKE2b-256 d6906772043de6308dedeac402acdea91df5af1dd4ee6cf882a5e59266728e8e

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 43759466dafd8a0743625557a8317a16d6cdad87c245722885244e32f835f940
MD5 74fb796aeabde53643ff16d10cc4ab7c
BLAKE2b-256 1d9a91f36e7ea5bf14a5153d207769d3c8ca94199033cdf285260f534d77b00e

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 90ac3342561799e82192bee40047f0c4c4a19377ae929b4ec54b719504b4ed1a
MD5 16d257ad27ac4f97f9e06d3ecf7bd023
BLAKE2b-256 ca7f6303199f980a9a599336065794ff85fcf2cbbaba8155383ae1bc2788cee3

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67971bc2e8dfb8876e6e33211aaba5854e7855f5079d4d5244eb6d59aa64a940
MD5 ebd964cc9fe060538437aad9416a90f4
BLAKE2b-256 7a9093c3cdbe8d7b1e53b6780b41ca8cdcd63430b9f18b35137bfe70e66c3850

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 193df235b4e79227cc7296c06a86b732a62531eb3b6a3ac261500a4f9e667058
MD5 eb07c09be20c14c9e7e473744df30f57
BLAKE2b-256 0e29ace4b6e1fac10155d6d2396b73e3bf94d2b83e7b5d2d1e96d7ea1c1a2424

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ad7cc2f616b1901b040677ff2d5a73f128b9a449cdfecfe3708fa8cc4ee2f35
MD5 da93edeac72778f4591b54a8f2a830bd
BLAKE2b-256 6eba0a772ebbb1fdfc9fa1a7bda900f62b41174c40cca76602f33b6fef2bc1b2

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 652a1416489855cf8e5ea246f9ae0754277be2f288fd5bc84398dc286cb6ef15
MD5 b49c330188964acf97898b7c31cf5a23
BLAKE2b-256 8424ae90c9a3e15eb67fbce8f5d37203e1fe5607953313931ef6ca752c998247

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1689312604a8f9bf14cb47e975e3a8dd9ca234ee4d3fb096f9b8544e31868943
MD5 04162494684e01f11269c566cbf6958d
BLAKE2b-256 d6fbbd15ae1f126e0766b233ce2e7ad326d2478fedeb791f94722b36a0277ec3

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.0-cp310-cp310-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.0-cp310-cp310-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 23fd6beafaab729b9b6d2416e84e10d9674a18ede75c2be6161a09d1919c0246
MD5 356c8c4d0f6328d5c9c21a818e24334e
BLAKE2b-256 de087acb0366824f86a0933d71225d8f6e457daea51ed30ff16762ca1f32f6b0

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page