Skip to main content

Fast and accurate raster zonal statistics

Project description

exactextract

[Build Status codecov

exactextract provides a fast and accurate algorithm for summarizing values in the portion of a raster dataset that is covered by a polygon, often referred to as zonal statistics. Unlike other zonal statistics implementations, it takes into account raster cells that are partially covered by the polygon.

Background

Accurate zonal statistics calculation requires determining the fraction of each raster cell that is covered by the polygon. In a naive solution to the problem, each raster cell can be expressed as a polygon whose intersection with the input polygon is computed using polygon clipping routines such as those offered in JTS, GEOS, CGAL, or other libraries. However, polygon clipping algorithms are relatively expensive, and the performance of this approach is typically unacceptable unless raster resolution and polygon complexity are low.

To achieve better performance, most zonal statistics implementations sacrifice accuracy by assuming that each cell of the raster is either wholly inside or outside of the polygon. This inside/outside determination can take various forms, for example:

  • ArcGIS rasterizes the input polygon, then extracts the raster values from cells within the input polygon. Cells are interpreted to be either wholly within or outside of the polygon, depending on how the polygon is rasterized.
  • QGIS compares the centroid of each raster cell to the polygon boundary, initially considering cells to be wholly within or outside of the polygon based on the centroid. However, if fewer than two cell centroids fall within the polygon, an exact vector-based calculation is performed instead (source).
  • Python's rasterstats also considers cells to be wholly within or outside of the polygon, but allows the user to decide to include cells only if their centroid is within the polygon, or if any portion of the cell touches the polygon (docs).
  • R's raster package also uses a centroid test to determine if cells are inside or outside of the polygon. It includes a convenient method of disaggregating the raster by a factor of 10 before performing the analysis, which reduces the error incurred by ignoring partially covered cells but reduces performance substantially (source). The velox package provides a faster implementation of the centroid test but does not provide a method for disaggregation.

Method used in exactextract

exactextract computes the portion of each cell that is covered by a polygon using an algorithm that proceeds as follows:

  1. Each ring of a polygon is traversed a single time, making note of when it enters or exits a raster cell.
  2. For each raster cell that was touched by a ring, the fraction of the cell covered by the polygon is computed. This is done by identifying all counter-clockwise-bounded areas within the cell.
  3. Any cell that was not touched by the ring is known to be either entirely inside or outside of the polygon (i.e., its covered fraction is either 0 or 1). A point-in-polygon test is used to determine which, and the 0 or 1 value is then propagated outward using a flood fill algorithm. Depending on the structure of the polygon, a handful of point-in-polygon tests may be necessary.

Additional Features

exactextract can compute statistics against two rasters simultaneously, with a second raster containing weighting values. The weighting raster does not need to have the same resolution and extent as the value raster, but the resolutions of the two rasters must be integer multiples of each other, and any difference between the grid origin points must be an integer multiple of the smallest cell size.

Compiling

exactextract requires the following:

  • A C++17 compiler (e.g., gcc 7+)
  • CMake 3.8+
  • GEOS version 3.5+
  • GDAL version 2.0+ (For CLI binary)

It can be built as follows on Linux as follows:

git clone https://github.com/isciences/exactextract
cd exactextract
mkdir cmake-build-release
cd cmake-build-release
cmake -DCMAKE_BUILD_TYPE=Release ..
make
sudo make install

There are three options available to control what gets compiled. They are each ON by default.

  • BUILD_BENCHMARKS will build performance tests
  • BUILD_CLI will build a command-line interface (requires GDAL)
  • BUILD_DOC will build the doxygen documentation if doxygen is available
  • BUILD_PYTHON will build Python bindings (requires pybind11)
  • BUILD_TEST will build the catch_test suite

To build just the library and test suite, you can use these options as follows to turn off the CLI (which means GDAL isn't required) and disable the documentation build. The tests and library are built, the tests run, and the library installed if the tests were run successfully:

git clone https://github.com/isciences/exactextract
cd exactextract
mkdir cmake-build-release
cd cmake-build-release
cmake -DBUILD_CLI:=OFF -DBUILD_DOC:=OFF -DCMAKE_BUILD_TYPE=Release ..
make
./catch_tests && sudo make install

Using exactextract

exactextract provides a simple command-line interface that uses GDAL to read a vector data source and one or more raster files, perform zonal statistics, and write output to a CSV, netCDF, or other tabular formats supported by GDAL.

In addition to the command-line executable, an R package (exactextractr) and python bindings allow the functionality of exactextract to be used with R sf and raster objects.

Command line documentation can be accessed by exactextract -h.

A minimal usage is as follows, in which we want to compute a mean temperature for each country:

exactextract \
  -r "temperature_2018.tif" \
  -p countries.shp \
  -s "mean" \
  -o mean_temperature.csv \
  --include-col country_name

In this example, exactextract will summarize temperatures stored in temperature_2018.tif over the country boundaries stored in countries.shp.

  • The -r argument provides the location for of the raster input. The location may be specified as a filename or any other location understood by GDAL. For example, a single variable within a netCDF file can be accessed using -r temp:NETCDF:outputs.nc:tmp2m. In files with more than one band, the band number (1-indexed) can be specified using square brackets, e.g., -r temperature.tif[4]. If the band number is not specified, statistics will be output for all bands.
  • The -p argument provides the location for the polygon input. As with the -r argument, this can be a file name or some other location understood by GDAL, such as a PostGIS vector source (-p "PG:dbname=basins[public.basins_lev05]").
  • The -s argument instructs exactextract to compute the mean for each polygon. These values will be stored as a field called mean in the output file.
  • The -o argument indicates the location of the output file. The format of the output file is inferred using the file extension.
  • The --include-col argument indicates that we'd like the field country_name from the shapefile to be included as a field in the output file.

With reasonable real-world inputs, the processing time of exactextract is roughly divided evenly between (a) I/O (reading raster cells, which may require decompression) and (b) computing the area of each raster cell that is covered by each polygon. In common usage, we might want to perform many calculations in which one or both of these steps can be reused, such as:

  • Computing the mean, min, and max temperatures in each country
  • Computing the mean temperature for several different years, each of which is stored in a separate but congruent raster files (having the same extent and resolution)

The following more advanced usage shows how exactextract might be called to perform multiple calculations at once, reusing work where possible:

exactextract \
  -r "temperature_2016.tif" \
  -r "temperature_2017.tif" \
  -r "temperature_2018.tif" \
  -p countries.shp \
  -include-col country_name \
  -s "min" \
  -s "mean" \
  -s "max" \
  -o temp_summary.csv

In this case, the output temp_summary.csv file would contain the fields temperature_2016_min, temperature_2016_mean, etc. Each raster would be read only a single time, and each polygon/raster overlay would be performed a single time, because the three input rasters have the same extent and resolution.

Another more advanced usage of exactextract involves calculations in which the values of one raster are weighted by the values of a second raster. For example, we may wish to calculate both a standard and population-weighted mean temperature for each country:

exactextract \
  -r "temperature_2018.tif" \
  -w "world_population.tif" \
  -p countries.shp \
  -f country_name \
  -s "mean" \
  -s "pop_weighted_mean=weighted_mean" \
  -o mean_temperature.csv

This also demonstrates the ability to control the name of a stat's output column by prefixing the stat name with an output column name.

Further details on weighted statistics are provided in the section below.

Alternate syntax

exactextract 0.1 required a somewhat more verbose syntax in which each raster was required to have a name that could be provided as an argument to a stat function, e.g.:

exactextract \
  -r "temp:temperature_2018.tif" \
  -r "pop:world_population.tif" \
  -p countries.shp \
  -f country_name \
  -s "mean(temp)" \
  -s "pop_weighted_mean=weighted_mean(temp,pop)" \
  -o mean_temperature.csv

This syntax is still supported.

Supported Statistics

The statistics supported by exactextract are summarized in the table below. A formula is provided for each statistic, in which xi represents the value of the ith raster cell, ci represents the fraction of the ith raster cell that is covered by the polygon, and wi represents the weight of the ith raster cell. Values in the "example result" column refer to the value and weighting rasters shown below. In these images, values of the "value raster" range from 1 to 4, and values of the "weighting raster" range from 5 to 8. The area covered by the polygon is shaded purple.

Example Value Raster Example Weighting Raster
Name Formula Description Typical Application Example Result
cell_id - Array with 0-based index of each cell that intersects the polygon, increasing left-to-right. - [ 0, 2, 3 ]
center_x - Array with cell center x-coordinate for each cell that intersects the polygon. Each cell center may or may not be inside the polygon. - [ 0.5, 0.5, 1.5 ]
center_y - Array with cell center y-coordinate for each cell that intersects the polygon. Each cell center may or may not be inside the polygon. - [ 1.5, 0.5, 0.5 ]
coefficient_of_variation stdev / mean Population coefficient of variation of cell values that intersect the polygon, taking into account coverage fraction. - 0.41
count Σci Sum of all cell coverage fractions. 0.5 + 0 + 1 + 0.25 = 1.75
coverage - Array with coverage fraction of each cell that intersects the polygon - [ 0.5, 1.0, 0.25 ]
frac - Fraction of covered cells that are occupied by each distinct raster value. Land cover summary -
majority - The raster value occupying the greatest number of cells, taking into account cell coverage fractions but not weighting raster values. Most common land cover type 3
max - Maximum value of cells that intersect the polygon, not taking coverage fractions or weighting raster values into account. Maximum temperature 4
max_center_x - Cell center x-coordinate for the cell containing the maximum value intersected by the polygon. The center of this cell may or may not be inside the polygon. Highest point in watershed 1.5
max_center_y - Cell center y-coordinate for the cell containing the maximum value intersected by the polygon. The center of this cell may or may not be inside the polygon. Highest point in watershed 0.5
mean (Σxici)/(Σci) Mean value of cells that intersect the polygon, weighted by the percent of each cell that is covered. Average temperature 4.5/1.75 = 2.57
median Median value of cells that intersect the polygon, weighted by the percent of each cell that is covered Average temperature 2
min - Minimum value of cells that intersect the polygon, not taking coverage fractions or weighting raster values into account. Minimum elevation 1
min_center_x - Cell center x-coordinate for the cell containing the minimum value intersected by the polygon. The center of this cell may or may not be inside the polygon. Lowest point in watershed 0.5
min_center_y - Cell center y-coordinate for the cell containing the minimum value intersected by the polygon. The center of this cell may or may not be inside the polygon. Lowest point in watershed 1.5
minority - The raster value occupying the least number of cells, taking into account cell coverage fractions but not weighting raster values. Least common land cover type 4
quantile - Specified quantile of cells that intersect the polygon, weighted by the percent of each cell that is covered. Quantile value is specified by the q argument, 0 to 1. -
stdev √variance Population standard deviation of cell values that intersect the polygon, taking into account coverage fraction. - 1.05
sum Σxici Sum of values of raster cells that intersect the polygon, with each raster value weighted by its coverage fraction. Total population 0.5×1 + 0×2 + 1.0×3 + 0.25×4 = 4.5
unique Array of unique raster values for cells that intersect the polygon - [ 1, 3, 4 ]
values Array of raster values for each cell that intersects the polygon - [ 1, 3, 4 ]
variance (Σci(xi - x̅)2)/(Σci) Population variance of cell values that intersect the polygon, taking into account coverage fraction. - 1.10
variety - The number of distinct raster values in cells wholly or partially covered by the polygon. Number of land cover types 3
weighted_frac - Fraction of covered cells that are occupied by each distinct raster value, weighted by the value of a second weighting raster. Population-weighted land cover summary -
weighted_mean (Σxiciwi)/(Σciwi) Mean value of cells that intersect the polygon, weighted by the product over the coverage fraction and the weighting raster. Population-weighted average temperature 31.5 / (0.5×5 + 0×6 + 1.0×7 + 0.25×8) = 2.74
weighted_stdev Weighted version of stdev. -
weighted_sum Σxiciwi Sum of raster cells covered by the polygon, with each raster value weighted by its coverage fraction and weighting raster value. Total crop production lost 0.5×1×5 + 0×2×6 + 1.0×3×7 + 0.25×4×8 = 31.5
weighted_variance Weighted version of variance -
weights Array of weight values for each cell that intersects the polygon - [ 5, 7, 8 ]

The behavior of these statistics may be modified by the following arguments:

  • coverage_weight - specifies the value to use for ci in the above formulas. The following methods are available:
    • fraction - the default method, with ci ranging from 0 to 1
    • none - ci is always equal to 1; all pixels are given the same weight in the above calculations regardless of their coverage fraction
    • area_cartesian - ci is the fraction of the pixel multiplied by it x and y resolutions
    • area_spherical_m2 - ci is the fraction of the pixel that is covered multiplied by a spherical approximation of the cell's area in square meters
    • area_spherical_km2 - ci is the fraction of the pixel that is covered multiplied by a spherical approximation of the cell's area in square kilometers
  • default_value - specifies a value to be used in place of NODATA
  • default_weight - specifies a weighing value to be used in place of NODATA
  • min_coverage_frac - specifies the minimum fraction of the pixel (0 to 1) that must be covered in order for a pixel to be considered in calculations. Defaults to 0.

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

exactextract-0.2.0.dev199.tar.gz (154.6 kB view details)

Uploaded Source

Built Distributions

exactextract-0.2.0.dev199-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12 Windows x86-64

exactextract-0.2.0.dev199-cp312-cp312-win32.whl (1.3 MB view details)

Uploaded CPython 3.12 Windows x86

exactextract-0.2.0.dev199-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

exactextract-0.2.0.dev199-cp312-cp312-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

exactextract-0.2.0.dev199-cp312-cp312-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

exactextract-0.2.0.dev199-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11 Windows x86-64

exactextract-0.2.0.dev199-cp311-cp311-win32.whl (1.3 MB view details)

Uploaded CPython 3.11 Windows x86

exactextract-0.2.0.dev199-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

exactextract-0.2.0.dev199-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

exactextract-0.2.0.dev199-cp311-cp311-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

exactextract-0.2.0.dev199-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10 Windows x86-64

exactextract-0.2.0.dev199-cp310-cp310-win32.whl (1.3 MB view details)

Uploaded CPython 3.10 Windows x86

exactextract-0.2.0.dev199-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

exactextract-0.2.0.dev199-cp310-cp310-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

exactextract-0.2.0.dev199-cp310-cp310-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

exactextract-0.2.0.dev199-cp39-cp39-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9 Windows x86-64

exactextract-0.2.0.dev199-cp39-cp39-win32.whl (1.3 MB view details)

Uploaded CPython 3.9 Windows x86

exactextract-0.2.0.dev199-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

exactextract-0.2.0.dev199-cp39-cp39-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

exactextract-0.2.0.dev199-cp39-cp39-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

File details

Details for the file exactextract-0.2.0.dev199.tar.gz.

File metadata

  • Download URL: exactextract-0.2.0.dev199.tar.gz
  • Upload date:
  • Size: 154.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for exactextract-0.2.0.dev199.tar.gz
Algorithm Hash digest
SHA256 2976e3519da485f13c972e57b0be06902075f15ea957cdc44c04f8ae0bd2056d
MD5 5611121823a2e776819699dca7a8ad7e
BLAKE2b-256 81591ab9815dd69e122ba58da030e9e7716f1df3f159ca50cf4c53d7b0ebc552

See more details on using hashes here.

File details

Details for the file exactextract-0.2.0.dev199-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for exactextract-0.2.0.dev199-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f7a62cdc8641dfe5d818b039bf1ac1c04c8bd257ebd88160024c901d51b75938
MD5 b11610a5e15bb8eef22caffcf5e2e401
BLAKE2b-256 bc95f0d604ad432c033aeb8bbdd7a9f8f65be88e22a1ed8a081e857939af5255

See more details on using hashes here.

File details

Details for the file exactextract-0.2.0.dev199-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for exactextract-0.2.0.dev199-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5901a53e48a59c339687c0e79d5b0e541ebd1a861587bed5a48c2a05d6c07db4
MD5 762044ed65dcbb28eaadf51df360af8e
BLAKE2b-256 4187f137fda13166ca6f8a582f965de01c35d0ee1c09769782f7f62ce80e34a1

See more details on using hashes here.

File details

Details for the file exactextract-0.2.0.dev199-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for exactextract-0.2.0.dev199-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90592cc99d3c62e7c5b21505963a88601a29c0d102b3c285dfd51d966d613127
MD5 6282d8f175cb228595e6d4a7b630da65
BLAKE2b-256 001c54a9652a0ca77b5745e9b3e5b2ed49da9fc1e003d6c0ecd2775b84f071f6

See more details on using hashes here.

File details

Details for the file exactextract-0.2.0.dev199-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for exactextract-0.2.0.dev199-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b96470b6f3d125cd8ab590acf4c66fab221db27ad82dd7e7ba1c2f8326b1fd3
MD5 7bb9632b532bc521c62fb4fb793cfdef
BLAKE2b-256 2fc5a90f063b2f3dc98e6f8829a1fca021a7b9f39fdac14c1ed3afbe7447f0f8

See more details on using hashes here.

File details

Details for the file exactextract-0.2.0.dev199-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for exactextract-0.2.0.dev199-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8099239e74c9f8c73dc5994d807be86a88e42c06cff0c267f8cc2b1cdce322ba
MD5 36ede9490c050eb5eac64f15572c6dd7
BLAKE2b-256 67c55aa1ed37e9f27c913d057264e3688bbbe5bdabe1d9605c194afbfd909f51

See more details on using hashes here.

File details

Details for the file exactextract-0.2.0.dev199-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for exactextract-0.2.0.dev199-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3f144be8a35782b8ff57a0c8376aa43f6028e7abff180cfde6ae8ad1fe60a3f7
MD5 58099257e4439d87ad9ce557ce25cbdf
BLAKE2b-256 9079b90e4722c9fba17d7fa03534b653d2c6f94c3aff783842b5aa4715f89b0e

See more details on using hashes here.

File details

Details for the file exactextract-0.2.0.dev199-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for exactextract-0.2.0.dev199-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ccc0a2af3f7f21e575b4eed0658855902a83d746159d95ca0c9c4b93b9ee3f20
MD5 a750a91fbba2a7da7252cd44a6d238eb
BLAKE2b-256 e5ceb829ce05577200efefed1fcef9db49e5798cc614f15c4d7b60fb5af94279

See more details on using hashes here.

File details

Details for the file exactextract-0.2.0.dev199-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for exactextract-0.2.0.dev199-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d8a03f7b65cc2d0626f8ca263bf8ede937e3573d33ef5542864aa3111a8b820
MD5 c7a563432f3d1d05d95776fd69ebc0d7
BLAKE2b-256 eefb316affc9f9d6163fa474b3f4bfa0cc9309226d0dbc7cc1aaa8c3ca8cb527

See more details on using hashes here.

File details

Details for the file exactextract-0.2.0.dev199-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for exactextract-0.2.0.dev199-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8aef8128fe76519848d1ce9fbf6bcb1de0e6a232a7a86d81cd5d0a79d6955f8
MD5 509fd6c4f5c9b0495548ad75d74fc8ec
BLAKE2b-256 d3858092c9a9ea34d38c74b74ee29c97e0d4e5981077427011bdab57955bd0cf

See more details on using hashes here.

File details

Details for the file exactextract-0.2.0.dev199-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for exactextract-0.2.0.dev199-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 63bc02e4ae6f7095cf0f91ebc7457a8ccf8beed2b002f76e5c424aa5ae0e53bb
MD5 119ab19149fcbbc36fb2c2e272efe936
BLAKE2b-256 12b7e01ddc9bfed3ea69355a9ee1cbe5811a64f17026432c3a7b1c35ab08ec77

See more details on using hashes here.

File details

Details for the file exactextract-0.2.0.dev199-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for exactextract-0.2.0.dev199-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 06f2516cbe3f0bcb1fed29bef1337edc0a86eca9ab03e767b805550498bbd5d2
MD5 bd66b14c03ec0b61c888c7c9f339cf73
BLAKE2b-256 c418d8367570abc597722ba52ad665fca0f625623cfb25872b11d16bcca0129e

See more details on using hashes here.

File details

Details for the file exactextract-0.2.0.dev199-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for exactextract-0.2.0.dev199-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9bc3596079aad3c684a49126850ca9ce053e077be0db8bf0bd9c8bb6e914df55
MD5 579fdccac347aa9243f34c8824d65bc8
BLAKE2b-256 e74929b1f6ab8722def0300861a13f057ff30b173c5ac34151dd9090ff009ae5

See more details on using hashes here.

File details

Details for the file exactextract-0.2.0.dev199-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for exactextract-0.2.0.dev199-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c8820a86b674bcfc8f1ff75c0b7ebbe37774cce9e9b0bc82a534da20f108419
MD5 c3c8a02aca05bfc71013e7e65d5db322
BLAKE2b-256 cd91697223fdf19bc453e7c7b548a71c07f4a681350acee377c5e3d74d6cff88

See more details on using hashes here.

File details

Details for the file exactextract-0.2.0.dev199-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for exactextract-0.2.0.dev199-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 057e3ac9d827ccd315c5c1f32d1e691ee7cb05c905d32c8cf5859c53002f9d1b
MD5 66a0d9f85e8306dd0c5a1299188bec2d
BLAKE2b-256 6a55e5823cf42641df35a48c141c4591a57b355e1b98e324752e9a7c3802fa31

See more details on using hashes here.

File details

Details for the file exactextract-0.2.0.dev199-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for exactextract-0.2.0.dev199-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bee717236bb5178c641d347a1b2028de29bbf8fb9aa7cab6122afc5eea92ba2f
MD5 335da8673ca68b9abb924417fdadd1b5
BLAKE2b-256 e512caba6572a52dbd5255c6daed15b3b69a9f212c1dfbf7a3abbe3d8e24c885

See more details on using hashes here.

File details

Details for the file exactextract-0.2.0.dev199-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for exactextract-0.2.0.dev199-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1b3d39715cfaa93d9694616d257ea26bbd8e0a9bcd548dd854e7d9445963a7a8
MD5 2eac8a4ef7f23422271fcb0b458a5448
BLAKE2b-256 417cb0e937189add79623aa1ae3ce5417387a5d91203a0f683f7cdab2b88bd72

See more details on using hashes here.

File details

Details for the file exactextract-0.2.0.dev199-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for exactextract-0.2.0.dev199-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f4f7ee05e1b266179a13249416937a87cc7c4ba24e883da5f084baad0416fadc
MD5 9d049cd101fed5a628701b9c3fd36178
BLAKE2b-256 571353467ba82f86cd2fbf82b37461c2103a36403950e7a8846f06a33e3a21ee

See more details on using hashes here.

File details

Details for the file exactextract-0.2.0.dev199-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for exactextract-0.2.0.dev199-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b5abc2337b4dadb0075b8c97676ec18f09381cbfc7d3a0a1dc46608b3ffac0a
MD5 30ccf9047cad91e26ff5bde1639d9553
BLAKE2b-256 e9596e4e557a82ed0a67bbcd4641ec340bcbfc5fbab5b73b012f147c7e5b79fb

See more details on using hashes here.

File details

Details for the file exactextract-0.2.0.dev199-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for exactextract-0.2.0.dev199-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3545a94d8c3b575292f7d45736080abfc283a74d94603fadff42560ee8a19ffd
MD5 78135372ffcfebf12194b2702a9b5bf6
BLAKE2b-256 cde9ec7be2b86dbb37a36f8ad723de9759b42a1002dd615b145583cd452c6f0b

See more details on using hashes here.

File details

Details for the file exactextract-0.2.0.dev199-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for exactextract-0.2.0.dev199-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c5f8c3281c3d9021421e72efecb3120be65b201defff3c2be928f039f406a316
MD5 134bb3ef473fc72f158d77fcc646577f
BLAKE2b-256 8a541846711d8f90425864432fe26d4d4b683d470fe810a3c3112f5125a988da

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