lsst-sphgeom


Namelsst-sphgeom JSON
Version 26.2024.1700 PyPI version JSON
download
home_pageNone
SummaryA spherical geometry library.
upload_time2024-04-25 17:37:33
maintainerNone
docs_urlNone
authorNone
requires_pythonNone
licenseBSD 3-Clause License
keywords lsst
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            sphgeom: spherical geometry primitives
======================================

Overview
--------

This low-level C++ library provides primitives for representing points and
regions on the unit sphere, as well as support for partitioning the sphere.
It can be used to answer the following sorts of questions:

  - *Is point X inside region Y?*
  - *Do two regions A and B intersect?*
  - *Which pieces of the sphere does region C overlap?*

Regions can be serialized to binary strings, so that they may be stored
efficiently in files or VARBINARY database columns. They can also be
approximated with simpler regions - for example, one can ask for the
bounding circle of a convex polygon.

Python bindings that expose most of the C++ API are also provided via
[pybind11](https://pybind11.readthedocs.io/).

Points
------

There are 3 different classes for points

  - *LonLat* for spherical coordinates,
  - *Vector3d* for Cartesian vectors in ℝ³ (not constrained to lie on the unit sphere)
  - *UnitVector3d* for vectors in ℝ³ with unit ℓ² norm.

Regions
-------

Four basic spherical *Region* types are
provided:

  - *Box*, a longitude/latitude angle box
  - *Circle*, a small circle defined by a center and opening angle/chord length
  - *Ellipse*, the intersection of an elliptical cone with the unit sphere
  - *ConvexPolygon*, a convex spherical polygon with unit vector vertices and great circle edges

In addition to the spherical regions, there is a type for 3-D axis aligned
boxes, *Box3d*. All spherical regions know how
to compute their 3-D bounding boxes, which makes it possible to insert them
into a 3-D [R-tree](https://en.wikipedia.org/wiki/R-tree). This is used by the
exposure indexing task in the [daf_ingest](https://github.com/lsst/daf_ingest)
package to spatially index exposure bounding polygons using the
[SQLite](https://sqlite.org) 3
[R*tree module](https://www.sqlite.org/rtree.html).

A region can also determine its spatial
relationship to another region, and
test whether or not it contains a given unit vector.

Pixelizations
-------------

This library also provides support for assigning points to pixels (a.k.a.
cells or partitions) in a *Pixelization*
(a.k.a. partitioning) of the sphere, and for determining which pixels
intersect a region.

Currently, the *Chunker*  class implements
the partitioning scheme employed by [Qserv](https://github.com/lsst/qserv).
The *HtmPixelization*  class implements
the HTM (Hierarchical Triangular Mesh) pixelization. The
*Q3cPixelization* and *Mq3cPixelization* classes implement
the original Quad Tree Cube indexing scheme and a modified version with
reduced pixel area variation.

Installing with pip
-------------------

A simple pip-compatible installer is available.  This only installs the
Python bindings and the resulting installation is not usable for linking
from C++.  Some metadata (in particular the version number) are not set
properly for the distribution.  The main purpose for now is to allow
other packages to pip install from the GitHub URL in their CI systems
where sphgeom is a dependency.

See Also
--------

#### Contributing

For instructions on how to contribute, see http://dm.lsst.org/#contributing
(or just send us a pull request).

#### Support

For help, see http://dm.lsst.org/#support.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "lsst-sphgeom",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "lsst",
    "author": null,
    "author_email": "Rubin Observatory Data Management <dm-admin@lists.lsst.org>",
    "download_url": "https://files.pythonhosted.org/packages/4a/d3/cdea1140661e45f1090482df5acbdbfa31330e9847f87f1dac92f89ecd10/lsst_sphgeom-26.2024.1700.tar.gz",
    "platform": null,
    "description": "sphgeom: spherical geometry primitives\n======================================\n\nOverview\n--------\n\nThis low-level C++ library provides primitives for representing points and\nregions on the unit sphere, as well as support for partitioning the sphere.\nIt can be used to answer the following sorts of questions:\n\n  - *Is point X inside region Y?*\n  - *Do two regions A and B intersect?*\n  - *Which pieces of the sphere does region C overlap?*\n\nRegions can be serialized to binary strings, so that they may be stored\nefficiently in files or VARBINARY database columns. They can also be\napproximated with simpler regions - for example, one can ask for the\nbounding circle of a convex polygon.\n\nPython bindings that expose most of the C++ API are also provided via\n[pybind11](https://pybind11.readthedocs.io/).\n\nPoints\n------\n\nThere are 3 different classes for points\n\n  - *LonLat* for spherical coordinates,\n  - *Vector3d* for Cartesian vectors in \u211d\u00b3 (not constrained to lie on the unit sphere)\n  - *UnitVector3d* for vectors in \u211d\u00b3 with unit \u2113\u00b2 norm.\n\nRegions\n-------\n\nFour basic spherical *Region* types are\nprovided:\n\n  - *Box*, a longitude/latitude angle box\n  - *Circle*, a small circle defined by a center and opening angle/chord length\n  - *Ellipse*, the intersection of an elliptical cone with the unit sphere\n  - *ConvexPolygon*, a convex spherical polygon with unit vector vertices and great circle edges\n\nIn addition to the spherical regions, there is a type for 3-D axis aligned\nboxes, *Box3d*. All spherical regions know how\nto compute their 3-D bounding boxes, which makes it possible to insert them\ninto a 3-D [R-tree](https://en.wikipedia.org/wiki/R-tree). This is used by the\nexposure indexing task in the [daf_ingest](https://github.com/lsst/daf_ingest)\npackage to spatially index exposure bounding polygons using the\n[SQLite](https://sqlite.org) 3\n[R*tree module](https://www.sqlite.org/rtree.html).\n\nA region can also determine its spatial\nrelationship to another region, and\ntest whether or not it contains a given unit vector.\n\nPixelizations\n-------------\n\nThis library also provides support for assigning points to pixels (a.k.a.\ncells or partitions) in a *Pixelization*\n(a.k.a. partitioning) of the sphere, and for determining which pixels\nintersect a region.\n\nCurrently, the *Chunker*  class implements\nthe partitioning scheme employed by [Qserv](https://github.com/lsst/qserv).\nThe *HtmPixelization*  class implements\nthe HTM (Hierarchical Triangular Mesh) pixelization. The\n*Q3cPixelization* and *Mq3cPixelization* classes implement\nthe original Quad Tree Cube indexing scheme and a modified version with\nreduced pixel area variation.\n\nInstalling with pip\n-------------------\n\nA simple pip-compatible installer is available.  This only installs the\nPython bindings and the resulting installation is not usable for linking\nfrom C++.  Some metadata (in particular the version number) are not set\nproperly for the distribution.  The main purpose for now is to allow\nother packages to pip install from the GitHub URL in their CI systems\nwhere sphgeom is a dependency.\n\nSee Also\n--------\n\n#### Contributing\n\nFor instructions on how to contribute, see http://dm.lsst.org/#contributing\n(or just send us a pull request).\n\n#### Support\n\nFor help, see http://dm.lsst.org/#support.\n",
    "bugtrack_url": null,
    "license": "BSD 3-Clause License",
    "summary": "A spherical geometry library.",
    "version": "26.2024.1700",
    "project_urls": {
        "Homepage": "https://github.com/lsst/sphgeom"
    },
    "split_keywords": [
        "lsst"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c7dacb49b4872215beb4c26bef51827d8e90b2cf6eda023af945ac855b9774d",
                "md5": "7147392abee27924515e8243b81145e1",
                "sha256": "8a2f18874cae0d7c3868b4c617faed9221b1a122d1905b7f2322b45eb6382fd0"
            },
            "downloads": -1,
            "filename": "lsst_sphgeom-26.2024.1700-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7147392abee27924515e8243b81145e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 538670,
            "upload_time": "2024-04-25T17:36:42",
            "upload_time_iso_8601": "2024-04-25T17:36:42.332878Z",
            "url": "https://files.pythonhosted.org/packages/1c/7d/acb49b4872215beb4c26bef51827d8e90b2cf6eda023af945ac855b9774d/lsst_sphgeom-26.2024.1700-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be6dcbd48b9c1d1ef91bea256d517dab24eb70a2b7ebf9fdfba82a6cad2ff9aa",
                "md5": "25b9f6247bc4b49db979c7eb0c107dce",
                "sha256": "4931818b23b7f60f2cb9d75d2de9b718a56fba506ed2869a52ba15862a9e4fdf"
            },
            "downloads": -1,
            "filename": "lsst_sphgeom-26.2024.1700-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "25b9f6247bc4b49db979c7eb0c107dce",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 517649,
            "upload_time": "2024-04-25T17:36:45",
            "upload_time_iso_8601": "2024-04-25T17:36:45.097522Z",
            "url": "https://files.pythonhosted.org/packages/be/6d/cbd48b9c1d1ef91bea256d517dab24eb70a2b7ebf9fdfba82a6cad2ff9aa/lsst_sphgeom-26.2024.1700-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18e2109d688a2ff2663784d304f425d6d81dcc20eb033734c69729076f3eff24",
                "md5": "ec082eb10f07ddead5e595fdc3490879",
                "sha256": "3f919922aa541e8bbaaa64786bd82c3c2df60739a69bd7dfcb94b55350b781c9"
            },
            "downloads": -1,
            "filename": "lsst_sphgeom-26.2024.1700-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ec082eb10f07ddead5e595fdc3490879",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 709276,
            "upload_time": "2024-04-25T17:36:46",
            "upload_time_iso_8601": "2024-04-25T17:36:46.588768Z",
            "url": "https://files.pythonhosted.org/packages/18/e2/109d688a2ff2663784d304f425d6d81dcc20eb033734c69729076f3eff24/lsst_sphgeom-26.2024.1700-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e85a91985233886f9d62e556cab5228317b74234e5c9fcd6ceaf7d2bd3b2ee58",
                "md5": "6d50ddf3123e793eda3bc8c77f8aa3b8",
                "sha256": "11671bf72c6ac58ce686c1cee2dc05eb0012dd89717a7d2d5fd42e3c7170c124"
            },
            "downloads": -1,
            "filename": "lsst_sphgeom-26.2024.1700-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6d50ddf3123e793eda3bc8c77f8aa3b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 540384,
            "upload_time": "2024-04-25T17:36:55",
            "upload_time_iso_8601": "2024-04-25T17:36:55.625167Z",
            "url": "https://files.pythonhosted.org/packages/e8/5a/91985233886f9d62e556cab5228317b74234e5c9fcd6ceaf7d2bd3b2ee58/lsst_sphgeom-26.2024.1700-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f06941b088b6a73a606c44defedaa28940d4fa7b05550a9a01b74b4c7f45a53",
                "md5": "a47cdd57a4ace0b52e5af2829c1bd0d2",
                "sha256": "a524e0f0a4985155bd4c1ec8f8ddcd6bc814229535effc05acc08cbb68be87a7"
            },
            "downloads": -1,
            "filename": "lsst_sphgeom-26.2024.1700-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a47cdd57a4ace0b52e5af2829c1bd0d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 518858,
            "upload_time": "2024-04-25T17:36:57",
            "upload_time_iso_8601": "2024-04-25T17:36:57.780131Z",
            "url": "https://files.pythonhosted.org/packages/0f/06/941b088b6a73a606c44defedaa28940d4fa7b05550a9a01b74b4c7f45a53/lsst_sphgeom-26.2024.1700-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0b0a821620265b50d68c28da932f1603bb01cebc91d8096fdc1f6a76a4fbba3f",
                "md5": "9d3c9c5534a9dc994e2b3b19fd2e8425",
                "sha256": "30e98cc244c19e310c8a3ed8d07c958c553f6504c65f41f91a51449c5609332d"
            },
            "downloads": -1,
            "filename": "lsst_sphgeom-26.2024.1700-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9d3c9c5534a9dc994e2b3b19fd2e8425",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 713862,
            "upload_time": "2024-04-25T17:36:59",
            "upload_time_iso_8601": "2024-04-25T17:36:59.275284Z",
            "url": "https://files.pythonhosted.org/packages/0b/0a/821620265b50d68c28da932f1603bb01cebc91d8096fdc1f6a76a4fbba3f/lsst_sphgeom-26.2024.1700-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "727a354cbfa7ec02a4a6d83af6978fec49a04cba003d13913a61e34875c974ad",
                "md5": "7c185a24b6059395cad92da57e595494",
                "sha256": "d0dcf322cc53c02b08bcfe7eb9ed1ba9781f3c7def4257882219705e34855b3f"
            },
            "downloads": -1,
            "filename": "lsst_sphgeom-26.2024.1700-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7c185a24b6059395cad92da57e595494",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 557841,
            "upload_time": "2024-04-25T17:37:00",
            "upload_time_iso_8601": "2024-04-25T17:37:00.783788Z",
            "url": "https://files.pythonhosted.org/packages/72/7a/354cbfa7ec02a4a6d83af6978fec49a04cba003d13913a61e34875c974ad/lsst_sphgeom-26.2024.1700-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e28fe0e4f6e2bbe24d98b93ec56191c41ae4a08952f64fab716faf6329ccc248",
                "md5": "0cfecb44b77a1c8f7d41d50c12c1afba",
                "sha256": "60be69861416c3a96dfc62ae8fa7311467398561d5b3ee61466833ecabc62bf2"
            },
            "downloads": -1,
            "filename": "lsst_sphgeom-26.2024.1700-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0cfecb44b77a1c8f7d41d50c12c1afba",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 523238,
            "upload_time": "2024-04-25T17:37:07",
            "upload_time_iso_8601": "2024-04-25T17:37:07.066623Z",
            "url": "https://files.pythonhosted.org/packages/e2/8f/e0e4f6e2bbe24d98b93ec56191c41ae4a08952f64fab716faf6329ccc248/lsst_sphgeom-26.2024.1700-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c21b01bb7290f78fc3aa2b0c1cd06f9c820c70ee783210df3f932b0a56c797bc",
                "md5": "2259bc06f0872bfd102208064f396e78",
                "sha256": "312cab49f8e8fc7746441eca0b62b439d10fadc550baf4d726479cc6ccb829ef"
            },
            "downloads": -1,
            "filename": "lsst_sphgeom-26.2024.1700-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2259bc06f0872bfd102208064f396e78",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 707838,
            "upload_time": "2024-04-25T17:37:08",
            "upload_time_iso_8601": "2024-04-25T17:37:08.863907Z",
            "url": "https://files.pythonhosted.org/packages/c2/1b/01bb7290f78fc3aa2b0c1cd06f9c820c70ee783210df3f932b0a56c797bc/lsst_sphgeom-26.2024.1700-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e501393bfb1c21e01f514478c9a0566a65ab5f5968737899f3dccc87edf911d",
                "md5": "8e047a14308370febdd790a26c0414bd",
                "sha256": "1945e70c99efcfb8950b97ed97ea98287932cc8369070a8161933db6a87226c2"
            },
            "downloads": -1,
            "filename": "lsst_sphgeom-26.2024.1700-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e047a14308370febdd790a26c0414bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 538526,
            "upload_time": "2024-04-25T17:37:11",
            "upload_time_iso_8601": "2024-04-25T17:37:11.085913Z",
            "url": "https://files.pythonhosted.org/packages/5e/50/1393bfb1c21e01f514478c9a0566a65ab5f5968737899f3dccc87edf911d/lsst_sphgeom-26.2024.1700-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "507eaaa7ba0de23eb6b52bd87605409b2b00fea067b3670e79929ccfcddb0b79",
                "md5": "c7a549fb48a07126f723de83b8113707",
                "sha256": "871e2c97410b1067833f7e61a4a7208e00e61d6f53ac10df3f574cfc1b511d02"
            },
            "downloads": -1,
            "filename": "lsst_sphgeom-26.2024.1700-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c7a549fb48a07126f723de83b8113707",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 517546,
            "upload_time": "2024-04-25T17:37:12",
            "upload_time_iso_8601": "2024-04-25T17:37:12.732870Z",
            "url": "https://files.pythonhosted.org/packages/50/7e/aaa7ba0de23eb6b52bd87605409b2b00fea067b3670e79929ccfcddb0b79/lsst_sphgeom-26.2024.1700-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cab4c96e4c3ef4a0e06ca525caffa6643935f660d3237c9d3a07ba9f09cc5bba",
                "md5": "739a670df7ad75400d776f03dc6622c9",
                "sha256": "624bb3843efea4aaaf08911ff4a38a433792e6fd4d8fe758a8104066e56c1ace"
            },
            "downloads": -1,
            "filename": "lsst_sphgeom-26.2024.1700-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "739a670df7ad75400d776f03dc6622c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 708233,
            "upload_time": "2024-04-25T17:37:19",
            "upload_time_iso_8601": "2024-04-25T17:37:19.699552Z",
            "url": "https://files.pythonhosted.org/packages/ca/b4/c96e4c3ef4a0e06ca525caffa6643935f660d3237c9d3a07ba9f09cc5bba/lsst_sphgeom-26.2024.1700-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf810c90740fec406a151dbeb296f4d27514bc1766f442e173a3534af891bb05",
                "md5": "fe75f2b35e2c29a7af5f204556c8bdd4",
                "sha256": "2bbb1dcaee3c6895a8228b39a4f06003bb2858e73b20e747a7cb69674d17e5df"
            },
            "downloads": -1,
            "filename": "lsst_sphgeom-26.2024.1700-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fe75f2b35e2c29a7af5f204556c8bdd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 538792,
            "upload_time": "2024-04-25T17:37:21",
            "upload_time_iso_8601": "2024-04-25T17:37:21.976138Z",
            "url": "https://files.pythonhosted.org/packages/bf/81/0c90740fec406a151dbeb296f4d27514bc1766f442e173a3534af891bb05/lsst_sphgeom-26.2024.1700-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "12bae331201ea73a54e776b9b00fd2f0ad932cb9f12c975e2d432bcca3469414",
                "md5": "02aea50acde14cfca12d2f959570dcee",
                "sha256": "15dc0e603b38d169e845a21e963c6f2093ad9737e839220789d497c0d5843a84"
            },
            "downloads": -1,
            "filename": "lsst_sphgeom-26.2024.1700-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "02aea50acde14cfca12d2f959570dcee",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 517736,
            "upload_time": "2024-04-25T17:37:23",
            "upload_time_iso_8601": "2024-04-25T17:37:23.782188Z",
            "url": "https://files.pythonhosted.org/packages/12/ba/e331201ea73a54e776b9b00fd2f0ad932cb9f12c975e2d432bcca3469414/lsst_sphgeom-26.2024.1700-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f50e05f8c6503c4b64450f65b17a4ea00fa253923d9151fddbb28d0399b46797",
                "md5": "c2ccdefa547d56d7c6cfbe5b8e66cbb5",
                "sha256": "5a03fb65ae390ec47beaf2e3fc2764b2f8cafdfdd33351df368cfcb2cb82db36"
            },
            "downloads": -1,
            "filename": "lsst_sphgeom-26.2024.1700-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c2ccdefa547d56d7c6cfbe5b8e66cbb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 714436,
            "upload_time": "2024-04-25T17:37:31",
            "upload_time_iso_8601": "2024-04-25T17:37:31.470122Z",
            "url": "https://files.pythonhosted.org/packages/f5/0e/05f8c6503c4b64450f65b17a4ea00fa253923d9151fddbb28d0399b46797/lsst_sphgeom-26.2024.1700-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ad3cdea1140661e45f1090482df5acbdbfa31330e9847f87f1dac92f89ecd10",
                "md5": "410d83b651061a43d6dbefb3ad1f8004",
                "sha256": "9d9aa358ddffba8738d127b398e100380c402ca6b683f13a19641ae19ff8fe92"
            },
            "downloads": -1,
            "filename": "lsst_sphgeom-26.2024.1700.tar.gz",
            "has_sig": false,
            "md5_digest": "410d83b651061a43d6dbefb3ad1f8004",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 144354,
            "upload_time": "2024-04-25T17:37:33",
            "upload_time_iso_8601": "2024-04-25T17:37:33.534639Z",
            "url": "https://files.pythonhosted.org/packages/4a/d3/cdea1140661e45f1090482df5acbdbfa31330e9847f87f1dac92f89ecd10/lsst_sphgeom-26.2024.1700.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-25 17:37:33",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "lsst",
    "github_project": "sphgeom",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "lsst-sphgeom"
}
        
Elapsed time: 0.29332s