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.

Acknowledgements

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

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 bounnds: ({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

BSD

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

Uploaded Source

Built Distributions

pypoints2grid-0.1.4-pp310-pypy310_pp73-win_amd64.whl (68.4 kB view details)

Uploaded PyPy Windows x86-64

pypoints2grid-0.1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (100.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pypoints2grid-0.1.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (105.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pypoints2grid-0.1.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (69.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pypoints2grid-0.1.4-pp39-pypy39_pp73-win_amd64.whl (68.4 kB view details)

Uploaded PyPy Windows x86-64

pypoints2grid-0.1.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (99.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pypoints2grid-0.1.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (105.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pypoints2grid-0.1.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (69.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pypoints2grid-0.1.4-pp38-pypy38_pp73-win_amd64.whl (68.3 kB view details)

Uploaded PyPy Windows x86-64

pypoints2grid-0.1.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (99.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pypoints2grid-0.1.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (105.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pypoints2grid-0.1.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (69.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pypoints2grid-0.1.4-cp312-cp312-win_amd64.whl (68.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

pypoints2grid-0.1.4-cp312-cp312-win32.whl (60.6 kB view details)

Uploaded CPython 3.12 Windows x86

pypoints2grid-0.1.4-cp312-cp312-musllinux_1_1_x86_64.whl (620.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

pypoints2grid-0.1.4-cp312-cp312-musllinux_1_1_i686.whl (677.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

pypoints2grid-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (103.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pypoints2grid-0.1.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (108.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

pypoints2grid-0.1.4-cp312-cp312-macosx_10_9_x86_64.whl (69.1 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pypoints2grid-0.1.4-cp312-cp312-macosx_10_9_universal2.whl (129.9 kB view details)

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

pypoints2grid-0.1.4-cp311-cp311-win_amd64.whl (69.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

pypoints2grid-0.1.4-cp311-cp311-win32.whl (61.3 kB view details)

Uploaded CPython 3.11 Windows x86

pypoints2grid-0.1.4-cp311-cp311-musllinux_1_1_x86_64.whl (621.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

pypoints2grid-0.1.4-cp311-cp311-musllinux_1_1_i686.whl (678.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

pypoints2grid-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (104.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pypoints2grid-0.1.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (108.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

pypoints2grid-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl (71.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pypoints2grid-0.1.4-cp311-cp311-macosx_10_9_universal2.whl (134.8 kB view details)

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

pypoints2grid-0.1.4-cp310-cp310-win_amd64.whl (68.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

pypoints2grid-0.1.4-cp310-cp310-win32.whl (60.1 kB view details)

Uploaded CPython 3.10 Windows x86

pypoints2grid-0.1.4-cp310-cp310-musllinux_1_1_x86_64.whl (620.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pypoints2grid-0.1.4-cp310-cp310-musllinux_1_1_i686.whl (677.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

pypoints2grid-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (103.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pypoints2grid-0.1.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (107.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pypoints2grid-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl (70.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pypoints2grid-0.1.4-cp310-cp310-macosx_10_9_universal2.whl (132.2 kB view details)

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

pypoints2grid-0.1.4-cp39-cp39-win_amd64.whl (68.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

pypoints2grid-0.1.4-cp39-cp39-win32.whl (60.1 kB view details)

Uploaded CPython 3.9 Windows x86

pypoints2grid-0.1.4-cp39-cp39-musllinux_1_1_x86_64.whl (620.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pypoints2grid-0.1.4-cp39-cp39-musllinux_1_1_i686.whl (677.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

pypoints2grid-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (103.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pypoints2grid-0.1.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (107.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

pypoints2grid-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl (70.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pypoints2grid-0.1.4-cp39-cp39-macosx_10_9_universal2.whl (132.5 kB view details)

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

pypoints2grid-0.1.4-cp38-cp38-win_amd64.whl (68.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

pypoints2grid-0.1.4-cp38-cp38-win32.whl (60.0 kB view details)

Uploaded CPython 3.8 Windows x86

pypoints2grid-0.1.4-cp38-cp38-musllinux_1_1_x86_64.whl (619.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

pypoints2grid-0.1.4-cp38-cp38-musllinux_1_1_i686.whl (676.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

pypoints2grid-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (103.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pypoints2grid-0.1.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (107.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

pypoints2grid-0.1.4-cp38-cp38-macosx_10_9_x86_64.whl (70.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pypoints2grid-0.1.4-cp38-cp38-macosx_10_9_universal2.whl (132.1 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for pypoints2grid-0.1.4.tar.gz
Algorithm Hash digest
SHA256 e0ac53120e950f2c0f4c63d4d6ae2c15221c8e9c15e9a0ef364e791ee9aeb527
MD5 98da77680a9cddc77d63a8c92c1596b3
BLAKE2b-256 358bb3219602e6db4b17cfafacc164e135ae72cf4716f1552f868b481534b633

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d944d424ae76a93363f55e3b6a71f5b2eba8360e70815d31690a9e06df2ab2b4
MD5 e31ff9727dbf2a557c4566ad5e8e4a72
BLAKE2b-256 d16bc7c9d9bac1db285c0121c9fd800587a59c424128371b5b6501c87a0a6d6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c89297141efce59ece7a418a438cb478dbe6bcd56c3b7a4ec2c9ffa17c429b64
MD5 43e48f7a305590d52ba0c327c607c0a0
BLAKE2b-256 3d77503d5f3d33b9a5008998c85dd4aaea8f5c561f4353c79bbaa68df071cce9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 249a34e0553b56e45ac7ca3becc2a5d51b5b00d222a53cc1018720e5731d9ca0
MD5 8d1c450d3afc9eaf0599905d8a7a27cc
BLAKE2b-256 5dba052370342cf06a26e53d700f628f3cf9c247c08d5e019f7c4ff4c3bbf2fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c0a91f5fe54c62a972398197639da9bb539170743e7e9809d1d29f033dd0c7c4
MD5 ff55a102a1df71cf8ac98926c156dac7
BLAKE2b-256 8c295e6acdc7aaad432deff9c12befac7b4a5f9d2f91a41b0771a1a9eda68abe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 23c798d959a60e6b88564754daa2e4e67627d30be4d2993140c545dc747324b5
MD5 ee838f4288f147b5827bada9d53281c6
BLAKE2b-256 92c0bb005d65973d56dfa78ebc399e01950c09047d410bb946db29ce8995bf6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87405d7e8444276717396739d317e566a6cdef5f1e69063de7d017bf1e4bb183
MD5 9ea8b0fb460fa4aab59cf9f8be168280
BLAKE2b-256 6d7231f9d8f153819e012b885fdb47e215612637dc7557b389054dbac41a574d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 492eb9f048411c4767c906a40778b852f1ce9768cc894ad1a96421e96220df10
MD5 fca1859268f28845f93f0e8a66cf59e6
BLAKE2b-256 a4ba2def9303abbbc47959d8469f572ef0a6b696338b6c110b0397036f288b6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 94962b8bf71da5bf888b56d8e76bbe71ac8601712ae769898483e2b10ed93404
MD5 0ed63b768d0ca71c9e7325e6f8d10df7
BLAKE2b-256 ebe736133a8e6806ab1ab7722ec50d3267611b5345c33f8a2c36ee3e80c794ce

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.4-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a43132953a96c0f2f8773abc0e8f70598df7f2376fbf4b1efa88f271ebc3e943
MD5 43e523f7fbb2cb980f4414405358b186
BLAKE2b-256 19966f8d95b91104212caa355fde0c1240f5b832677634bbc03c012d9c80aa2c

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03851f64c842f12e31ea4ce9b2e9520f45aadc3a7e3560c51b293220ee483837
MD5 c802f3a93540f9bdfb1454a35ad4e8ba
BLAKE2b-256 c20896c8b5d749cf64d2f634b692fb24abcef28feb4e940987ddf2618f9a09a1

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 68aa1836b267bb507d89bd1360552de0e8a09ead7a883b933e606ccd24130f9f
MD5 28f2ee480d9e1454b4a0cdc9a0885aef
BLAKE2b-256 4b91979d3d11abef4d6769fe81ae901eb1d1de06f9a2901acf5c09cf4d03af95

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 87ff86f08e6912e5d97db7e8032f0277d0371d3519259fd375d60ae35b6386ec
MD5 4f329e805225604009936c94a1914958
BLAKE2b-256 69c53197b13040e4d021cca0c3dceb0fc18af230e4c2da1ec012ff6957bb9b9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3afbcb61a945dd938e05224b286a4ec4cba39e46b42fbb38f0c1d120724a5d94
MD5 f7daf45a43c78c260ea85ef943a6592c
BLAKE2b-256 a163655e44501b234fc4284e1d18d83d6d05b7249ffedba25f57b6a5cef5eea7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 18e231dab63487a19af860807ba3f551e03d13a873909015e3ccbc7ba9786439
MD5 d8e9c93f793b9768bba0b538372e3c66
BLAKE2b-256 235ee4316447911010ae372e7c8ccc32c56d04eb4092927b57bcd7fb4f45308a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 23a50a4689bd81f971c2788a7253f26d00580e807fbcae7a1bce47762547d4c0
MD5 0630b7c852d1187aa2912d83406cb18b
BLAKE2b-256 9f2a259b087c8c4dce0b617fe945105baf1ad890e60437424fedf30e444bd74b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 85f0b07213b994ace5b4f3020ecfcee7b055f827798388a9015cdcf8c47b4ddf
MD5 f251e93ace1c6dcddb2af8aaf729d00c
BLAKE2b-256 695d67b8d6bb782d826b5f66dbcf8927ce1809e98162ae0fb58d0e9014f3f5ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90877cee561b6c594f194aaaccbb48059786ea238d7c7991150240b52b4fb92a
MD5 2e7dd407869dd00ed40601467764f03d
BLAKE2b-256 eee4286e629bc01c206a7842a730cb93af1f097f4dc08a1095df177133cd4176

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fada5817ec178a89788d437b2baae694379e05b7d90f9019863c39d4451d090a
MD5 e40b0c0ee0017e67af2337fa7495a8d4
BLAKE2b-256 0bf6aa34734cec6b407321825e352768ec831b2e42721a40b2e70b224f87fc8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bd227666a4e8df33b000124cda59804348563e3587144ab1f749ed8280620276
MD5 c115fe48c8c5aace16851896131c9d59
BLAKE2b-256 d9ff4c732459c8aba02adf57e56487e91232ae06dcc24dfd56343bfcece19381

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cbfb125e828bd5372ddd0b95c7c6d4ab560c38f97375bec19ffffec0735778ac
MD5 cad3202f7e48669eb52dbe7885f546db
BLAKE2b-256 c5c90c3e5c19417f693b0256bbe1df44f26ce7a1f0d99def36d76bbdccaba935

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9fac1bf5e925d99311d43b206f86c858667f1b7b8355c62351c0cc7a477301be
MD5 2a5b57050363b2d668347c1a426775a2
BLAKE2b-256 8180e68e37007a2e74669aebf2dc07effd55f7505ca8f1e2907b8f1a89e225a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b1ee79c107e629a29c214afeaa6c8a21efa1295098d6933655e88cc336ed2b75
MD5 ee1df53bca841d35743fd14c282e8dc6
BLAKE2b-256 53ccb2b6252d20fe7bc07286a9b5d19f3968453fc7a364cbb95052ca05ca80f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c83d401fd6e291dae9c42cb880d00be6f8f7c50670e6badca12f5a5f23cd3651
MD5 5e46865214bd63d640c283ebfb45726e
BLAKE2b-256 2a640321b64ca78ff313591e28f62d61dd5c24b6c500a9c8852a190a20014ce7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1e573a36672b7b416dcaf29d81dfda0247b23c15bfd6dafc4627a290fb556c63
MD5 2494b0b028d0b3b97c16717cd953ef6b
BLAKE2b-256 6699c19d897e0f7491b2f7209d24dfc008c427911329662784652c19e1743995

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b6399ae5260393b3924ee83be867483e566b097d153f270baeb15037ac62ab4
MD5 1b86ad7175938206a5dedcabd574da16
BLAKE2b-256 83162d834bd71b295565ee0afe59c6552fe859ad9c881d6d581e158b8945aefa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 60950da5cdbf9eb63644d3ddfc89b3c380214eb0cdddd049ee9a39aa54d28ba6
MD5 969b04ed99b016ba5c9a63a0ea3f0ff7
BLAKE2b-256 423921021fdbfd392b19cd2e28d96cb9dd8294f5c5aff0bb4a52e822845b6bb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8a872f7bffc54133d72c1a8f7c3ba850d882309661bdc0275cd3e917ec028812
MD5 5ab73567d37cbd4d957e5c9a448e4173
BLAKE2b-256 dfddff32904f8cfff738286ff4a16ce900558bf7daeb8d687cf67daa2a83c67b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 54d25bade8bd8f8ea0d3c6fbdfeb774a0c46f6d09cee7ef92ee704f353e5f554
MD5 01794f81ddd299fb13cf1475d24cc5ac
BLAKE2b-256 05db23108ba8330f26b8f2d1e4cca64a19e0bb50ccf58fa52dab47fe5ebe355f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 320ca9424c5dffb9e1643a2234dc6211d08f353eda8210be68d42034a99be746
MD5 c925ef9ebdc6238fc7da5c1b0376a602
BLAKE2b-256 106cc9658f0478058f220619a6caa09f4800ff89c7e57ff3d3b4f80aebf48357

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 428b1894c74fa42ce8ab5182dae01255e9cc0fd8084f8ce9538bd7efe7194457
MD5 5fadb48ed505d8d59ed3dbcdaf4faf42
BLAKE2b-256 09c80baedc71a26a25b1c60cfc455bec4a1398ad33ed02f15c086e84a880ea9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 96c7e991002e975f4c74634e4b2f872e0204a85f5e7c7005ecefa1daa9ac1c6e
MD5 4c0dcbf5cedf4f6602110cc9bc9db2cf
BLAKE2b-256 da2be5325f0741fef5a1239a70c380061033e452133b25128a0369ce41c8ac42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d86ec4f62c960811c648c9ca80f64b745e6673a40fc5364ecfe58efd1b90ad99
MD5 0351d0c8cba10b2a0df04abee688b276
BLAKE2b-256 9f2abb886591444ce2a6836acc394adf63480383a8bfeaf6f61cfd8d8906cc6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac8e0d4198bc7f922fc4023215266733d4c47e2b6daf58a5e10d6d20d98936a5
MD5 e2754d50986a1e820562ee5652879296
BLAKE2b-256 48e61c38b88846f60af657ec75714325e38df2d964f48ee212788551719bf15b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 db7fe3bb2dbec4eacc00cb7c6b56fffa84a15bf310c67b2ede9b8a7e27eec999
MD5 03754b2870f44499ec2445e0b0816b4c
BLAKE2b-256 67f688555b320e47f7cfe13b823f1d5e653e169c27e94e90fe3e11395b2d0198

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 52ff8f8aa5c5070831f1837985dcc41badf9a2c16362327290d25ddf18cce637
MD5 16e33491c5777e3b5aa96fa4ec0793b0
BLAKE2b-256 94e7127fbdf26f805030882775403236afd8fa59aa333688ce2fa6f5b7bc2139

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7214cbf8c008523f65c4a7c8de2b6253a4b22094ad2f884a638f769c5596cecf
MD5 343ff8416a913f80a0a3854ed24889f3
BLAKE2b-256 d2a86272d7767107ebc80c2db6b5edd2a731f5d26945dda2cf345531bcbe3f45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a418bdfb5fb9868aa438245fbc4fcd7df4eb26809e2fdb90c44136cb8cfaf9d1
MD5 a4600339958949af1f27178135be4458
BLAKE2b-256 6b91b5c4c4e57b7299c65a70350dcb0098ac81f25c4b036b5d556ea1a9e9e5ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypoints2grid-0.1.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 60.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pypoints2grid-0.1.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7b3f42ca0c5aca480587e74d020c3270f88a6b01baf8d639dc6891a59031520b
MD5 85bd923e01460a96610099ac8984e4a7
BLAKE2b-256 a2d0c11da3f1fe27af6d87fe047e224c433002cb651eb29f57f88fdcc2ad02e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b5700635f06586a8742831abb573adb82bf7cf59a02c05225aea372ab4be3e34
MD5 de997c458cbebc18473f54322df837d7
BLAKE2b-256 0a7ef2762dbf3552d17d89904910ef697f9b439ea6f292b3da74fd6a5d1363be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7d3aa820fe972fd30bfacdb121597bbb3408e6e186a54b1fbff1c6fde14da554
MD5 255ac2f65e5067f77cae4bdeba8431a3
BLAKE2b-256 a8f0e8f1f0c26798d35b666a0bda23091957dd08b559e234c457ceb2ced7471f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4174dd27751b541633f399d84bf9dfc5d23bb609c283228177d9891e8733e85a
MD5 07c70c364c8a671eae81435a08867d44
BLAKE2b-256 31dcb214b8a61161fc228da39b06964e5ed19c51df8b6b376965f7bcf942be7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 de1de37b9e8774ee773606da989e5f1dce99fe3ca92d5ce893e0479120ae8802
MD5 229f847cfae24e3b295f710defb46c70
BLAKE2b-256 4c15892234ce9ccaf5a973ab1d51c83bb0e41fd7bace93064efb3d5a2aa65079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5700ea874d9501548a83916fa3b9ae92da5c3c8ce7a5b318380463ce5ce20510
MD5 abc722a0a19638874f14547540a75fcb
BLAKE2b-256 2ed2b7d0bf5c9779cd2b75bc6d36a4c5cb23defc0b84ce73c5245d5b27947a54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 387c0b6022f0dbc0f3e13433236d0e063f5412a99dbc12b94fb149619030a531
MD5 cc4fb17a442e9d457f0a6d6c129e8606
BLAKE2b-256 59cc1699579e33037c7c07f9dc823a518cf32e2c35cec9d7446ca19d088da424

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.4-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c241c165364ca74b4b192d84639202234d91d5e8d36dac658d650b02a0808526
MD5 be079479ea19de404fc69502f188a564
BLAKE2b-256 426415d33efa54cbea9890ed134333163b45b2a676150915535757bdd143969d

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: pypoints2grid-0.1.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 60.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pypoints2grid-0.1.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4e34fcb16bb43410457cad59d242595436e1153f963ef9d381afc7e40c83bc9c
MD5 8cf9cb4680d997a443199c559e4acd3e
BLAKE2b-256 601b02b4997495dde51a7350c57f7aba1eb410f71cbf96128b7ca84e0f7c511a

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.4-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 68514e22e068b51eeb11f68059c7611dc608a4c0cba25443a624e3702c1a0e6c
MD5 d4062e232c95fe31c5517174444005d4
BLAKE2b-256 5cb6b8645c67d72f5a7607a526104970e5e79fa7bf7b7ceca3d4683b86ca9502

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.4-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 015d28a51255c84b3b045ee1db235eab2f63e61a7b7fef2bf139abdad835af4a
MD5 a0584f9aab9dce88706e1c511cf38337
BLAKE2b-256 bc70c5d98afd86d2b2daf169a8477d80f4f45c7123ef8dd74826e03fdc063602

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4edcd7278319db2b26ee08f0096c786e57cadb1a8733e56623e6ed7bef77ab2
MD5 66a3fe84e7c28b1fb9b77ffb1d2754c6
BLAKE2b-256 0d0bf8f0b86a51db28edce74e9247018cbfb018af2d7746059268dcb0a54cc9f

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 efe9707fce25e7d1d1a48806afae9ca053cef0a833cbd529b4f88daa8aa18298
MD5 054e113eb5c9602e38bfdde504539675
BLAKE2b-256 f48ffe11adebe5576727b9d938799140d438d1ed01fec2e38733461aad621e8b

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.4-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f3b4765756889c4f81b7cf62e1566a61bdcab49ff0b2f7e0187043d58609ed77
MD5 d92b97797e87c31d73212b0771d9f961
BLAKE2b-256 d63dd0ad693f64f7af766f7286cbc3bc4d8eb8af4f4b174fdca91387e5ffd1a5

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.1.4-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.1.4-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4710f57a2f58a98d3302824711b37f32b4711a138c2178b331ade28f9a755c58
MD5 5935cd09e05eeb6ead176a468d7eab3f
BLAKE2b-256 4b9adf59336fa347cbd89d1bf36e004a575ba5de209ef9371b58e57326cacfa3

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