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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

pypoints2grid-0.1.5-pp310-pypy310_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.5-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.5-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (69.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86-64

pypoints2grid-0.1.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (99.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pypoints2grid-0.1.5-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (105.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pypoints2grid-0.1.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (69.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pypoints2grid-0.1.5-cp312-cp312-win_amd64.whl (68.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

pypoints2grid-0.1.5-cp312-cp312-musllinux_1_1_x86_64.whl (620.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

pypoints2grid-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (103.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pypoints2grid-0.1.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (107.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

pypoints2grid-0.1.5-cp312-cp312-macosx_10_9_x86_64.whl (69.0 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pypoints2grid-0.1.5-cp312-cp312-macosx_10_9_universal2.whl (129.8 kB view details)

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

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

Uploaded CPython 3.11 Windows x86-64

pypoints2grid-0.1.5-cp311-cp311-win32.whl (61.4 kB view details)

Uploaded CPython 3.11 Windows x86

pypoints2grid-0.1.5-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.5-cp311-cp311-musllinux_1_1_i686.whl (678.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

pypoints2grid-0.1.5-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.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (108.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

pypoints2grid-0.1.5-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.5-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.5-cp310-cp310-win_amd64.whl (68.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

pypoints2grid-0.1.5-cp310-cp310-win32.whl (60.2 kB view details)

Uploaded CPython 3.10 Windows x86

pypoints2grid-0.1.5-cp310-cp310-musllinux_1_1_x86_64.whl (620.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pypoints2grid-0.1.5-cp310-cp310-musllinux_1_1_i686.whl (677.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

pypoints2grid-0.1.5-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.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (107.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pypoints2grid-0.1.5-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.5-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.5-cp39-cp39-win_amd64.whl (68.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

pypoints2grid-0.1.5-cp39-cp39-musllinux_1_1_x86_64.whl (620.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

pypoints2grid-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (103.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pypoints2grid-0.1.5-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.5-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.5-cp39-cp39-macosx_10_9_universal2.whl (132.4 kB view details)

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

File details

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

File metadata

  • Download URL: pypoints2grid-0.1.5.tar.gz
  • Upload date:
  • Size: 7.2 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.5.tar.gz
Algorithm Hash digest
SHA256 355bd1a025ebae399330e2113ff801252e2bca71c5bbeb770d745afb49070725
MD5 2f469d0b8b6902eff4d65510a88a0ade
BLAKE2b-256 272e70e0ae27bebf70e19ba0fe5c63ab9485c3a536218da84b083f4dd09e2c0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 20229ed0a82b435257f99b93cf7977a6608da29a3ed06533e6179eb9ba0b5103
MD5 7e836695f98bee21a07ca7bfa4c132a4
BLAKE2b-256 642b6dde34b34883ca9c18680378087505cad32b848e8c62e5de33a7fa60ec13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3074b509d72f6b6685c99487852167cf0a4d2c7ca18eca7568d6b7d647224d1f
MD5 38f1aaa84a883f4dbf15b119eb9c7c41
BLAKE2b-256 907b401360b2b9769e2918fff055e1d65b406e692ef2d8dad453f51db01d966b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0adebd1c7e58c0e73b7059de6d50587e8721efa69aacafe06d56a68804de83a5
MD5 d13bbcbbaf9bfaa0568cb9e71e85835d
BLAKE2b-256 b068c8f6ae5caec161ff786d0ec2a2ce27b06087bcb1ae53037dab8533b0681f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c7be6597a54308024497da5175372fcf8ce34c5fedaf119bf9d2fcba8330cc21
MD5 cd4d1ae33cd883ccadc4353f6b4e1e8a
BLAKE2b-256 fedb43a024d6c779564d2d5ef5844e51d1e78399d94fde1226b015a8b5727f00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 66f1a99e47b367498bbc24050c02c1a0f8a0c8a8867c46a33243b19157eecb96
MD5 7c401a0f3b3ae5b81b798406ffcea2c5
BLAKE2b-256 b00d432b8369260435325216f0fa2dd35e40181e44eac1c51148ba11df12b7bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f85a74331fb3e7c755bb18cbc1165c185d6b9f76b032b4330c57a79fcd8a4ed
MD5 1971d183ea86b95654094e05285dc69e
BLAKE2b-256 30d35c3f7881964304df8c339fe33547866834013e49bdfa3038b0fb4436062e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 29d8cfc27b6630991ca24355582c6cb96728395d61ea8a276781bdf6fdc872c9
MD5 b52d0cb515132b851d3aaba03025216c
BLAKE2b-256 4fd97440ec3258bdb5dfb4e7f537514b745d46f56b346c3a1c68e6f0ee158e50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9b549a32b028f69eec0dd6a4ce0b5dea4ed275766a4bc2f82a1cfe935c0d2006
MD5 527178d5aced99b00c6931ef62a24987
BLAKE2b-256 ea1994739c77c2adb7633b4eac15c11d89a9da3c051727439e1290d1ba0c8c40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 59da66ea964090714b2a64ee25cd48d040e9be7ab21703493a72d6c7b8960e87
MD5 2e4abed92d6b329e1659b995228a8100
BLAKE2b-256 b1d8f7cbba83269750e8167e11b5a922eafc352424577d488e0ed383bb2700e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 59f370e5b0da0a698d3a749fd2953adae0485ff164bcd2d1cad20bd501e76667
MD5 925b2453cd98246374be5c86cb3ecb01
BLAKE2b-256 d384e14a4cb542ab2c4a1850ed122f0623a5e76df65596273f285f30207e9bf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f2af13c58cbb3c27075623529ad60903897eabf57d091dd9bb0a612c364b988d
MD5 e36c753ea03c0f373f4dff27afb01fe5
BLAKE2b-256 a4f7cfd9091c0f87ebeccd2dab36ca877be3d6664e35572a9a834ae568f08d5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 07fe3c45ba74ae0f488762c73b651a028c95a632e0467aef7371d48bb13e5632
MD5 325c207192f2bb5046f0b5e7e06bd87b
BLAKE2b-256 84c45261f567711349112a99f3742c7b907e2c52f53adb9fdb70dab00c34facc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c6acda2ca9cc13ce0692e915f723e3b2a4bd9a6fa8fdb302aad237971a26234
MD5 a8317a68d4bc5986e80203d4dd650de1
BLAKE2b-256 0d45587b1bd6b8318e33c7bbd0899b0cdf4f7fcf3bfe925ab77a35dab9499f23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 849959818832b1d920a0639706509b98eb17774d1c063f79249224d8431437bb
MD5 43b2e22ad06898f3eb5213ca5bae1e30
BLAKE2b-256 80b30bea7e395be19561d6a44ebd196ece20b893f0ecf35f7470a643f9bc71f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8cc794374e34e073796e1285641803a15325c81f362303e7ecdc7e77d3f8a84a
MD5 d12f9a5a0c6c78050a5d287601c4ee4f
BLAKE2b-256 79938d43f4457159737c74a4657221331aec67804529ec539cbfb0f7133f3d82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c45dff3f559d2318a4399893e5a1cf3362bc9ce759d70947bb7541c523ceec6f
MD5 1d6fd57386097560ba3a4b4f0e93c262
BLAKE2b-256 40cf2ee21d664264ac944cdec0dde94d9b70c3b23ac9783dc058f6d53494ae6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b91d0822e3cbd5a345056dba4053e14b4e855acd4deb35d58cd85f10a2f3d44d
MD5 9e1a3fea480de78bfd5efaf14421808b
BLAKE2b-256 1c7a62fd1319ad02164ebb46a5e6dee3f2cb3d54042ce79d142c4b6666d6fbc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8114191526ab1ba22e5693659799febec9f8740f7e7cf647f841a30784bb984c
MD5 a1a4525f73da1b1729a25bf43c8501e9
BLAKE2b-256 2d37f3b47b238fd45c52e1ce590f1cbaee81c0ba3e18eb5a9ac5c9ef5c8a255c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cc3126d8e11342ba7f3863134f33acaf17f3555d21c94a0095051103ca990787
MD5 98ad7bcc1341d57c4ab0989f442d0086
BLAKE2b-256 be316fdf2269097a59dc89c74912f5f1725e39a6ef5d3a66cee395358c517934

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6f1e969bbdc528ad638eb922bf16432c1acb54c82f618fb3637cfa7e997a289b
MD5 d1f55e841313779ab7e54bda89148be7
BLAKE2b-256 bc51d67ac0b2557d787a68c33cfd88612063be4f6ce1b197f5ae6521023da2c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0c88548f677a2d8580199798ffff9911441c74b7ad887ae75b0e864d0052ce9
MD5 835c4edab95b997cb64e7071a8344268
BLAKE2b-256 2074b2f2e0d80b56854d1f577802e286432d8aed2be1420f84ae45e5786660ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 93fa89e3d574469306c5443af8a7071440b21f64beff9ca64187d43f7b6193df
MD5 da7734d54dc5466606db31ab13dc39e6
BLAKE2b-256 cb0f6b204116ae30b7e931b5325c3fbb13b2ed0c488ff66e2dd3d78ad72b8dd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4cf1a305c3880388365cfde74c9b037cd1283d2a9efe03fca431208cacbf0b7f
MD5 89992a02df2203a53db8aa28e1a06c30
BLAKE2b-256 dd96a87d59115722dd9a7cfba178b73777e751711f4b0e7ed28a023d5f08199a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a8fbdcda14003814571c7d492645760e644fbfe36a85b36d78879bb9e871671f
MD5 b0748efb41f9f76ebf1f829658c05348
BLAKE2b-256 e990bdb3dfb24aeaffd6873205d8147e324d2c640ad9d9dd303ed0928c8b4407

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5a921246fb62780f90753cd219c679fea9e099123e760a2f2f818485b271fa50
MD5 46b119fee5e4c5d91b0a5aefc6fe144b
BLAKE2b-256 f611a403aca6c391073186f3fdac3b76a30608482ab36792601b1be027ce992b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ad7f0ad04a60aab168b46e98212b786c9e1110d3dc566a666a0deb93f57e34a4
MD5 48b316a03251c22aea9a8fcb4b1570a4
BLAKE2b-256 9de8090c355d3ca63e8b895f805a19d52f1b849b50f4dde9a024dddd21e4ea9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 80435fb09ec9b2f4633fa2707134fb3ce74a5627a534f4fb50402bd6bc4f585a
MD5 d6015d3c7bf463653ef0088c8c054952
BLAKE2b-256 f344ecee40cce0c4bcf9fe3db0a3dea5009a80e7335db4647a5bba6b5b39f219

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f8042143f2c188158b78beca0b1c473c0b3e650a5d500c05466face466414283
MD5 1236a81f87a5abbb7465de8af6c41f30
BLAKE2b-256 c71a0aa4bdc97f215da2919ed2e7cc91ec5e10abb5beb99c9f5798adf49b046b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b0a759b333bb6333c8df85014ac4cf6da5a2a77197f33f09b00e39ee3e84819
MD5 e824e28952fcc3c6ec98a3307446ba6f
BLAKE2b-256 f542980ed8eec6b4158b7e4d43c7afbc2a84c62de567a9d243a345130de78da5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c15ae30fed54fd79eba6e06f679e091749ca196c51de0c2fe15d28d9daee0674
MD5 219b83a7fcb3dec6e0aac8947e3bde86
BLAKE2b-256 7f5c6663dd5eee18788c5e089333af1ec123152d66cda0f9973a2cca90ace56a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2021c4e6a7211a17843e290a381eaea09f7bc211cb9a462854d3eb20f6d9823d
MD5 15b2e89cea9095026b8952952571c30b
BLAKE2b-256 44c1fa8bdb4fbe403d0573fab503856c4a6201d4cf19404b1d30f7af6cad3873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 73ec6cc96046e9b5c22032b3786a95e933bf6b4422738e4406143649cdcb49cc
MD5 7da56f59ac6863a4a9a22a9765ab802b
BLAKE2b-256 96a2437058891397f9ee0dea781f9ee07a604203922a502ca5af8c6b3702bf6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8ea3e4fc894208580233d60de517abf1d190e457d8c25d8fe2c02a431755232d
MD5 ce86cb60a2383d0323597fc0b8bd18ee
BLAKE2b-256 0dfcd83979abe486bdbcbde144bd325e1f78731e93865646105839493c71b00d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f534c704381942e653682c39e45c756aebabc37afe50ef6fd6cbc2d2efcbd8bb
MD5 45a67dd0d2a62f79d2c6c6c9f7aa0ac2
BLAKE2b-256 8a04f4fcd87efe3f25666c191af4f93e796f3714b642a5d36d0ac8dbe5583a0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f8df5e9dc729c2c89639979402e6c9dc4d200cfa3e914b810c1f0be030bf7706
MD5 d02d8bc4c0b58225ced1db7415a7701f
BLAKE2b-256 d714f0edf9da4d7ae581340f8a47ed27da2ee21256f046124755290daf101909

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6ddea21008ad5be44f608a14d9546ebec7078385fad9c391aae15e9eaf8bdfba
MD5 f6ce4784f404408141358609bbe77462
BLAKE2b-256 c1fe486a5e717a86c5df96913963834ed9779c59f815f9d6f1840be5148be48f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 724bbc51a477f3a02ee5bdb5b510295fe01de7408eddc3cd1ac93fb840b534e5
MD5 6beda2d984f329b8d7ad5eb5c33d3d74
BLAKE2b-256 b5fbec2719b770a0e81315f8e67508bb1580dc241556066cb2d196ab94d15dee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a7a815bc781ad87d89cad5c2b24f407e819217dcebfc77ba46eab9afbda46c30
MD5 1df40a6c6a27cd2a8a76cca60714da52
BLAKE2b-256 6d91bdf2b52f06d9dd56343ef9e9ed0127f2c3f20ed825806d9768a202a5e980

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8787383d4b2657008bb7fd657895c123c93c27aaa186acc5e31ad7c7cd04c777
MD5 0c8fb579d4874121f95525a91a057f98
BLAKE2b-256 e53038841a9f682ee79acb9402efb4bcdc6d8982d1cd483b97282d75d400f687

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.5-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 730d8863512514841e8e351427fd24573042182a161cadef9bb5cbb07a53c143
MD5 552ae1796bef2382c9bbd07083361d33
BLAKE2b-256 9444efa74e556bfb5a7bf15fe0320318815f6229cc17dacfeb759ac422359a46

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