├── .git_archival.txt ├── .gitattributes ├── .github └── workflows │ ├── python-package-pr.yml │ ├── python-package-publish.yml │ └── python-package-push.yml ├── .gitignore ├── .readthedocs.yml ├── CHANGES.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── api_changes_to_1.0.md ├── docs ├── Makefile ├── basic_interface.rst ├── concatenation.rst ├── conf.py ├── filespec.rst ├── geometry.rst ├── index.rst ├── install.rst ├── make.bat ├── modules.rst ├── operations.rst ├── quickstart.rst ├── randoms.rst └── requirements.txt ├── healsparse ├── __init__.py ├── cat_healsparse_files.py ├── fits_shim.py ├── geom.py ├── healSparseCoverage.py ├── healSparseMap.py ├── healSparseRandoms.py ├── io_coverage.py ├── io_coverage_fits.py ├── io_coverage_parquet.py ├── io_map.py ├── io_map_fits.py ├── io_map_healpix.py ├── io_map_parquet.py ├── operations.py ├── packedBoolArray.py ├── parquet_shim.py └── utils.py ├── long_description.md ├── pyproject.toml ├── requirements.txt ├── setup.cfg ├── tests ├── test_applymask.py ├── test_astype.py ├── test_boolean_operations.py ├── test_buildmaps.py ├── test_cat_files.py ├── test_coverage_map.py ├── test_coverage_mask.py ├── test_degrade.py ├── test_emptypixels.py ├── test_fits_shim.py ├── test_fracdet_map.py ├── test_from_healpix.py ├── test_generate_healpix.py ├── test_geom.py ├── test_getset.py ├── test_healSparseCoverage.py ├── test_healpix_io.py ├── test_interpolation.py ├── test_io.py ├── test_io_parquet.py ├── test_lookup.py ├── test_metadata.py ├── test_moc.py ├── test_operations.py ├── test_packedboolarray.py ├── test_pixel_ranges.py ├── test_randoms.py ├── test_recarray.py ├── test_single_covpix.py ├── test_single_datatypes.py ├── test_singlevalues.py ├── test_update_values.py ├── test_upgrade.py ├── test_validarea.py └── test_widemasks.py ├── tutorial └── quickstart.ipynb └── ups └── healsparse.table /.git_archival.txt: -------------------------------------------------------------------------------- 1 | ref-names: HEAD -> main, tag: 1.11.1 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | .git_archival.txt export-subst 2 | -------------------------------------------------------------------------------- /.github/workflows/python-package-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/.github/workflows/python-package-pr.yml -------------------------------------------------------------------------------- /.github/workflows/python-package-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/.github/workflows/python-package-publish.yml -------------------------------------------------------------------------------- /.github/workflows/python-package-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/.github/workflows/python-package-push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/README.md -------------------------------------------------------------------------------- /api_changes_to_1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/api_changes_to_1.0.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/basic_interface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/docs/basic_interface.rst -------------------------------------------------------------------------------- /docs/concatenation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/docs/concatenation.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/filespec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/docs/filespec.rst -------------------------------------------------------------------------------- /docs/geometry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/docs/geometry.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/operations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/docs/operations.rst -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/randoms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/docs/randoms.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /healsparse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/healsparse/__init__.py -------------------------------------------------------------------------------- /healsparse/cat_healsparse_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/healsparse/cat_healsparse_files.py -------------------------------------------------------------------------------- /healsparse/fits_shim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/healsparse/fits_shim.py -------------------------------------------------------------------------------- /healsparse/geom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/healsparse/geom.py -------------------------------------------------------------------------------- /healsparse/healSparseCoverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/healsparse/healSparseCoverage.py -------------------------------------------------------------------------------- /healsparse/healSparseMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/healsparse/healSparseMap.py -------------------------------------------------------------------------------- /healsparse/healSparseRandoms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/healsparse/healSparseRandoms.py -------------------------------------------------------------------------------- /healsparse/io_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/healsparse/io_coverage.py -------------------------------------------------------------------------------- /healsparse/io_coverage_fits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/healsparse/io_coverage_fits.py -------------------------------------------------------------------------------- /healsparse/io_coverage_parquet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/healsparse/io_coverage_parquet.py -------------------------------------------------------------------------------- /healsparse/io_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/healsparse/io_map.py -------------------------------------------------------------------------------- /healsparse/io_map_fits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/healsparse/io_map_fits.py -------------------------------------------------------------------------------- /healsparse/io_map_healpix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/healsparse/io_map_healpix.py -------------------------------------------------------------------------------- /healsparse/io_map_parquet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/healsparse/io_map_parquet.py -------------------------------------------------------------------------------- /healsparse/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/healsparse/operations.py -------------------------------------------------------------------------------- /healsparse/packedBoolArray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/healsparse/packedBoolArray.py -------------------------------------------------------------------------------- /healsparse/parquet_shim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/healsparse/parquet_shim.py -------------------------------------------------------------------------------- /healsparse/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/healsparse/utils.py -------------------------------------------------------------------------------- /long_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/long_description.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/test_applymask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_applymask.py -------------------------------------------------------------------------------- /tests/test_astype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_astype.py -------------------------------------------------------------------------------- /tests/test_boolean_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_boolean_operations.py -------------------------------------------------------------------------------- /tests/test_buildmaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_buildmaps.py -------------------------------------------------------------------------------- /tests/test_cat_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_cat_files.py -------------------------------------------------------------------------------- /tests/test_coverage_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_coverage_map.py -------------------------------------------------------------------------------- /tests/test_coverage_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_coverage_mask.py -------------------------------------------------------------------------------- /tests/test_degrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_degrade.py -------------------------------------------------------------------------------- /tests/test_emptypixels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_emptypixels.py -------------------------------------------------------------------------------- /tests/test_fits_shim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_fits_shim.py -------------------------------------------------------------------------------- /tests/test_fracdet_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_fracdet_map.py -------------------------------------------------------------------------------- /tests/test_from_healpix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_from_healpix.py -------------------------------------------------------------------------------- /tests/test_generate_healpix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_generate_healpix.py -------------------------------------------------------------------------------- /tests/test_geom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_geom.py -------------------------------------------------------------------------------- /tests/test_getset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_getset.py -------------------------------------------------------------------------------- /tests/test_healSparseCoverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_healSparseCoverage.py -------------------------------------------------------------------------------- /tests/test_healpix_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_healpix_io.py -------------------------------------------------------------------------------- /tests/test_interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_interpolation.py -------------------------------------------------------------------------------- /tests/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_io.py -------------------------------------------------------------------------------- /tests/test_io_parquet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_io_parquet.py -------------------------------------------------------------------------------- /tests/test_lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_lookup.py -------------------------------------------------------------------------------- /tests/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_metadata.py -------------------------------------------------------------------------------- /tests/test_moc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_moc.py -------------------------------------------------------------------------------- /tests/test_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_operations.py -------------------------------------------------------------------------------- /tests/test_packedboolarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_packedboolarray.py -------------------------------------------------------------------------------- /tests/test_pixel_ranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_pixel_ranges.py -------------------------------------------------------------------------------- /tests/test_randoms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_randoms.py -------------------------------------------------------------------------------- /tests/test_recarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_recarray.py -------------------------------------------------------------------------------- /tests/test_single_covpix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_single_covpix.py -------------------------------------------------------------------------------- /tests/test_single_datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_single_datatypes.py -------------------------------------------------------------------------------- /tests/test_singlevalues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_singlevalues.py -------------------------------------------------------------------------------- /tests/test_update_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_update_values.py -------------------------------------------------------------------------------- /tests/test_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_upgrade.py -------------------------------------------------------------------------------- /tests/test_validarea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_validarea.py -------------------------------------------------------------------------------- /tests/test_widemasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tests/test_widemasks.py -------------------------------------------------------------------------------- /tutorial/quickstart.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/tutorial/quickstart.ipynb -------------------------------------------------------------------------------- /ups/healsparse.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LSSTDESC/healsparse/HEAD/ups/healsparse.table --------------------------------------------------------------------------------