Skip to main content

implemention of points2grid algorithm

Reason this release was yanked:

serious bug

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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

pypoints2grid-0.1.8-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.8-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.8-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (74.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pypoints2grid-0.1.8-pp39-pypy39_pp73-win_amd64.whl (73.9 kB view details)

Uploaded PyPy Windows x86-64

pypoints2grid-0.1.8-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.8-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.8-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (74.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

pypoints2grid-0.1.8-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.8-cp312-cp312-musllinux_1_1_i686.whl (682.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

pypoints2grid-0.1.8-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.8-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.8-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.8-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.8-cp311-cp311-win_amd64.whl (74.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

pypoints2grid-0.1.8-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.8-cp311-cp311-musllinux_1_1_i686.whl (683.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

pypoints2grid-0.1.8-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.8-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.8-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.8-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.8-cp310-cp310-win_amd64.whl (73.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

pypoints2grid-0.1.8-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.8-cp310-cp310-musllinux_1_1_i686.whl (682.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

pypoints2grid-0.1.8-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.8-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.8-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.8-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.8-cp39-cp39-win_amd64.whl (74.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

pypoints2grid-0.1.8-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.8-cp39-cp39-musllinux_1_1_i686.whl (682.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

pypoints2grid-0.1.8-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.8-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.8-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.8-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.8.tar.gz.

File metadata

  • Download URL: pypoints2grid-0.1.8.tar.gz
  • Upload date:
  • Size: 12.5 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.8.tar.gz
Algorithm Hash digest
SHA256 fdb0eeb94591028eff4934f0d7f4a4dc9a01aca68ac1b441ebe123a386547d98
MD5 6d23bd84fe03ba6e527c75a9cc7b5cc1
BLAKE2b-256 9d1cd6475bcc77fcb50017c8f94771da99363a313dd92bcac3ab5616a1105edf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4cc86f49eb906815878d74b502ba70903b7ed5e890644dadc09d3cc5e7f59244
MD5 726dc1ca333eb846424eb62060ff22bd
BLAKE2b-256 e2c8c727b2ca54aeef9c070858d66593fdd32dbcd0bd63f8285a006ba3e66b99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b71e5502f62c30ba3e8e2e34c0643db98be87501edce292fb9728bd641256479
MD5 34504ed5fcc119e18b31c6fd72bd7eb7
BLAKE2b-256 14335e4774e134125c553f6ed5573996b4b34b65930c47b2a8a924fc28d8a32a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 85aa003cca78e87495f232df3cdc6e073c5e60d002e12cf441eb409722af9ba5
MD5 278733fa187599613f42c6f073c0e772
BLAKE2b-256 e5bdcc127b5a2515049e2372a892927dfb7bee1ada91b24d35cd4351bc8bf7af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e1a8b6b879c349d27bbfbc6a16e23802d23a1261b83b16a4bc2d131cd1461b9
MD5 84a82fe367741b65d024b2ae7211765c
BLAKE2b-256 89f4d62f848a81cb2ed11319bdfb2f8dab76b7c90432f2fa20f7e899dc0ca2f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c6abd1a0aa6489283b1d036b6f46c1e2731a9b9773a513710dd7b4f00c193f28
MD5 f2eddfe000ae9bede54c5471fe1fdcd2
BLAKE2b-256 e310984509756e15531b43fd6722222837da6ab8e85be532c199f64774646ea0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ac85f92109853b5f6ca41536f29def0202af1ac723fccc3a91844ec14370139
MD5 62ebc0249c1f0855e3696caf2b3beade
BLAKE2b-256 bf6ca9ff12c9085bd6db421533776372333738a80c9bde60447f729ee32fbd87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d1e4696f278f364f8075d409a6084f489e208801f8aecea6bacbf43501cb552c
MD5 8d9db94308a92cae51df3ecc4bd3c056
BLAKE2b-256 63c86ee2af05f37d4d5d62d0df2f6df09ed896147640f8ef19a48d15c38b8f49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f8b0be37b230c6dc6f60e51e741a42bcc9845cbc3ff5b4b7ff7662345ef6a125
MD5 e4fb96c5eca2b79315b66d7c67e75860
BLAKE2b-256 ff697cf233afd97fc07deab3675af428ed89aadfcf1c30a82fa1b1535123d037

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 405037d101fc4139b837c3316176a039e0094236868da53156b31f4ecef657ef
MD5 4ee35b405281cf9ec0f62b798b601fa6
BLAKE2b-256 6ebccf42e870af6fda58b4538cb74e8ff1a7eb4b8025e85182bcf95f7c85f811

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 297d240d40011c86e570e5a3936093b122ee80d38e10c377a121db5d034678d7
MD5 d4da57e9b45f61b52ec77d1a0d8686be
BLAKE2b-256 873e7e19133dbc9b15f96e184e959f9eb5bd037564baf71e7085baa3ed19b629

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bc1a086f32de4a136b01d5011de95dd32dc737debaba16a2c60204d3f450d70e
MD5 8476bd9f31cd2d084c6426ca93098593
BLAKE2b-256 2d6188e3647c628d6dcac666b888155d5a20d3190a3634d869542fb8355eaad6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4c84f5eab03e0a56162b4d5613ce8ac33a2414616e79d6a080a96cdcdc7e948c
MD5 48b5a2e6166faefc012cea7c0ea0e6b2
BLAKE2b-256 f5a8dd1ca55a4979e196edfd58cfe7fafbb024521ff20426678879ed4eaf29ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 badcbc3b87f21d6f67bb63984652a78d2843b28f7a9d9c774e51a7d90c938569
MD5 194e0d483aa4b6b0217091edbd873b4d
BLAKE2b-256 2446ec4678642ea845c5321ed0e3cdda64873ee77266624174712d02ab109c7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 90fab47b3359025458140e2ac17c328f2144002658ffc1b39596138c460d2cde
MD5 96d6a673a5ae5688a4130aa9cc889167
BLAKE2b-256 ffee787aa0971ba923422a888d4d0e79c7eb757a92341a095a85e1d3bd9e08bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2da265c8eb2895fe574b3d6f2f6a2208a68fbaee96f528e3d73eada83f0c605f
MD5 08a290b6e6b9b7cf2ca0ff6a0823b459
BLAKE2b-256 935ea874f3189a581573f8d516f543f84d5aacb4de06b876412e0e8dcc09dabd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2b1eb979fdff4f6df501dd50aa1067309e2b8daf2d5e10b8c8202b62c2abb79f
MD5 79103fda5240c9c7c27f5c38877d7e30
BLAKE2b-256 a06a9ffca00eacfb53aee43f0f7d27fd99cf7a9bd29d6b2b2c53deb1baa2d06b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5131009b23f697cd5afff6dd887579f744e0c48657f8117c8ebae78f5aa15148
MD5 a7f972c72174cc166ee6a683f910a0d9
BLAKE2b-256 25940f9d01c8f29974b964b9eaca6fddac27e38af8434a6c6b50b9b21e1cb11f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4b820ed87972f8b244631549a97f5ab6b725194d3d790d94c4d409ad4d6608a7
MD5 d042a310f16306f10b7e355c92045145
BLAKE2b-256 ba1bb224e27ae02fc8b12dca1c8471230d9b34d44a3e6592d202df332d5df7ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1ae664493502a2d2cb60f1a5db32ee89ce8b1378a776e631e67ae7928697e6c8
MD5 621f0d49f6d1353ec8bea2f556540257
BLAKE2b-256 7cf7ca3867565f361e1e7c190d9f237fa226b86137a458bee2c02878422d43d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2e89d86fd3b3b996088765b8950dac722565932db06358c7d1806d631ff9ab49
MD5 d85fb663f5d699e0c2eb50fd7e02a5d1
BLAKE2b-256 6512a3e94664081b881921a6e09f75ddefe267eaf7b9e6439d5ca794fbf352c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9f6640f2355f0c3fe89582d5a171aba727f14755ae4ce7a64186f5451afd8ee
MD5 6699875bb78038d8ce0726832d94b5bd
BLAKE2b-256 721be31c1ce49ea6da9a7f91a44c9de7eb90a346ead6cab1ae155be72efeca0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 46878a75728f16b7598207b0ec9c031cbb6722dd80050b0f7f889d9e1ce9067b
MD5 1b4fb5b5ff10d4bb5a258f2e68daef40
BLAKE2b-256 e0ce04bb108a92dc03ef55658d537de699a880e23f2d5d23e3d3e568fda6fb9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b847f03bac5b43a59703d8cfe521ffe199bc8302ee76edbdaa11fd91de0f4ee4
MD5 aba53d00bb69035c0e76f306043e612d
BLAKE2b-256 d63590b16734f6c18491f45600fdb67ea44f629dbfe748edb3a9be7fc6b431ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e33988b92086416482cbf7f137a91809e3666230782d1cd9a5965660a7e3e6f0
MD5 e2164f00b8b0f05e1155c6f66d8cc7ef
BLAKE2b-256 7688521971eb9426f3c1ba30de0f2630a18cdc1535e23bb5a33fe698578e4e14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 034a90c93f7e96a504e3f31cd86549d7b255d98a2e63cdcd21b63388d76d2afc
MD5 a8477e9eeec3a93c6b3defe77ffc6bfa
BLAKE2b-256 d2302620cbfd7d34a563cc5a597a2f0ca4f62b92d5b79f6a40b7a25876bbe5ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0bbc2844bd933dfcb5b1e32dd7764a63400a425add72fc7aaf176b8e30db63fb
MD5 a14847eca2bfeb56fd299c8ce863642b
BLAKE2b-256 d6500176f6145236cc5d70626d4817abb0ab99226201c307995dd84b23c29cee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 028db667b65fd28dc3aa26a285af4d27008bc1aaf9b8a9c3aff981a0dbfb155c
MD5 9bbbdba2a09cac61b6f6908e955fd224
BLAKE2b-256 5068369343fad5eb683c33ceb0f9658128f06929d02b6bb3aeddf3aeeb26ef65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 dac9bde435b865c22c09397bae7a5218e441796937d171530847cbd5250eb42c
MD5 143a802bf7231553977fa05e0451956a
BLAKE2b-256 7893c065a796c11bb18b441c295b5627815320afd4c3557c4de10f9e7efe2fd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5ae0ec22a124a1b931da22d8291fc052d83e3276c44dce1ba3afb31fcfed3c3
MD5 31349e1b0eea811556df5e8f6d20a71c
BLAKE2b-256 e577549f9ea4d8f3d760a508396158a85a022fe5d390a6d68c24cd1a1c5c778d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fd16963961cb9a6627f34f926c00b2b4af7e34948c081afbd903ca30f77c57bf
MD5 4b47f96583a46edc742e6c897d76e2d4
BLAKE2b-256 adbf475abc98c58e3d8a18d102d16c3c71a15ac71731a2d5355c695d930d35b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b99ef15fe9319dcaa7c19371a8253a27580ef7937a04e0c3e53b7eaeb192e92e
MD5 df6cc099f22d2442716c32e3817e2876
BLAKE2b-256 7b921bdaefb0377974b4078356b6c50505873154da8b6316e8be518b11708187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 125359edec987a49564db5c376fe778ec44421a16ef33890b04150358680cc49
MD5 a25f51bda65674ea6fb0dc956b4d5a94
BLAKE2b-256 9e32c43ff67f2652d772ba2d23d2c344cf9d8e966c5fb537290289e32e945499

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3e6e0cba0c3c2f266e192c31de6544d4d6def72c6797c3bf72dbf8869837c1d7
MD5 e3e863fe24580521f37606047c33c414
BLAKE2b-256 2c84a7b069f9eae66c819910a31f75247147d3698ad846870f198bcab46d4535

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypoints2grid-0.1.8-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.8-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ae55b34397b222c55155e15003e6d3789295a04c6ed4ff8a6be7bb9c24917d37
MD5 6ae238e8a6a776572204f4e0455966ea
BLAKE2b-256 24dc98c6ad2864f6aafc637227a7f8067752c2107b45e9ae2a24e5d2341d445a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e3325da3bafc8cf8c538671489d5f6e9fe47b75bdd1d80349f0c887b9a0c8be2
MD5 05e4ac88d5be89e98bb3e43c262b5f5b
BLAKE2b-256 7a844de09e0dc1f232a248868d2c03615b929655be6164072356b9fb5551eeda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f654e6d70f7e6bfe85b8db839836cfb08fb3d144a216cc55f9ba61f633983833
MD5 f62b483b1ae1434f2d9987ee19a8292f
BLAKE2b-256 199ea444d7c745b0f340c43ba5caddf85b59c5db75ea2a537667d1b495c4dea0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22f8cb55b2ec49079ee59f496a4eb99f0d837f1d7796137f241c35ccaacd5b2e
MD5 e6aa9ca57bb31d0127df93dc2d77db6e
BLAKE2b-256 bdd1659ba686ecc1c0273561a58460936cb7cb7bf6d13e29fc12bf9acbcb6674

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6ca95d9d771576578789dedfe5debd8f089f7b121711fc79dce4908ebf5ee781
MD5 e529585830c89827e3ea223fd668f59e
BLAKE2b-256 b82d6c0d0093ef385f54953e8053e574813d11da44806c2e0aff2acf2b14c780

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 22cfcff2071b041f12df89650ee28f430a48cf9e9d899a770490d9d48ca78da2
MD5 10ef1a8db978255437831e3b26f87452
BLAKE2b-256 7002dd5f768bddbd653cea110e04f57d69aa9efac0a55afff8181c92e839c10a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.1.8-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c9f1879417ca461cd278106e5ce6f3725a6706641f6b0ed727440dd703c86d0d
MD5 bbfadb163094519d108e38ec17a35f27
BLAKE2b-256 2eeaa794302c35db86ff2d554dd456a63ac702ec843fccf398397b1aa7a87770

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