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 same units as points coordinates.

  • 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.2.2.tar.gz (13.4 kB view details)

Uploaded Source

Built Distributions

pypoints2grid-0.2.2-pp310-pypy310_pp73-win_amd64.whl (69.5 kB view details)

Uploaded PyPy Windows x86-64

pypoints2grid-0.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (89.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pypoints2grid-0.2.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (93.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pypoints2grid-0.2.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (58.8 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

pypoints2grid-0.2.2-cp313-cp313-win_amd64.whl (71.3 kB view details)

Uploaded CPython 3.13 Windows x86-64

pypoints2grid-0.2.2-cp313-cp313-win32.whl (64.8 kB view details)

Uploaded CPython 3.13 Windows x86

pypoints2grid-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

pypoints2grid-0.2.2-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

pypoints2grid-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (90.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

pypoints2grid-0.2.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (94.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

pypoints2grid-0.2.2-cp313-cp313-macosx_11_0_arm64.whl (59.5 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pypoints2grid-0.2.2-cp313-cp313-macosx_10_14_universal2.whl (118.6 kB view details)

Uploaded CPython 3.13 macOS 10.14+ universal2 (ARM64, x86-64)

pypoints2grid-0.2.2-cp312-cp312-win_amd64.whl (71.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

pypoints2grid-0.2.2-cp312-cp312-win32.whl (64.7 kB view details)

Uploaded CPython 3.12 Windows x86

pypoints2grid-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

pypoints2grid-0.2.2-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

pypoints2grid-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (90.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pypoints2grid-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (94.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

pypoints2grid-0.2.2-cp312-cp312-macosx_11_0_arm64.whl (59.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pypoints2grid-0.2.2-cp312-cp312-macosx_10_14_universal2.whl (118.5 kB view details)

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

pypoints2grid-0.2.2-cp311-cp311-win_amd64.whl (70.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

pypoints2grid-0.2.2-cp311-cp311-win32.whl (64.5 kB view details)

Uploaded CPython 3.11 Windows x86

pypoints2grid-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

pypoints2grid-0.2.2-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

pypoints2grid-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (90.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pypoints2grid-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (95.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

pypoints2grid-0.2.2-cp311-cp311-macosx_11_0_arm64.whl (60.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pypoints2grid-0.2.2-cp311-cp311-macosx_10_14_universal2.whl (120.0 kB view details)

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

pypoints2grid-0.2.2-cp310-cp310-win_amd64.whl (69.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

pypoints2grid-0.2.2-cp310-cp310-win32.whl (63.3 kB view details)

Uploaded CPython 3.10 Windows x86

pypoints2grid-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

pypoints2grid-0.2.2-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

pypoints2grid-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (89.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pypoints2grid-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (94.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pypoints2grid-0.2.2-cp310-cp310-macosx_11_0_arm64.whl (58.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pypoints2grid-0.2.2-cp310-cp310-macosx_10_14_universal2.whl (117.2 kB view details)

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

File details

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

File metadata

  • Download URL: pypoints2grid-0.2.2.tar.gz
  • Upload date:
  • Size: 13.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pypoints2grid-0.2.2.tar.gz
Algorithm Hash digest
SHA256 7d0e421c2f776b786ca2602413ddd6a59e68fc582a41fddb53872db3686597a4
MD5 2ae146c4cd911516c41f261965954fb1
BLAKE2b-256 a21d379e59f647b2550aae94b411aaa7396e331dbd22adc24c959fbed373f6d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2c9d2c26e4393cbc40122122dcf3909d43d70fd186864894a17ab32153910386
MD5 1c4d6fdca9f490779f92e7c10fdad7db
BLAKE2b-256 f9a4d21dfeaa1e446112165277bcd379c50ccf6138bc1fb77465ddb81a590abe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c56d5535842dbbcc8b71d13bb6be6feee49159e711e692bbe4fe89345a1cde49
MD5 df1bfb0e14a7f4729e0ef14e673b5940
BLAKE2b-256 dcfef46d6c1ca7630976f2448ce0f21950df1427b316615532898803f6d15476

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 55bd5346c2fdd73e6feac339d97947c779bf5f9f236a7e5c0730138264d480d0
MD5 27de50dbc7699a14d5314ff52d430a3f
BLAKE2b-256 fcdccaba7dae5e5d734becdca700ca01d47fe515db8d5e30458c0588b67d6ca3

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 799c8ad0015e7956596362fa3de8de87d6d2d325ad93e95c4df42891bb538988
MD5 426b22591d7fb4c4eaed0de07986284b
BLAKE2b-256 eafacc6dded3f8f5f5042f118dbc31a541860bfbc2cd36975855014b96e00178

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a9a1d48c524022ea0fb88a6e8d5c8e2377ac515ebfc553b6adb4f6eda00cfba9
MD5 d3aad0171826435d548f074467f45428
BLAKE2b-256 c4e30ba13d9e0c6e487a4bdf2994ae0c0596ede1de315a74696932412a571677

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.2-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7e0f803bb08b7821e60d433c29568eb4c1091a9884c1743d799180744f90d873
MD5 e6c1741132b5848d3de3c220a27fe941
BLAKE2b-256 e7d2904729cf0640d8c3af1304e30e56bdf59e01fb242b3c4e26f2f432616bf9

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ed5b3e28cf86cf79ad62d035d4f658d2946d1de46da322be773f887e3fad6f6
MD5 2d098b691cd4a6a2947fa4272fbf7499
BLAKE2b-256 01264d2c7145b441936704715cde608b318f129db5a2ac5a9e0ee6524d0148e3

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 77454fc133fd9a4997fb413fbc1dac90a5b2435e1b3ac072ab5bb6f6aedc85c8
MD5 772884de762772167689d00b0757f7f4
BLAKE2b-256 2675769fcda31119b203781565869147e4ea8a9dd703172b736a035756c2f1fd

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2f9a9e2872b249a4ef5f2848e896f94c510de85df8a3cc59c5daa6e6f42a250
MD5 759e51d6548bf45f77bf72fe81714b5e
BLAKE2b-256 610932724b56e4d05097d4bba9bbfc061bb19d2dfae57f6553177fb40241ca83

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8ec584f2dd65b6e2c08396dfa3a528e40bc1b05517cddfcf2a172b548f3936ce
MD5 f770e4dc22c20e30cc067216a149a11a
BLAKE2b-256 60fdb97f200d0fd816b1c9805081ecb9c9073eb38a9ee108fd7b6a26a378fe56

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c42d101dc239020770e560113804ba13024e3401c051c8b331a2ed9d2fd49e57
MD5 fe6e26aa52987b487ab887456380672a
BLAKE2b-256 9150f23e657bf8bb4d60e474b774184e6489065cab00b963a54c5a55965fc0a4

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.2-cp313-cp313-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp313-cp313-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 1798b28df605e304be486549ff53d6223197f468420a7f01e03c381d60293d55
MD5 1294a42f5f94f2b329eedfa5c27c7715
BLAKE2b-256 9255e2f997112a3281a9b96ec070f07d43e07ce7d66910a8acc667be321af99b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 96cab4843db96eeebfffbcf1d3fd783a61307b2516e222ae794ef2fa577dfc01
MD5 3366fbe185a4fe72a588f2a07351452a
BLAKE2b-256 afe4fcd8dc754116ac7111668d481e7d95652ef799de0dd1d354eddee7fdfce8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 30f3733ec8dd377b4b80d219d8f73579c1aa9d10c021eb50b061fe1b73296bce
MD5 54ac2e96027c2b87f7c555d87f85e3b1
BLAKE2b-256 7c2b45c0e0b7ce6ade25af9d13b9b164ca7c13ef22fadcb65c526bfe1d7d0629

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d111c2494e013620aff4ddbed1b5acbada934ed46f51d08856917d4f1903c3a6
MD5 9bef43df2e775891ba4264eb346b1018
BLAKE2b-256 5445aaaaa796974972cdcd3337df04a2e694be664a9cf4a17ef14856419d125a

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b599a5e90225bb48528a952c63b146067a51a789101591da369f4b147de9cd74
MD5 9a5a65dc312e9d4a15bf0ec2e3adc80e
BLAKE2b-256 6aef54773cf6ae17f9e0ff7141388d0b45f080c248626cea125ad11cc1d5d52a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b234399116fdfb0a499b8b42bb77c1445d3f145401a62e7346b7fd55ee71d0e
MD5 8fde4cef4be13395b45c2239da4edba9
BLAKE2b-256 dcd1fac5de5b775014ae65b04c76a4cb53517fc08ebe00050822d04dbe53662f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8da4877349b56013b3300a0c81ec3915bd39581fb2b888af33c2487798f88625
MD5 49d64df14314738400a657f21f22848c
BLAKE2b-256 e9071f7cb2da41dc9a707f5051bd22895ecc59450c85397cab215632e2dbdc7a

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0be828f88a8713dfa27f481a6091cbced7ec5b4f2532d5454624cdff40e34314
MD5 3d3302fc12fb15a4ad3f950f4a119bcf
BLAKE2b-256 a5a5378a9784091cbdb8012352945c58a3c364ce79d3201f4a1800e1c147b06d

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.2-cp312-cp312-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp312-cp312-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 008713659d54e58818505c1576308ef7e1a910baa8d5c4190ad3d3f1d5fa4bce
MD5 dae4e9e4bf941c2607d8031c0c43115e
BLAKE2b-256 2cb445b8926a579ae888498746e6b458783248da3a26b7b2209d1e0ee9e4ec25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1379b9b6c725ce287398c83c36cd0078ddfb614511a3776fa60281ac3649bf03
MD5 41a4d4fb2f8e652dfd2352054c3fbc1f
BLAKE2b-256 8e44d36e5aa8161a1bc7c037f19767c99a30c1b5a84e88cd580f720408e1bccb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8ad0261e5c8cf40feafec0692f6c78b69bb02f2bbf5ac3f3f96ae59204fff836
MD5 686b302cac48c37514c191daff3d0f39
BLAKE2b-256 124aa617fd33680f9e90ea14a887bda8462ab31aac98876ad93ee7009eaf8453

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9336a80e5b7437767ce7e4f553a92d5ad962cf34163abadc9fed89f5ece870ad
MD5 f6388427f5e05bc5447c5a7ea3223875
BLAKE2b-256 8ad8714ecf3aa0c0ffadfa8ec0049021f352f15e9a626b80f9a6a8a859310582

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7d87591227b52498b2e1c6272fd84d19e2b60dd02f1b9e635be687d883e49768
MD5 7ae342cf0eba7fa4273ac7f6fce939b9
BLAKE2b-256 15ee923baf3ea1c21feaae0abb12e5ce71ca549e45bf6f47956ec2533329f6e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f84a6c3f2001350e8e368fd1abb100748e5ecb1fc033e3971fcdd2db096607fa
MD5 1a4f10de7122c9770885c37de687d449
BLAKE2b-256 fd90043ea270a8f6ff9c0d774ddfcc15c4e8d18c8c84450e1693b939482c32df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 016adad1f4015c7c21bdde9b28ddc5efda032591d639e02568c295e97251d77d
MD5 631036607430f3fd71150394776718a7
BLAKE2b-256 0403bdc420edda6ae8fd3f74c2209b0bcc71b0350b6367ca93cbc5ea5c2cca5a

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14601d2881649e934e8ef43a572fda84a1dc8d081744105c42d51fc518efb5fd
MD5 4e61d58ce095c937cd38dacd26c77458
BLAKE2b-256 693b42149ff9f39d941518bdc0da53d03f0b5fc93062b1e0fcf9c9d61c37391a

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.2-cp311-cp311-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp311-cp311-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 054eb911d2c8f82dbb3602d28b95880df6a25bee2a43411acbac190be8b5bf61
MD5 a3a39e91cc0bf63ec18963a7314aa59a
BLAKE2b-256 27c13943d0b6412f2ea3450ab95c5269c9f3569bc8ea82c87c282945b0742fcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b9be620d6c6d2dd9398ce204a1b514d306e5e9070e25be05673aebccfe841e61
MD5 65e036207e606c679456efdb5b2445be
BLAKE2b-256 91408369b652b1fe530917984c680a20408ba00d27a9a86123d4a598c8c373da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8dc3b037c8a375be11ec1bdc17e2076f2ec35997d1c845512462948f3d478ccd
MD5 ad87c96e33df3a7caa154f1f5e45446f
BLAKE2b-256 8ad5eac7adc58b8268b7f11df061439ea82c9282e136e5c65419868092aa9612

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f1b956a4e1ae93e14795edb91779f4ece67cd7f5dd204958e22f5502faeeb7ec
MD5 b04b24161605757f44e2b7cd3e7b3b10
BLAKE2b-256 0df294b55b58df55f784deb5ccb6162f56dea78120d49ec963f7e3cfa821a909

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dc4e4181edd6fcc0c12a2ec29484899ee5cfdf0c3424e0f0625bf634321149e5
MD5 1663187af89de1c83953945ddf8473b5
BLAKE2b-256 7305e68ccc62ad436c495c0ae0a4053db4f74e824ee363843ceaf81078b1c863

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f697739c30621680390696842e343fbefa7d8984b68b9f44561ba25d3979710b
MD5 2ae5137d6af0f13e1e468e5e8c47488e
BLAKE2b-256 7bb42dca1f5d7972a24225df5fb05c9f03be8ddfbc0f6fbf9468a50822aa0471

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c40730e6b1fdab71d72c673dda379fe53ae8c1e0d2abdad0d18a0f3e4ba98222
MD5 195a56532b482a1a9374214ff909099f
BLAKE2b-256 9ed35e576bc5697ffe540cca351a639e946291fe7460931e0bc175a8fca9b903

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7f281fd81034bfa8164662a1e607a1a48206be5077ef69e8038ea06d1783078
MD5 c04debde5bccad41ec11fd7eb9a2207e
BLAKE2b-256 4da32a626a6efce760f530db5735c4631ca4435ba9f2a384dc1f2acf701bd1a4

See more details on using hashes here.

File details

Details for the file pypoints2grid-0.2.2-cp310-cp310-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for pypoints2grid-0.2.2-cp310-cp310-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 4fb58a4564b9e23776bffbccd32462edfc9a11106d0c4c6f91949d3eee1c92d5
MD5 31c6ca75ea45a3a2b3dad5cf287d6fb5
BLAKE2b-256 d90acf75668ebe62d4966bd9c5b56583d9ae395af62e5ab13d6e99a2e1c05f81

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