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

Uploaded Source

Built Distributions

pypoints2grid-0.1.9-pp310-pypy310_pp73-win_amd64.whl (73.9 kB view details)

Uploaded PyPy Windows x86-64

pypoints2grid-0.1.9-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (105.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pypoints2grid-0.1.9-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (110.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pypoints2grid-0.1.9-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (74.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pypoints2grid-0.1.9-pp39-pypy39_pp73-win_amd64.whl (74.0 kB view details)

Uploaded PyPy Windows x86-64

pypoints2grid-0.1.9-pp39-pypy39_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.9-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (110.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pypoints2grid-0.1.9-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (74.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pypoints2grid-0.1.9-cp312-cp312-win_amd64.whl (74.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

pypoints2grid-0.1.9-cp312-cp312-musllinux_1_1_x86_64.whl (626.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

pypoints2grid-0.1.9-cp312-cp312-musllinux_1_1_i686.whl (682.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

pypoints2grid-0.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (109.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pypoints2grid-0.1.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (113.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

pypoints2grid-0.1.9-cp312-cp312-macosx_10_9_x86_64.whl (74.5 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pypoints2grid-0.1.9-cp312-cp312-macosx_10_9_universal2.whl (135.3 kB view details)

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

pypoints2grid-0.1.9-cp311-cp311-win_amd64.whl (74.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

pypoints2grid-0.1.9-cp311-cp311-win32.whl (66.9 kB view details)

Uploaded CPython 3.11 Windows x86

pypoints2grid-0.1.9-cp311-cp311-musllinux_1_1_x86_64.whl (627.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

pypoints2grid-0.1.9-cp311-cp311-musllinux_1_1_i686.whl (683.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

pypoints2grid-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (109.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pypoints2grid-0.1.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (113.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

pypoints2grid-0.1.9-cp311-cp311-macosx_10_9_x86_64.whl (77.1 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pypoints2grid-0.1.9-cp311-cp311-macosx_10_9_universal2.whl (140.2 kB view details)

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

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

Uploaded CPython 3.10 Windows x86-64

pypoints2grid-0.1.9-cp310-cp310-win32.whl (65.6 kB view details)

Uploaded CPython 3.10 Windows x86

pypoints2grid-0.1.9-cp310-cp310-musllinux_1_1_x86_64.whl (625.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pypoints2grid-0.1.9-cp310-cp310-musllinux_1_1_i686.whl (682.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

pypoints2grid-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (108.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pypoints2grid-0.1.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (112.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pypoints2grid-0.1.9-cp310-cp310-macosx_10_9_x86_64.whl (75.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pypoints2grid-0.1.9-cp310-cp310-macosx_10_9_universal2.whl (137.7 kB view details)

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

pypoints2grid-0.1.9-cp39-cp39-win_amd64.whl (74.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

pypoints2grid-0.1.9-cp39-cp39-musllinux_1_1_x86_64.whl (625.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pypoints2grid-0.1.9-cp39-cp39-musllinux_1_1_i686.whl (682.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

pypoints2grid-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (108.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pypoints2grid-0.1.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (113.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

pypoints2grid-0.1.9-cp39-cp39-macosx_10_9_x86_64.whl (75.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pypoints2grid-0.1.9-cp39-cp39-macosx_10_9_universal2.whl (137.9 kB view details)

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

File details

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

File metadata

  • Download URL: pypoints2grid-0.1.9.tar.gz
  • Upload date:
  • Size: 12.4 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.9.tar.gz
Algorithm Hash digest
SHA256 a235a0fe4e453f54e68f676464e9e6be01f55b2be6801202a939238a64bdf06f
MD5 a065056f1f2869e93b85268995c73bbb
BLAKE2b-256 64a07b0b45f206bea3d0559484dff78b9163cbdb0aab2f9cd29ea4300a3ae28a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a1d9c8858337821d0619dfa3c4fd5da65e6af4a487bc0ed35b58f5a43fe9b462
MD5 10d35fbe43c6096b19c8941358fd2e8b
BLAKE2b-256 fbef5e7dd003a29e2ee2ad72bab9e1699edeef78194c07740f35c587dc2a03af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ebe45ea94e22601f714d8f39520c9d0dac9813198bf64bc41f794642ac05841
MD5 025a2669485952fe613dce9e28524048
BLAKE2b-256 ead4c41df2d5137c958797f71444abdbd7e989953ed720dee598e59a4de83e57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a75957f8c7d66a51bc51ba4c335159121fe302cdcbbb155ce85ff535842303d1
MD5 a70bb6323441de004cb3ccf2d7fee9c8
BLAKE2b-256 1c1973b1b187b346337f58311f445c1927ade7000b39ce7c1857f6727aeb7137

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c09180c39c5fb630cbcf61c94500883c720293a0fc0efc360530558d7c688cb0
MD5 1a14297852b06da23bc32a7edd829e89
BLAKE2b-256 d11f8edc9285672fb903e2e4578e411397e11ef58eef95638f1c9eb091c916a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f5de049a039b599f4876eb9188369e3e00a95343f8793842ee4f8290d29754de
MD5 993499a8abf2e2b60e9b93ea4aa43d1d
BLAKE2b-256 a34f493b45e20cafb3455f6d89cccdd3f0616cc18b00018e03791fa45bd9ad05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4bdb98981c4cba197d04be3ee92b3042f54bbcdda02cec5c4ade10af0df8661a
MD5 a8e6fbb0a9e3512dfe016b79a6bf58ee
BLAKE2b-256 343750db85799123b76752709395528d020d115b31a3bcdc4f85787479213ccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4db51041d67caa05f066be75005fbde13d43d2052e84aca0830762113b07e5c5
MD5 7f08d3ac3b6a798f037bacff6ee378e1
BLAKE2b-256 dab32adb31e4a51dc1eb715e099454657ab5ed707aa4f99abe75fbae4647e2b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c6641192c8236c1592e337f4aede2d2dda71cd460db9befba35b0756dfe15e0d
MD5 97464d662c52d307cce0fb9407bf0579
BLAKE2b-256 c0295755ec7e01601c17cf6036ea48988a7f05466587661b7940da23747a10b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d413a3bfd8cd0b849b5051f894777a3ba522e098bde5d7895ea2fd40ad28dc72
MD5 418e9a802760870a2a6979ea8d6c59d5
BLAKE2b-256 bcfc317b155c7dbd21bff209d1948a8ff380d0fac0ddbca43acc9456233ea018

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e1182ff0f25b75529f73c074009065180015ec2b2200edcb93bc1b7c21156c78
MD5 7c9e02003e7df5f79c4a3c870aba41dd
BLAKE2b-256 97de0b38e218a99f35dafda9c3852d34b6e5c68ec89d60a6925c7dc963246b13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 72c011f84564dcc9b513ead39d2a3512c52183e9cbf0108064d3488ff689d4c1
MD5 ffe3217d6731ecfc974c43905d4cf056
BLAKE2b-256 08aa4075b37e4d9dfd9b35a937f6225c48699be97ab15734f0cddb4d33463fcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5e5d98738ba0f60e0ef9e40a3ae89771860cc8c7a7df18f60405849c508b2b2c
MD5 3fc6032796d080a02b6c0336eb77bc6f
BLAKE2b-256 1377e377f1072bb2abab62bb462497266d488066fe8237e49d8b80584d39accc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0c70c733becf4ddda73dcd28bd4cd2b1d688d7701af1c9b283ca5100445229f
MD5 0cc817588549a42b2794e6dc4f2a14fc
BLAKE2b-256 97c7016b3d8e445cb65c6968e6d5da5905d3797592ac40e3e3ae7499a8d79276

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4c005b94451126606b67500ba0a17a2097b7f7982bd8fabf0ee12e8618f79c6b
MD5 885eec963a3788228d4863518e7202db
BLAKE2b-256 0dda0192a172cd28b02095e8c48c4aea48926dcb7187fbf867abf6f0abb8aa78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 261bc4873adf8d5613c9fef022718f56e5ddea941b4549a1f0d60a17b5fb7b82
MD5 aaf97fc035408fce2c2ab0e6d05be8b8
BLAKE2b-256 fbf16ee5f3b09874c540bda188e56bb7b4127ce54775c651160440b480cffe5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 76d9a06d9be4059488cf2fcb7cb5aab55b96a29eb7760b76166b2ddf81f89514
MD5 5dc9e464d00ed593097f772ce443656e
BLAKE2b-256 8dcc031c78d76aee8f6895ba2aec4da8ffe27938faa5277fc12eaf20db69c14b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 158ff9f4d397b37e31392c41fb4fdaf81f20ce58bf221c88503356cfb7f85d5a
MD5 3b6e01a52830e1dfa1c4e8ceaa2dd131
BLAKE2b-256 965f1c080c71697279313b57554c5894f02d20d4e32a70e13b11d9a2600fa2da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cf67ce33b0207615b8d55e317904b90fec0c02ab5ddb5b69385571425029eebc
MD5 a17f5b309483b2bc4ee41de5c827de5d
BLAKE2b-256 459479df81f972dfdc648791897727e466bf92f80f1e52b1e298a4712b55d342

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b75991ed45e9f35db3d4ef872126da49b72eec76289d79dc2c4ee8a6b47d1d68
MD5 f8aedddd8e6b416e474f8b72737131b1
BLAKE2b-256 3d1efdc05839268383fe34ed71d765214c4c8a89433b9b615c4fa300963cc382

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 95bc19869073bab2d86c2e3abdd0797a57ff641ef92c297ae401438914cd5781
MD5 3f75634a0c77a2880104be60a2ab40e5
BLAKE2b-256 e75ca96617244d45776d092a741775deb8c041bb2e8d9138bf1a81c81b9e4a18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4fc90650035f2a1c76fc4ff93fdce825d73007b08924d991d6c5773aa866a088
MD5 5dea16f3d254f3341b2673994dc69e60
BLAKE2b-256 a0694616b95ee6b40c04f446236d9595b475e549498e39a44a002f06e9b849bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 629d3a369c222da690772cd2b5f88e337211a9ae1f98a3abd8553e378a4e6bec
MD5 3407db7f2a5f85f13ae91bd5813bb769
BLAKE2b-256 83053cf6ad9e0ec0e5d09c86e455feda25eea31e32ecd96e6e209283fcf2a6d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c9551bc2af1670a5a2f0187b88da6d4b09fdea84d031555353e827956a3794a0
MD5 bfa8bb2579679e135ca80b3623aa66b5
BLAKE2b-256 864c4a3bbb2ee9c09d69d6e0a40409d4984cafea54a6cf7736c4a94b66865d9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 274b4e8311faa967fadb729469839d1db9965d942614de566a56ef67453d636c
MD5 33cb170217c3c6df7681d1ae45919476
BLAKE2b-256 b971d9582c32ab9affcee2060496b01b516182460debcfa32498d2550980f9bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f28b527630e73c753c707b216b9876f80d64790f49af494887f68787dbb033de
MD5 c0d51b8a4018ebc90019e3d9558996f3
BLAKE2b-256 f0c4dfcf71158c5624c166d1c190f05dd3c1742293056e3070f12a75b44889e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 44de0eb6739ed238549139bb1ff568ba933bd129134d2e87ad73197fd9e876ec
MD5 9c2ccb54898a04e4707a386568c09277
BLAKE2b-256 4c03eebac8e4736f93ff9c6d23299fbe30119ed41a1b1824143e700408ed1312

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 58bf9a5feb35047d0915303477a74c46b486cea7a9a509a7e0141da0a067d294
MD5 936b9826e1539da9554066358fe29506
BLAKE2b-256 91d9fed6a4df2930d4f34d9bffec82b3d7c768ee2d749b1330a76a388a825029

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7e3d88edf84cee0feebfe5fba2148965333c7a103425107c78e30bf328effb11
MD5 5094d96e5b898da80865004194298e4e
BLAKE2b-256 ed9900498c0e011f5e08607196b7f1a9ebb07153da110f4b9cc6e0e05ee75718

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8dedd59ee349d4ab6ff9649b0d994e3c19b2406e5edd70202a334eddd10ba76
MD5 7d3f56d60bf1efad05f1fc926fe86fc7
BLAKE2b-256 077dd752a496923eea5f18deb1c5a918580599d24179201a38376802f115cd77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0fb317e6e47ce834eccc60c3f9b37d653441eb6ae8f8edced3ba7c44a45ed8c7
MD5 771355304d8424e3b9159b54a2f97cda
BLAKE2b-256 b9364d350a08b30b9ecabdf268894ff980c644df35eee261bc976b8c08e59ca7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b51a37b54c8b663653c0d6d1e3c662e126840ee752623f09eb3e27d3866f5a56
MD5 47d1486b6fe4761df0d4761bb8a0e011
BLAKE2b-256 c193e0902baf341d71375112332160ab5d375c3cd40bca0adc9bb527a20b791a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2ed2226cb49c9fa1a0a3f90a195161b444e76b0d927a5c7c4372241c36e180fa
MD5 2091ed7f2dec96d5b6f15d88aae7fd45
BLAKE2b-256 8d2245895c890b055c5fe7b2a453dd1228d27385784fa04f5bc3becad6c9c2e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4e13271927a2c145f52410c0e0428fb2e622a35691d4f737b8bbcb296621017a
MD5 d163d5aecd63207098472bcffdb4ebcb
BLAKE2b-256 34922242fbd12cd6f9e9464e5023b569dbee5125f7a263d5fd91eafff3877aab

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pypoints2grid-0.1.9-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3f1ef614971ae05f7eb46e7061d6f7169eca6ffe7efa38121f6c8ae593f00d44
MD5 643646ea2000579e2750e0ab801d8c30
BLAKE2b-256 00bc771e7eceb8c3e368a188216e5138ce4361fc82390d9edf3a18f1c5881b3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ce037dc9495ef55bc2684e6d888cf67eb3130b07e3a0bb291d2746ea02635333
MD5 d5d5de2b5b04c2dd1c969baf0ddcf1fd
BLAKE2b-256 bb5b0b30308c5b897e9bb79d543355b79c81c10e31fbd9db574055da45aa6eee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e7667eaf420b24b175edafbfb5c7c2e338a3dbb069b59d37c85ac5cd4c476c58
MD5 2170a8caa47dda994392c206e0b66085
BLAKE2b-256 4fa97e4e1c0b4f0ada1975f696afc1e82d4eba739a2c8582f53d220100e1f159

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7654364775144735b853030bc131271fab958b00ed67a72bebdae203a83ca63
MD5 426472469c2d787674f4a7d0f54eb322
BLAKE2b-256 a9c37de6de8fe21487c115908461bc8ef9ac42d5b418433423db48ea8c470622

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5511dea8b7e8f6cc1bee330e084b2990d38ed4894c300b9ff0eb4f0672490774
MD5 1a95d430d3c357a33e494eb8d1183b03
BLAKE2b-256 cfd090b8452993ebbe30775e21e6b972b99c71305946eb3b07cbe7a79145f802

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9c329525f7318e33badd7c31104813723ec0847ada06893abab90d642842ae63
MD5 b5a45925fa5ca14b48d34e590f05caf0
BLAKE2b-256 4d955a22bd5ad0124bb810c29cf92d9f64f80dcd12ca0d5073366792e1b846b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.9-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b85c890d8688d0074c64fefbdfc3b729bfd0ceb1b7922d68eb79c53e12e7d123
MD5 ec12773c64b7463e28c60350a4f26666
BLAKE2b-256 fbbd066f06edb9b5deb90240931247b0d7cdffeea47683950382203b3aacfb15

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