Skip to main content

implemention of points2grid algorithm

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.1.6.tar.gz (12.3 kB view details)

Uploaded Source

Built Distributions

pypoints2grid-0.1.6-pp310-pypy310_pp73-win_amd64.whl (73.8 kB view details)

Uploaded PyPy Windows x86-64

pypoints2grid-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (105.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pypoints2grid-0.1.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (110.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pypoints2grid-0.1.6-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (74.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pypoints2grid-0.1.6-pp39-pypy39_pp73-win_amd64.whl (73.8 kB view details)

Uploaded PyPy Windows x86-64

pypoints2grid-0.1.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (105.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pypoints2grid-0.1.6-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (110.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pypoints2grid-0.1.6-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (74.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pypoints2grid-0.1.6-cp312-cp312-win_amd64.whl (73.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

pypoints2grid-0.1.6-cp312-cp312-win32.whl (66.1 kB view details)

Uploaded CPython 3.12 Windows x86

pypoints2grid-0.1.6-cp312-cp312-musllinux_1_1_x86_64.whl (626.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

pypoints2grid-0.1.6-cp312-cp312-musllinux_1_1_i686.whl (682.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

pypoints2grid-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (109.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pypoints2grid-0.1.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (113.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

pypoints2grid-0.1.6-cp312-cp312-macosx_10_9_x86_64.whl (74.4 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pypoints2grid-0.1.6-cp312-cp312-macosx_10_9_universal2.whl (135.2 kB view details)

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

pypoints2grid-0.1.6-cp311-cp311-win_amd64.whl (74.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

pypoints2grid-0.1.6-cp311-cp311-win32.whl (66.8 kB view details)

Uploaded CPython 3.11 Windows x86

pypoints2grid-0.1.6-cp311-cp311-musllinux_1_1_x86_64.whl (627.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

pypoints2grid-0.1.6-cp311-cp311-musllinux_1_1_i686.whl (683.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

pypoints2grid-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (109.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pypoints2grid-0.1.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (113.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

pypoints2grid-0.1.6-cp311-cp311-macosx_10_9_x86_64.whl (77.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pypoints2grid-0.1.6-cp311-cp311-macosx_10_9_universal2.whl (140.1 kB view details)

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

pypoints2grid-0.1.6-cp310-cp310-win_amd64.whl (73.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

pypoints2grid-0.1.6-cp310-cp310-win32.whl (65.7 kB view details)

Uploaded CPython 3.10 Windows x86

pypoints2grid-0.1.6-cp310-cp310-musllinux_1_1_x86_64.whl (625.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pypoints2grid-0.1.6-cp310-cp310-musllinux_1_1_i686.whl (682.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

pypoints2grid-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (108.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pypoints2grid-0.1.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (112.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pypoints2grid-0.1.6-cp310-cp310-macosx_10_9_x86_64.whl (75.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pypoints2grid-0.1.6-cp310-cp310-macosx_10_9_universal2.whl (137.6 kB view details)

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

pypoints2grid-0.1.6-cp39-cp39-win_amd64.whl (73.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

pypoints2grid-0.1.6-cp39-cp39-win32.whl (65.6 kB view details)

Uploaded CPython 3.9 Windows x86

pypoints2grid-0.1.6-cp39-cp39-musllinux_1_1_x86_64.whl (625.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pypoints2grid-0.1.6-cp39-cp39-musllinux_1_1_i686.whl (682.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

pypoints2grid-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (108.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pypoints2grid-0.1.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (112.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

pypoints2grid-0.1.6-cp39-cp39-macosx_10_9_x86_64.whl (75.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pypoints2grid-0.1.6-cp39-cp39-macosx_10_9_universal2.whl (137.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

File details

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

File metadata

  • Download URL: pypoints2grid-0.1.6.tar.gz
  • Upload date:
  • Size: 12.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for pypoints2grid-0.1.6.tar.gz
Algorithm Hash digest
SHA256 27dfbd844b8700885bde5ff98c851c2ca3391fd356e22f77b9a4064ab7013d9e
MD5 291904829b55e733d8ff45782942c406
BLAKE2b-256 e18efb601170fea83c180d9f911fe1deddd7e72658ee89cd3652faba827bfd32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 588532b4e24dd4e9d7199120cc0f931bc3b9cb99b3f9c108f61f9441914dbf9a
MD5 d5f4fc1b96bba5f4ee6363e4231f5212
BLAKE2b-256 5bc81f75d8661895049bccc4006638713dddd663a0907cc9b1cff7d3e9ae3c30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da19c3d0f0a0fe786494af637c79a078ab5fe07a25553704394dce861b7a85b1
MD5 8b5646e463ecf9eb420aa8c98854d256
BLAKE2b-256 e96c4d407d68064e0850f30f63991e7c4a40314d20c605d46c0a6ab171ce1957

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 997096b8c59945e1ec6c6f7e3829ab0ca63e39c1fcb45983cb69731838e08caa
MD5 5e98ab22ea1af4261a3815013ff4603c
BLAKE2b-256 d0149574a82ac024274d72e910894adc8013dbafa5d03c47dcce9ca4ef13f84f

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dc04646b53700d81220810659919c7960bdcb9d557bffafa53058e8089f8e934
MD5 df877931a241405bfd0537184d147ace
BLAKE2b-256 415c6a1e0d39d38242c5e8c524d98da3f8850d93e45e2a54233e887f8ff34b37

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ea2ee0a9e715b2605500274640c0ccc50338cb99fab512467dfb77ab2954afc8
MD5 3a2285272fa2f294a9aeea1a08a1318f
BLAKE2b-256 417fe1f007886f1a4ac5ff90a0cd294621dfec6dfc6e43f553b540fd23362a5c

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bfe0dc8aeac5dc51d0112b33beef8f56f2b121bd9bf4416f32c165325728aff5
MD5 f030f2ead3fd39c370f38421af60534c
BLAKE2b-256 f462d4e3314ee82d5af06970f23f26568a3b6f0d4f76b2c166da372c6997dff3

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b2ef60103293d5e2759ab297db37451552b5148d434f892718f5a5827d94b3b6
MD5 f6ec7d28c8882adf423ea0dd53b72d37
BLAKE2b-256 4301ec3018ee67be0d4940db266efb26e73c61f7ebe92b4c0d49c3e98e7b27c3

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f8d5190a9fbeb9856297e79344696ae4d8062f2e74c071cefeb159e402f54950
MD5 c105d1ccaa50192ad8b6de30ab2f2f45
BLAKE2b-256 121989a982893a25c0c970edcfe4d1db8d0534dc0fd54e1fd3ab63a72f346771

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fdae10346b7da3302391f161d6dff2e405fa07e5f812f563824cbd548d6f7223
MD5 6854d678d802bf474b887a77d3d64d24
BLAKE2b-256 e934767b1f3a523c6a96b852aef48b24650cb4a4bfc5a761e702ba15b744320f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 99c19521ba81e4735972672594180c65e57b9b321ba7e1077181794f111adb8a
MD5 6cc614f81082f14907a2fc9bbad58405
BLAKE2b-256 09a2b86f509672903dbfb5c73cd94dbf4a8c38cb7f205bd1239c8e18e081bbe0

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f360b5e331177dce1e52036d4a3394e9bc54e105e05b22d4620e6602e5b25fae
MD5 8f23c09a0d44b54d13a67e30b3a73a05
BLAKE2b-256 7dc011e4b20e398a8832fd3ef325aea923bb0b23bd295b1a981c90391ea4b3bf

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d7afc709f4d20af366fabf586e1f48ba27260d6b0db376ca124c34c5de0f21a0
MD5 dfdbf804f1cd2385660324908b7b9930
BLAKE2b-256 4af0971770cbb8fadd8e3d9f15e112df25977de496bc77ab11f11ff336b9ff5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea80aa9ffb29097083a1781bc5f965a13c990976896a34ff957e80e3f1f29f9f
MD5 24d92516cacbd4cd04df3d431d271c7b
BLAKE2b-256 fda09e8d26c529265bb2ca7dffd5e8c8bc63da310e6063dac2b19d3ee3f20fbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 38e04306ef72d647ed1245c8488f5999aa971c30cbef4ffc5d952aa768f0a5a8
MD5 14acbf4ce0c691f7be9353c2d162ba6e
BLAKE2b-256 23ca2808f5f1c904d41a91bd0e2332d0c7cbd609c0bca9e5ade9544867a391be

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 01f617992c9744b2b5effa8898d7dd75a5fa6c79b213eda295b0bd723abd4f5a
MD5 b496baea99d246a3a5cbee6e86235750
BLAKE2b-256 50c7ccf54a5c992344b5828bdbfc0010d35daf8626dec326c5521a1b6fda1eed

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fa8bdfeff208637e3fd9a8a2d9a9eed620ee44383f8461ad6de115d492a14a18
MD5 acb3fa19f4e371254784f33828a0f749
BLAKE2b-256 74448d3670be9e9ef3830d13b5f41806447cdd828c22d4e30bf896f7e3f93135

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 53aab0b8c1753a10fd2ee650b2898cec3bfa2193c552eba414846876f7abd744
MD5 c0546d5136a1b0038478949741c122b8
BLAKE2b-256 f5e4e550056903cb9c8960952c91ac5c4260ed40ae75506db25e62234946710f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fa572de99723a62e169af8d494df74e69d1a4890578ecaa10453e762e80b8a23
MD5 0cd1ea0ffaac2fe424d7fb276cad410f
BLAKE2b-256 78b84bcf49ca4a3b5be9e7a008bc96c7f5241f9b55362064f519ee545edadff5

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0c566a2b86c5a5e7cbd7765b8158c418e51c2adac3e989866999e0509db3dc6a
MD5 54d44d7dac12ac8c1811f8fd798cd7da
BLAKE2b-256 58bfc383784db274fda488e278c69d5e1a704ecd6a2043bb80bcb5ec8a7f749a

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d2967f23201243a5e8041bd9381137aa585d73fa41f213e073328662d99234ed
MD5 f1ba45d3b8ee2c53aa52901fc3491a5c
BLAKE2b-256 3f15b44cbd4320f917edc4c709307d4055b68c71eaf284497748f104e5258913

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 682ce5c60b650f292641a0ac3475cac336ac3d9536fc13d1fa4cdeff1fe2efa1
MD5 ac5f0f55866c36edd1a1aef395966dd2
BLAKE2b-256 f6f6dda7718105a091685744b8b62119874117670958b59f76d4485aeb591b68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 629e683ad72c2521ed502226814691d7ca782ccea9b7b00ebe75f26d1316aaba
MD5 a1d07c6d4fbc3f899f641e00830895da
BLAKE2b-256 b149f2f01ae4cc39dc5eb0425507e84d18535882630a2c43e4099402073f5c15

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d05800ebc31f49702024c212bfec247a45dd957c38c3595fee364aff327bcb8e
MD5 48d0501596289fa1ef60208ac2b55535
BLAKE2b-256 d0297cb3eac25817f3d14d6e94948cea047a32785cea8a426887446254d7dad6

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f54d103cc4b03085adb5c4aa6f6971dbe65fbca3bbaec487d260fd73dca74652
MD5 8ee2271cc0ca2b05cd08799c438bec6d
BLAKE2b-256 8b11a44f9b8122229b8e48f73d9e4b18c75c67b36903f5020679864ce5e2d33b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0abf92c90c30ac62e323b37773b3df78c37ed03afcd78be9f0b1cd4d1a9fe6eb
MD5 0fb3b2a6baf867515b48065e0e7ae882
BLAKE2b-256 fc0b3fbfba637e36516d0bd04a7c53ef65c64c6330e1fc075b07e417e073f3a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e4f7f91a09897ecfd0f35dcd7423cdb9631528526b11f9a8f83f852c201c7890
MD5 8a514d00e19540a7708a5dbcf47e6952
BLAKE2b-256 95634020f563f9e1f37c3801db8cfad9e76fd12e9b88205adfb9e693d10565d4

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6c8c03a388a7a77703f5c337fb7d471f3dff32831b96fc61cd7e4563296988c4
MD5 4e666da41b1baf3085226ec4e267d7d7
BLAKE2b-256 2671eca9c9b390fb46eecc29218d39311e367321281771b72f483ee3cfd59859

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 94f5cf4128ae87633b44599a23f60d21b4a03df2e3eae103675e3669140f1710
MD5 c2ff228b2e1e59354dc71a2e01a74bba
BLAKE2b-256 91f4dfc25ed3f1b0cc2c7b2e5e5f7dfe37e5ece686508520a326aabc9d9c4d16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68a65471f95de58515af1d821ad4229e8e2dd55b2e49aee1bfce59227453cc52
MD5 3a6b5764e800b80547a5f729ea6dcddc
BLAKE2b-256 60c30d627048318e2c926b8bc79461b9dd726f7acf6d376774258b4a4edb164b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1113ec2b251ba5f520d8318dc23c10644305e77412793b6b188610157aefa9ea
MD5 35e3283bcb3d8fde79981a4e58c356a5
BLAKE2b-256 a4c539bdb1c77db0f219dac75c375f93ff600ca22aecdd8d1282adf1709ed974

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 15382087947e2092becf80828f287ced81e4d1e028b2c0ab1f234a9aeef3426a
MD5 3a78a3b1a315d3688fe69a9c06fba156
BLAKE2b-256 b7dc0be18b73c23ff4ae9b5f960de3605881389f9abc2658808eba3655fa1a5a

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3bac3edcadcd830eaa9c2d060f78fa708dc24104bb0d2b1b54e501acc4ae2ada
MD5 30f95da15464d8dace39cfa07f7c94e3
BLAKE2b-256 d8d7c87423a9109012e78963eb9fa75e26f34849ff41a8cf6886bf3e2fd31691

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4fd8fc569cb33fb68a2965c6668b1e5efc9961b9478b00e4775ee179470f03fe
MD5 8d82b421a06b9b2832e7dcecc8491a7d
BLAKE2b-256 f6969b7fe7725d30d04d4b0e8b5b8fdc5acfd2829d96de647b278d5acd3e4607

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ab0bf98c0c91d771000da96feccdf7437458de5c4bb6e43999190b394c3798ca
MD5 20a8d8abc0debe6cce569733c017b66e
BLAKE2b-256 c6784bfcde1523d3e31f248d869b83373235f3fdf5b29a3d86ad44644144135c

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8229dae70a021f9026940c6010c48370c4fe0e8960ad6a491f20377833aadfd1
MD5 9136e00f4225597e77537c5cb3ebd0da
BLAKE2b-256 e99b520d688161abb0bfe1ff9943c4464fa29a5247e28bf92d6d4d56b2a4d9f7

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 759f6eec07bac5cbd01536d8ee06d60a8ad4982c21c7bafc952c4c9286e29590
MD5 c827bf587196fe09027d59edecd2cbcd
BLAKE2b-256 26a92b5e8e2ecb8f723a558751693e9a39ed8eeddeb91b6d89b4495e48e9d42c

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdb7424e903ee1a3e58048da9a7d330bf72f9a6d89562d6c14a24d469d98f952
MD5 6964ff5c8012eecccc74426bf3ecf323
BLAKE2b-256 b4239f4f4fa3f984ac84249e12f9474f24cc5c8c2dfdee7a9d7df15a0aa9b788

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2ccd3830cfcd55401ef364506c22c6e5de3d82703c931b35ac2ab942cc13b76a
MD5 d02b1d46fc43efa9fbd5bbac833a9a8b
BLAKE2b-256 6fe1834dce404b7a8c2e9ee4de4d9b6d8ec9875aed2e34aa8e55711736591980

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5aaeefc33bae37e14d5750160cd8ac0ce402570c01571c1d0737ce58ed0f3465
MD5 36d8a42c85523fccc020d58bb8b7369a
BLAKE2b-256 de78e5f101c5f2fa8efdbc247811e37486e94f1746c33b0b03e470414202541d

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.6-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.6-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d2369a9a80aa93fd3053738f51e2dcf63db3da5f74c475c2ab1f28c092902646
MD5 7a99741752ba8d5fced7c7217ca4cbe1
BLAKE2b-256 221dcad752c62b0887dd678ef74b7d021aa5f88aea62f1a26f783fa118d571e2

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