## `INPOLY: Fast point(s)-in-polygon queries`
A fast 'point(s)-in-polygon' routine for `Python`.
`INPOLY` returns the "inside/outside" status for a set of vertices `VERT` and a general polygon (`PSLG`) embedded in the two-dimensional plane. General non-convex and multiply-connected polygonal regions can be handled.
<p align="center">
<img src = "../master/img/query.png">
</p>
`INPOLY` is based on a 'crossing-number' test, counting the number of times a line extending from each point past the right-most region of the polygon intersects with the polygonal boundary. Points with odd counts are 'inside'. A simple implementation requires that each edge intersection be checked for each point, leading to (slow) `O(N*M)` overall complexity.
This implementation seeks to improve these bounds. Query points are sorted by `y-value` and candidate intersection sets are determined via binary-search. Given a configuration with `N` test points, `M` edges and an average point-edge 'overlap' of `H`, the overall complexity scales like `O(M*H + M*LOG(N) + N*LOG(N))`, where `O(N*LOG(N))` operations are required for the initial sorting, `O(M*LOG(N))` operations are required for the set of binary-searches, and `O(M*H)` operations are required for the actual intersection tests. `H` is typically small on average, such that `H << N`. Overall, this leads to fast `O((N+M)*LOG(N))` complexity for average cases.
### `Quickstart`
Clone/download + unpack this repository.
python3 setup.py install
python3 example.py --IDnumber=1
python3 example.py --IDnumber=2
python3 example.py --IDnumber=3
### `Demo problems`
The following set of example problems are available in `example.py`:
example: 1 # a simple box-type geometry to get started
example: 2 # random queries using a common geographic dataset
example: 3 # speed test vs existing inpolygon implementations
Run `python3 example.py --IDnumber=N` to call the `N-th` example.
### `Fast kernels`
`INPOLY` relies on `Cython` to compile the core "inpolygon" tests into a fast kernel. `inpoly_.pyx` contains the human-readable `Cython` implementation, `inpoly_.c` is the auto-generated output. For a full build:
python3 setup.py build_ext --inplace
python3 setup.py install
These steps should "compile" the `Cython` kernel `inpoly_.pyx` into the `Python`-compatible `c`-code `inpoly_.c`, which can then be compiled into the binary lib `inpoly_.so[pyd|dylib]`.
### `License Terms`
This program may be freely redistributed under the condition that the copyright notices (including this entire header) are not removed, and no compensation is received through use of the software. Private, research, and institutional use is free. You may distribute modified versions of this code `UNDER THE CONDITION THAT THIS CODE AND ANY MODIFICATIONS MADE TO IT IN THE SAME FILE REMAIN UNDER COPYRIGHT OF THE ORIGINAL AUTHOR, BOTH SOURCE AND OBJECT CODE ARE MADE FREELY AVAILABLE WITHOUT CHARGE, AND CLEAR NOTICE IS GIVEN OF THE MODIFICATIONS`. Distribution of this code as part of a commercial system is permissible `ONLY BY DIRECT ARRANGEMENT WITH THE AUTHOR`. (If you are not directly supplying this code to a customer, and you are instead telling them how they can obtain it for free, then you are not required to make any arrangement with me.)
`DISCLAIMER`: Neither I nor the University of Sydney warrant this code in any way whatsoever. This code is provided "as-is" to be used at your own risk.
### `References`
`[1]` - J. Kepner, D. Engwirda, V. Gadepally, C. Hill, T. Kraska, M. Jones, A. Kipf, L. Milechin, N. Vembar: <a href="https://arxiv.org/abs/2005.03156">Fast Mapping onto Census Blocks</a>, IEEE HPEC, 2020.
Raw data
{
"_id": null,
"home_page": "https://github.com/dengwirda/inpoly-python",
"name": "inpoly",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.3.0",
"maintainer_email": "",
"keywords": "Point-in-Polygon Geometry GIS",
"author": "Darren Engwirda and Keith Roberts",
"author_email": "d.engwirda@gmail.com",
"download_url": "",
"platform": "",
"description": "\n## `INPOLY: Fast point(s)-in-polygon queries`\n\nA fast 'point(s)-in-polygon' routine for `Python`.\n\n`INPOLY` returns the \"inside/outside\" status for a set of vertices `VERT` and a general polygon (`PSLG`) embedded in the two-dimensional plane. General non-convex and multiply-connected polygonal regions can be handled.\n\n<p align=\"center\">\n <img src = \"../master/img/query.png\">\n</p>\n\n`INPOLY` is based on a 'crossing-number' test, counting the number of times a line extending from each point past the right-most region of the polygon intersects with the polygonal boundary. Points with odd counts are 'inside'. A simple implementation requires that each edge intersection be checked for each point, leading to (slow) `O(N*M)` overall complexity.\n\nThis implementation seeks to improve these bounds. Query points are sorted by `y-value` and candidate intersection sets are determined via binary-search. Given a configuration with `N` test points, `M` edges and an average point-edge 'overlap' of `H`, the overall complexity scales like `O(M*H + M*LOG(N) + N*LOG(N))`, where `O(N*LOG(N))` operations are required for the initial sorting, `O(M*LOG(N))` operations are required for the set of binary-searches, and `O(M*H)` operations are required for the actual intersection tests. `H` is typically small on average, such that `H << N`. Overall, this leads to fast `O((N+M)*LOG(N))` complexity for average cases.\n\n### `Quickstart`\n\n Clone/download + unpack this repository.\n python3 setup.py install\n python3 example.py --IDnumber=1\n python3 example.py --IDnumber=2\n python3 example.py --IDnumber=3\n\n### `Demo problems`\n\nThe following set of example problems are available in `example.py`: \n\n example: 1 # a simple box-type geometry to get started\n example: 2 # random queries using a common geographic dataset\n example: 3 # speed test vs existing inpolygon implementations\n\nRun `python3 example.py --IDnumber=N` to call the `N-th` example.\n\n### `Fast kernels`\n\n`INPOLY` relies on `Cython` to compile the core \"inpolygon\" tests into a fast kernel. `inpoly_.pyx` contains the human-readable `Cython` implementation, `inpoly_.c` is the auto-generated output. For a full build:\n\n python3 setup.py build_ext --inplace\n python3 setup.py install\n\nThese steps should \"compile\" the `Cython` kernel `inpoly_.pyx` into the `Python`-compatible `c`-code `inpoly_.c`, which can then be compiled into the binary lib `inpoly_.so[pyd|dylib]`.\n\n### `License Terms`\n\nThis program may be freely redistributed under the condition that the copyright notices (including this entire header) are not removed, and no compensation is received through use of the software. Private, research, and institutional use is free. You may distribute modified versions of this code `UNDER THE CONDITION THAT THIS CODE AND ANY MODIFICATIONS MADE TO IT IN THE SAME FILE REMAIN UNDER COPYRIGHT OF THE ORIGINAL AUTHOR, BOTH SOURCE AND OBJECT CODE ARE MADE FREELY AVAILABLE WITHOUT CHARGE, AND CLEAR NOTICE IS GIVEN OF THE MODIFICATIONS`. Distribution of this code as part of a commercial system is permissible `ONLY BY DIRECT ARRANGEMENT WITH THE AUTHOR`. (If you are not directly supplying this code to a customer, and you are instead telling them how they can obtain it for free, then you are not required to make any arrangement with me.) \n\n`DISCLAIMER`: Neither I nor the University of Sydney warrant this code in any way whatsoever. This code is provided \"as-is\" to be used at your own risk.\n\n### `References`\n\n`[1]` - J. Kepner, D. Engwirda, V. Gadepally, C. Hill, T. Kraska, M. Jones, A. Kipf, L. Milechin, N. Vembar: <a href=\"https://arxiv.org/abs/2005.03156\">Fast Mapping onto Census Blocks</a>, IEEE HPEC, 2020.\n\n\n",
"bugtrack_url": null,
"license": "custom",
"summary": "Fast point(s)-in-polygon queries.",
"version": "0.2.0",
"project_urls": {
"Homepage": "https://github.com/dengwirda/inpoly-python"
},
"split_keywords": [
"point-in-polygon",
"geometry",
"gis"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "4b06a8e1882f9c3635d565f56407c6b528603a50cf0ccac826a04faecf4e3934",
"md5": "34ef6842b8178a9ae62aac9f7f023726",
"sha256": "42a76010f7122de89f07a5b8142c640b7c1dc3132f5bbe3316dc385305f2d2b3"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp35-cp35m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "34ef6842b8178a9ae62aac9f7f023726",
"packagetype": "bdist_wheel",
"python_version": "cp35",
"requires_python": ">=3.3.0",
"size": 31662,
"upload_time": "2020-12-20T01:07:59",
"upload_time_iso_8601": "2020-12-20T01:07:59.955693Z",
"url": "https://files.pythonhosted.org/packages/4b/06/a8e1882f9c3635d565f56407c6b528603a50cf0ccac826a04faecf4e3934/inpoly-0.2.0-cp35-cp35m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d67f1b87d1482d30098c61a2a1984f3aef03c106e3157d6a8c3d0567e535237d",
"md5": "bea1f599bfae5c7d086dbac21dcfc5b4",
"sha256": "de7aeab7716f9328521c146f3c2a2a93898b4d7d31ceee7ec3167d35893e71e0"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp35-cp35m-manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "bea1f599bfae5c7d086dbac21dcfc5b4",
"packagetype": "bdist_wheel",
"python_version": "cp35",
"requires_python": ">=3.3.0",
"size": 92262,
"upload_time": "2020-12-20T01:06:09",
"upload_time_iso_8601": "2020-12-20T01:06:09.836928Z",
"url": "https://files.pythonhosted.org/packages/d6/7f/1b87d1482d30098c61a2a1984f3aef03c106e3157d6a8c3d0567e535237d/inpoly-0.2.0-cp35-cp35m-manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2a05c09892727f60bb0ed924d33a33a5106526fe3401e13d6575e729d8d9f348",
"md5": "18de985763af6a077669ac285cfb27ab",
"sha256": "ea7b02813e3c21504217754583cd33e791bb7900253161f48469d3b52c92a845"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp35-cp35m-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "18de985763af6a077669ac285cfb27ab",
"packagetype": "bdist_wheel",
"python_version": "cp35",
"requires_python": ">=3.3.0",
"size": 95653,
"upload_time": "2020-12-20T01:06:11",
"upload_time_iso_8601": "2020-12-20T01:06:11.097123Z",
"url": "https://files.pythonhosted.org/packages/2a/05/c09892727f60bb0ed924d33a33a5106526fe3401e13d6575e729d8d9f348/inpoly-0.2.0-cp35-cp35m-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e4483ac974047dcd1416f3e071595c70103ee326004700ee559cb62d65adbfe1",
"md5": "49de0e236a3da904f87100c0fe35aff8",
"sha256": "36ba925f108c5207728bd305defcbcb7f5204afef32d88f69cdfcce4905ac87b"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp35-cp35m-manylinux2010_i686.whl",
"has_sig": false,
"md5_digest": "49de0e236a3da904f87100c0fe35aff8",
"packagetype": "bdist_wheel",
"python_version": "cp35",
"requires_python": ">=3.3.0",
"size": 92264,
"upload_time": "2020-12-20T01:06:12",
"upload_time_iso_8601": "2020-12-20T01:06:12.274494Z",
"url": "https://files.pythonhosted.org/packages/e4/48/3ac974047dcd1416f3e071595c70103ee326004700ee559cb62d65adbfe1/inpoly-0.2.0-cp35-cp35m-manylinux2010_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "544c675cb9a8ee0f9d3ef7a57e366943ace22934e92ce56c5af8fc73054c2b48",
"md5": "8dead4659e2a57608d35a23b98052dc3",
"sha256": "477e59094bdbe908eb579235f1e5cbec123508b3fb4b24d737c689c3d3655701"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp35-cp35m-manylinux2010_x86_64.whl",
"has_sig": false,
"md5_digest": "8dead4659e2a57608d35a23b98052dc3",
"packagetype": "bdist_wheel",
"python_version": "cp35",
"requires_python": ">=3.3.0",
"size": 95656,
"upload_time": "2020-12-20T01:06:13",
"upload_time_iso_8601": "2020-12-20T01:06:13.251603Z",
"url": "https://files.pythonhosted.org/packages/54/4c/675cb9a8ee0f9d3ef7a57e366943ace22934e92ce56c5af8fc73054c2b48/inpoly-0.2.0-cp35-cp35m-manylinux2010_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2f0d94105033f9cde874e81de3a402d410cb67fb11f59dcf45f2e0601050b8ad",
"md5": "9ec728eea152e9f8e08696c76ab51a1b",
"sha256": "c434177490e0d977349bfd4d2fa58a32490b0e36610f1da9d08aadc2773876d8"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp35-cp35m-win32.whl",
"has_sig": false,
"md5_digest": "9ec728eea152e9f8e08696c76ab51a1b",
"packagetype": "bdist_wheel",
"python_version": "cp35",
"requires_python": ">=3.3.0",
"size": 31596,
"upload_time": "2020-12-20T01:08:23",
"upload_time_iso_8601": "2020-12-20T01:08:23.020620Z",
"url": "https://files.pythonhosted.org/packages/2f/0d/94105033f9cde874e81de3a402d410cb67fb11f59dcf45f2e0601050b8ad/inpoly-0.2.0-cp35-cp35m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b45d4e9d284eb4f9c43f0d617a300d51ab7d173afe1673267afb9f4d9891dd5b",
"md5": "920e3ac8c8061cfeb63cf814c0ca1752",
"sha256": "32892c0d90391ea1f05c8215316b3b800be535406bc0a119aa1ef8431d4f0ec5"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp35-cp35m-win_amd64.whl",
"has_sig": false,
"md5_digest": "920e3ac8c8061cfeb63cf814c0ca1752",
"packagetype": "bdist_wheel",
"python_version": "cp35",
"requires_python": ">=3.3.0",
"size": 34966,
"upload_time": "2020-12-20T01:08:23",
"upload_time_iso_8601": "2020-12-20T01:08:23.743088Z",
"url": "https://files.pythonhosted.org/packages/b4/5d/4e9d284eb4f9c43f0d617a300d51ab7d173afe1673267afb9f4d9891dd5b/inpoly-0.2.0-cp35-cp35m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8a015a4684f55d43984d60384b603ac7fbf26b931b6ce39259e9662b468ff3b4",
"md5": "283d001337c0d595edc20ffc66cc8bb2",
"sha256": "1e7224206a52fe90a27dbe544672d6703955ef0443c89b285e771e7735a883ed"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp36-cp36m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "283d001337c0d595edc20ffc66cc8bb2",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.3.0",
"size": 32267,
"upload_time": "2020-12-20T01:08:00",
"upload_time_iso_8601": "2020-12-20T01:08:00.883368Z",
"url": "https://files.pythonhosted.org/packages/8a/01/5a4684f55d43984d60384b603ac7fbf26b931b6ce39259e9662b468ff3b4/inpoly-0.2.0-cp36-cp36m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c6a457a8ed3b20c269361e92cbe548298d6732f6b2ba35a192bdb0c7658da447",
"md5": "b25e0bd8d1777f39933aa18eb4d34ee6",
"sha256": "736f4143983f145cf76b45c52a63f20b37655e4574e139b1b5cef55b215864ab"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp36-cp36m-manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "b25e0bd8d1777f39933aa18eb4d34ee6",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.3.0",
"size": 93480,
"upload_time": "2020-12-20T01:06:14",
"upload_time_iso_8601": "2020-12-20T01:06:14.307558Z",
"url": "https://files.pythonhosted.org/packages/c6/a4/57a8ed3b20c269361e92cbe548298d6732f6b2ba35a192bdb0c7658da447/inpoly-0.2.0-cp36-cp36m-manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "128ca8c28156ceb786b5b209f175a8dcb95ad0b57342661c95dad779fd288111",
"md5": "bcb4c76bea6b39568fc3ba9786396d00",
"sha256": "c160c67f98c6dce7d60e89b9cacf9b4f13eb5c506f09a321f813deaf0e99838e"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp36-cp36m-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "bcb4c76bea6b39568fc3ba9786396d00",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.3.0",
"size": 97618,
"upload_time": "2020-12-20T01:06:15",
"upload_time_iso_8601": "2020-12-20T01:06:15.131501Z",
"url": "https://files.pythonhosted.org/packages/12/8c/a8c28156ceb786b5b209f175a8dcb95ad0b57342661c95dad779fd288111/inpoly-0.2.0-cp36-cp36m-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "852d5fb609c666f88cd69d1f4feed03da4691a0d73d12ffc00d74f745d90a52b",
"md5": "9053e2e4d84fef54edd4f3cfcc2e1f8e",
"sha256": "32777a5bef493e910ed4ab18b85dea44171fd7a14b775b54adaf049e94c51048"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp36-cp36m-manylinux2010_i686.whl",
"has_sig": false,
"md5_digest": "9053e2e4d84fef54edd4f3cfcc2e1f8e",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.3.0",
"size": 93483,
"upload_time": "2020-12-20T01:06:16",
"upload_time_iso_8601": "2020-12-20T01:06:16.217800Z",
"url": "https://files.pythonhosted.org/packages/85/2d/5fb609c666f88cd69d1f4feed03da4691a0d73d12ffc00d74f745d90a52b/inpoly-0.2.0-cp36-cp36m-manylinux2010_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "07e3d5ba5039c199a234dbce97de38dd60ab1c925de53a8f7ebbda7b5c1a59c9",
"md5": "11a45918c685b93adfdcfbd4f0cc588d",
"sha256": "1c8d8cf90db4006895e9abe1d828c37ea6177f55b6c08609009c5291062c1bd2"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp36-cp36m-manylinux2010_x86_64.whl",
"has_sig": false,
"md5_digest": "11a45918c685b93adfdcfbd4f0cc588d",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.3.0",
"size": 97622,
"upload_time": "2020-12-20T01:06:17",
"upload_time_iso_8601": "2020-12-20T01:06:17.091045Z",
"url": "https://files.pythonhosted.org/packages/07/e3/d5ba5039c199a234dbce97de38dd60ab1c925de53a8f7ebbda7b5c1a59c9/inpoly-0.2.0-cp36-cp36m-manylinux2010_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2cc0420b632fa4aeae2650af18dfd1b76803af6d7a3faad1c100a00063a0c3e2",
"md5": "b4db363e409f91072dccc1f19e5be0f3",
"sha256": "2357d87a17c12eebf58cbf30343a85c362204d928e2c120b57a158f5bbd478c4"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp36-cp36m-win32.whl",
"has_sig": false,
"md5_digest": "b4db363e409f91072dccc1f19e5be0f3",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.3.0",
"size": 31993,
"upload_time": "2020-12-20T01:08:24",
"upload_time_iso_8601": "2020-12-20T01:08:24.676423Z",
"url": "https://files.pythonhosted.org/packages/2c/c0/420b632fa4aeae2650af18dfd1b76803af6d7a3faad1c100a00063a0c3e2/inpoly-0.2.0-cp36-cp36m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5842adc40e2e9e71a2eb12d627f08c86bda401407337627fa10ce4b70bd7fdae",
"md5": "93b1d98e57b68273b81e489ea6e27f69",
"sha256": "33e8bf4f7e649051b1251cc22fc7aba8d6a93554450802f79727c6d291264908"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp36-cp36m-win_amd64.whl",
"has_sig": false,
"md5_digest": "93b1d98e57b68273b81e489ea6e27f69",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": ">=3.3.0",
"size": 35274,
"upload_time": "2020-12-20T01:08:25",
"upload_time_iso_8601": "2020-12-20T01:08:25.330902Z",
"url": "https://files.pythonhosted.org/packages/58/42/adc40e2e9e71a2eb12d627f08c86bda401407337627fa10ce4b70bd7fdae/inpoly-0.2.0-cp36-cp36m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e7a46436e7be74c67967471a36e760d049cc8f18eee7dd4700a706265c7453d",
"md5": "348d3f8110bdf33b3dc1c50bf87b6432",
"sha256": "279cc2cd2f69815509bc04390a1230c2c56968be6568dff8bf737b1083215198"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "348d3f8110bdf33b3dc1c50bf87b6432",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.3.0",
"size": 32323,
"upload_time": "2020-12-20T01:08:01",
"upload_time_iso_8601": "2020-12-20T01:08:01.609551Z",
"url": "https://files.pythonhosted.org/packages/5e/7a/46436e7be74c67967471a36e760d049cc8f18eee7dd4700a706265c7453d/inpoly-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3d2b695468f858a4ecb876872256e24ec810cfd18c4d7c73f155f53c0cc9c773",
"md5": "624529a0f66865565092a4ce582d735b",
"sha256": "0eb439a5bd053ea2c6fc4c397c071cc23880c3338ccc3384fd9108a7716d0577"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp37-cp37m-manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "624529a0f66865565092a4ce582d735b",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.3.0",
"size": 94506,
"upload_time": "2020-12-20T01:06:18",
"upload_time_iso_8601": "2020-12-20T01:06:18.213233Z",
"url": "https://files.pythonhosted.org/packages/3d/2b/695468f858a4ecb876872256e24ec810cfd18c4d7c73f155f53c0cc9c773/inpoly-0.2.0-cp37-cp37m-manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "86577295111d7edd27c6c416026cf0f23ea0dcb895a242764da0d844ba0634d7",
"md5": "a2d5eb894cf8a5dceca49f96ea9bc946",
"sha256": "db7be1739485560c8bed6b1c24ddb8c19fe9e287a856c91fb36177fd81cda871"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp37-cp37m-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "a2d5eb894cf8a5dceca49f96ea9bc946",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.3.0",
"size": 98624,
"upload_time": "2020-12-20T01:06:19",
"upload_time_iso_8601": "2020-12-20T01:06:19.383813Z",
"url": "https://files.pythonhosted.org/packages/86/57/7295111d7edd27c6c416026cf0f23ea0dcb895a242764da0d844ba0634d7/inpoly-0.2.0-cp37-cp37m-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "699155fb30bb724e754065aac5b49a045754ba7e2ef838cfe89f626fbc314584",
"md5": "5aaff1176abf94a347320043c540316c",
"sha256": "3d5834f1007312ca052cda491d8452036fcb1e7fb2fe0ed215dc2890041000c9"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp37-cp37m-manylinux2010_i686.whl",
"has_sig": false,
"md5_digest": "5aaff1176abf94a347320043c540316c",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.3.0",
"size": 94505,
"upload_time": "2020-12-20T01:06:20",
"upload_time_iso_8601": "2020-12-20T01:06:20.258140Z",
"url": "https://files.pythonhosted.org/packages/69/91/55fb30bb724e754065aac5b49a045754ba7e2ef838cfe89f626fbc314584/inpoly-0.2.0-cp37-cp37m-manylinux2010_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "938d8dfb3a862dccc77f09d9b077be2dab6264c57986c339deabbd0b1fe2151d",
"md5": "de20274963c60845a37752d0dce9ca2f",
"sha256": "05e860e94eeaf4e5d076dd0d748256764f4985522e8323e3040dd922e632eb0f"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp37-cp37m-manylinux2010_x86_64.whl",
"has_sig": false,
"md5_digest": "de20274963c60845a37752d0dce9ca2f",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.3.0",
"size": 98626,
"upload_time": "2020-12-20T01:06:21",
"upload_time_iso_8601": "2020-12-20T01:06:21.107746Z",
"url": "https://files.pythonhosted.org/packages/93/8d/8dfb3a862dccc77f09d9b077be2dab6264c57986c339deabbd0b1fe2151d/inpoly-0.2.0-cp37-cp37m-manylinux2010_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d60ddd72138576db33c4add23d9ef5a0985c285072782b9435b1ed6801589c75",
"md5": "7a1727c56618f0391649fa76d03f196d",
"sha256": "a1db6b8538ff3777f6ce04b488faefff5498d5f455b621b8985480322e4c9a86"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "7a1727c56618f0391649fa76d03f196d",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.3.0",
"size": 32077,
"upload_time": "2020-12-20T01:08:26",
"upload_time_iso_8601": "2020-12-20T01:08:26.044365Z",
"url": "https://files.pythonhosted.org/packages/d6/0d/dd72138576db33c4add23d9ef5a0985c285072782b9435b1ed6801589c75/inpoly-0.2.0-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ec8328012e71f9e344bb5665f64a56d8eb57889321eaa175f7f351a0f422d52e",
"md5": "3ebde2b84943f24e6d86b291643fcf40",
"sha256": "0cd58046231070f7a380c41555ade212a4db1757542072db8fc464ab154adf21"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "3ebde2b84943f24e6d86b291643fcf40",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.3.0",
"size": 35349,
"upload_time": "2020-12-20T01:08:26",
"upload_time_iso_8601": "2020-12-20T01:08:26.810420Z",
"url": "https://files.pythonhosted.org/packages/ec/83/28012e71f9e344bb5665f64a56d8eb57889321eaa175f7f351a0f422d52e/inpoly-0.2.0-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cb036bb166e5de97e045a58432a28b069e20f7fab3b970420506cb76f8b28dba",
"md5": "79bc0fde0bbe4f687dad4377a811f439",
"sha256": "0d5a343f5b683c99e696c733e88ce3908bee709cef08a7cc1bf28f8b99419f3a"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "79bc0fde0bbe4f687dad4377a811f439",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.3.0",
"size": 32625,
"upload_time": "2020-12-20T01:08:02",
"upload_time_iso_8601": "2020-12-20T01:08:02.300081Z",
"url": "https://files.pythonhosted.org/packages/cb/03/6bb166e5de97e045a58432a28b069e20f7fab3b970420506cb76f8b28dba/inpoly-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0641cf98fec38613d1fc931375e79af3308b3ead98dda9727e420ac43fb5ee9b",
"md5": "ddfd21df1e7120e23cac1e60ab1593bc",
"sha256": "f4fd2a58307b0fce14fa2a1bf9ac8660f11e4dfa99f856be261c0642ec442725"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp38-cp38-manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "ddfd21df1e7120e23cac1e60ab1593bc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.3.0",
"size": 100034,
"upload_time": "2020-12-20T01:06:21",
"upload_time_iso_8601": "2020-12-20T01:06:21.984675Z",
"url": "https://files.pythonhosted.org/packages/06/41/cf98fec38613d1fc931375e79af3308b3ead98dda9727e420ac43fb5ee9b/inpoly-0.2.0-cp38-cp38-manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b9256ca976449ddcaea6326bb083ed5a72adfaf4f413ba58820985b26ce22ff9",
"md5": "1d8fad299f107d5389ab390a084e489e",
"sha256": "2b1511de0bc3987504994bc86e23780672c30bb8b270e878602492ec8c09be29"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp38-cp38-manylinux1_x86_64.whl",
"has_sig": false,
"md5_digest": "1d8fad299f107d5389ab390a084e489e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.3.0",
"size": 104704,
"upload_time": "2020-12-20T01:06:22",
"upload_time_iso_8601": "2020-12-20T01:06:22.763818Z",
"url": "https://files.pythonhosted.org/packages/b9/25/6ca976449ddcaea6326bb083ed5a72adfaf4f413ba58820985b26ce22ff9/inpoly-0.2.0-cp38-cp38-manylinux1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6d582e43ac2b8f20f85dfafb9674ff7a44723147b2ea113d079a01d53be76e5d",
"md5": "389e4838e57475fe58853acce0305e0c",
"sha256": "6ac0c961e957735cbde634d050b07959a6daa4e841aa92309b2aa13d889ed0a0"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp38-cp38-manylinux2010_i686.whl",
"has_sig": false,
"md5_digest": "389e4838e57475fe58853acce0305e0c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.3.0",
"size": 100037,
"upload_time": "2020-12-20T01:06:23",
"upload_time_iso_8601": "2020-12-20T01:06:23.563399Z",
"url": "https://files.pythonhosted.org/packages/6d/58/2e43ac2b8f20f85dfafb9674ff7a44723147b2ea113d079a01d53be76e5d/inpoly-0.2.0-cp38-cp38-manylinux2010_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e1e179fd04de26961bd2d08e386d0765d537fadc2bb2202e75347b989447ce69",
"md5": "1235b61ff754484a5c096b06d9599128",
"sha256": "ad7f65cb7712b430f4ae38e8c2d32d006f6e60a23797bf2bbcec1ce0c4c32271"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp38-cp38-manylinux2010_x86_64.whl",
"has_sig": false,
"md5_digest": "1235b61ff754484a5c096b06d9599128",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.3.0",
"size": 104705,
"upload_time": "2020-12-20T01:06:24",
"upload_time_iso_8601": "2020-12-20T01:06:24.303158Z",
"url": "https://files.pythonhosted.org/packages/e1/e1/79fd04de26961bd2d08e386d0765d537fadc2bb2202e75347b989447ce69/inpoly-0.2.0-cp38-cp38-manylinux2010_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "739cf96a2b03205ce5c68e65c08fc59ba7d09278b6a96e2f234c85a39b963bcf",
"md5": "4d82cbdbb968fbf4c877823fc7333ce5",
"sha256": "8988c973e3e0050168b330a005dd241c0fb7d1c95c523081b1752fc2ae61c11c"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "4d82cbdbb968fbf4c877823fc7333ce5",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.3.0",
"size": 32201,
"upload_time": "2020-12-20T01:08:27",
"upload_time_iso_8601": "2020-12-20T01:08:27.519175Z",
"url": "https://files.pythonhosted.org/packages/73/9c/f96a2b03205ce5c68e65c08fc59ba7d09278b6a96e2f234c85a39b963bcf/inpoly-0.2.0-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8ac9bdeff716861afa5d4fbd7e15a0fff78d7ae880c53657311412365bb6979f",
"md5": "eac980733360bbb8394055ccc24ad99f",
"sha256": "278d39dadf3a13fc1e6736f708aacab367ca796a454f95c0de2d63896a35162c"
},
"downloads": -1,
"filename": "inpoly-0.2.0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "eac980733360bbb8394055ccc24ad99f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.3.0",
"size": 35683,
"upload_time": "2020-12-20T01:08:28",
"upload_time_iso_8601": "2020-12-20T01:08:28.187651Z",
"url": "https://files.pythonhosted.org/packages/8a/c9/bdeff716861afa5d4fbd7e15a0fff78d7ae880c53657311412365bb6979f/inpoly-0.2.0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2020-12-20 01:07:59",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "dengwirda",
"github_project": "inpoly-python",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"requirements": [],
"lcname": "inpoly"
}