├── .github ├── codecov.yml ├── dependabot.yml └── workflows │ ├── build.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── assets ├── CDA │ └── science │ │ └── ao23 │ │ └── cat9 │ │ └── 25975 │ │ └── primary │ │ └── acisf25975N002_evt2.fits ├── M17 │ └── 502nmos.fits ├── benchmarks │ └── many_hdu.fits └── eagle_nebula │ ├── 502nmos.fits │ └── eagle_composite.jpg ├── benches └── fits_benchmark.rs ├── src ├── coordinates │ ├── frames.rs │ ├── lookup.rs │ ├── lookup_config.rs │ └── mod.rs ├── cosmology │ └── mod.rs ├── fits │ ├── hdu_types.rs │ ├── header.rs │ ├── header_value │ │ ├── bitpix.rs │ │ ├── mod.rs │ │ └── tform.rs │ └── mod.rs └── lib.rs └── tests ├── coordinates.rs └── fits.rs /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/README.md -------------------------------------------------------------------------------- /assets/CDA/science/ao23/cat9/25975/primary/acisf25975N002_evt2.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/assets/CDA/science/ao23/cat9/25975/primary/acisf25975N002_evt2.fits -------------------------------------------------------------------------------- /assets/M17/502nmos.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/assets/M17/502nmos.fits -------------------------------------------------------------------------------- /assets/benchmarks/many_hdu.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/assets/benchmarks/many_hdu.fits -------------------------------------------------------------------------------- /assets/eagle_nebula/502nmos.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/assets/eagle_nebula/502nmos.fits -------------------------------------------------------------------------------- /assets/eagle_nebula/eagle_composite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/assets/eagle_nebula/eagle_composite.jpg -------------------------------------------------------------------------------- /benches/fits_benchmark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/benches/fits_benchmark.rs -------------------------------------------------------------------------------- /src/coordinates/frames.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/src/coordinates/frames.rs -------------------------------------------------------------------------------- /src/coordinates/lookup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/src/coordinates/lookup.rs -------------------------------------------------------------------------------- /src/coordinates/lookup_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/src/coordinates/lookup_config.rs -------------------------------------------------------------------------------- /src/coordinates/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/src/coordinates/mod.rs -------------------------------------------------------------------------------- /src/cosmology/mod.rs: -------------------------------------------------------------------------------- 1 | //! Represent and calculate data using cosmological models. 2 | -------------------------------------------------------------------------------- /src/fits/hdu_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/src/fits/hdu_types.rs -------------------------------------------------------------------------------- /src/fits/header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/src/fits/header.rs -------------------------------------------------------------------------------- /src/fits/header_value/bitpix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/src/fits/header_value/bitpix.rs -------------------------------------------------------------------------------- /src/fits/header_value/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/src/fits/header_value/mod.rs -------------------------------------------------------------------------------- /src/fits/header_value/tform.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/src/fits/header_value/tform.rs -------------------------------------------------------------------------------- /src/fits/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/src/fits/mod.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/coordinates.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/tests/coordinates.rs -------------------------------------------------------------------------------- /tests/fits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eta077/astro-rs/HEAD/tests/fits.rs --------------------------------------------------------------------------------