-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into radius_update
- Loading branch information
Showing
469 changed files
with
2,958,852 additions
and
36,977 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
## Licensing | ||
This project is mostly composed of free and unencumbered software released into the public domain, and we are unlikely to accept contributions that are not also released into the public domain. Somewhere near the top of each file should have these words: | ||
|
||
> This work is free and unencumbered software released into the public domain. In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. | ||
- [ ] I dedicate any and all copyright interest in this software to the public domain. I make this dedication for the benefit of the public at large and to the detriment of my heirs and successors. I intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: aws-doc-deploy | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["Pull-Request-CI"] | ||
branches: [main] | ||
types: | ||
- completed | ||
|
||
jobs: | ||
deploy: | ||
if: ${{ github.event.workflow_run.conclusion == 'success' }} | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
shell: bash -el {0} | ||
steps: | ||
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 | ||
with: | ||
submodules: true | ||
fetch-depth: 0 | ||
- uses: conda-incubator/setup-miniconda@3b0f2504dd76ef23b6d31f291f4913fb60ab5ff3 | ||
with: | ||
miniconda-version: "latest" | ||
activate-environment: ale | ||
environment-file: doc_environment.yml | ||
auto-activate-base: false | ||
auto-update-conda: true | ||
|
||
- name: Check doc build environment | ||
run: | | ||
conda list | ||
- name: Build Docs | ||
run: | | ||
cd docs | ||
doxygen Doxyfile.in | ||
sphinx-build -b html . public | ||
- name: Set AWS credentials for upload | ||
uses: aws-actions/configure-aws-credentials@0e613a0980cbf65ed5b322eb7a1e075d28913a83 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: us-west-2 | ||
|
||
- name: Upload to S3 | ||
working-directory: docs | ||
run: aws s3 sync --delete public s3://asc-public-docs/software_manuals/ale/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
image: ubuntu:18.04 | ||
|
||
clone_github: | ||
stage: deploy | ||
before_script: | ||
- apt-get update -y && apt-get install openssh-client -y | ||
- apt install git -y | ||
- eval $(ssh-agent -s) | ||
- echo "$GIT_SSH_PRIVATE_KEY" | openssl base64 -A -d | ssh-add - | ||
- mkdir -p ~/.ssh | ||
- chmod 700 ~/.ssh | ||
- ssh-keyscan $GIT_LAB_HOST >> ~/.ssh/known_hosts | ||
- chmod 644 ~/.ssh/known_hosts | ||
- git config --global user.name "${GIT_USER_NAME}" | ||
- git config --global user.email "${GIT_USER_EMAIL}" | ||
- ssh "git@$GIT_LAB_HOST" | ||
script: | ||
- echo $SOURCE_REPOSITORY | ||
- git config --global http.sslVerify false # Epic.... | ||
- rm -rf ale # Needed to allow multiple CI runs | ||
- git clone --mirror $SOURCE_REPOSITORY ale | ||
- cd ale | ||
- git remote remove origin | ||
- git remote add origin $DESTINATION_REPOSITORY | ||
- git push -f --prune --all | ||
- git push -f --prune --tags | ||
only: | ||
- branches |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
# Changelog | ||
|
||
All changes that impact users of this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
<!--- | ||
This document is intended for users of the applications and API. Changes to things | ||
like tests should not be noted in this document. | ||
When updating this file for a PR, add an entry for your change under Unreleased | ||
and one of the following headings: | ||
- Added - for new features. | ||
- Changed - for changes in existing functionality. | ||
- Deprecated - for soon-to-be removed features. | ||
- Removed - for now removed features. | ||
- Fixed - for any bug fixes. | ||
- Security - in case of vulnerabilities. | ||
If the heading does not yet exist under Unreleased, then add it as a 3rd heading, | ||
with three #. | ||
When preparing for a public release candidate add a new 2nd heading, with two #, under | ||
Unreleased with the version number and the release date, in year-month-day | ||
format. Then, add a link for the new version at the bottom of this document and | ||
update the Unreleased link so that it compares against the latest release tag. | ||
When preparing for a bug fix release create a new 2nd heading above the Fixed | ||
heading to indicate that only the bug fixes and security fixes are in the bug fix | ||
release. | ||
--> | ||
|
||
## [Unreleased] | ||
### Changed | ||
- Enabled Hayabusa2 drivers [#596](https://github.com/DOI-USGS/ale/pull/596) | ||
- Enabled Juno drivers [#597](https://github.com/DOI-USGS/ale/pull/597) | ||
- Enabled Odyssey drivers [#582](https://github.com/DOI-USGS/ale/pull/582) | ||
|
||
### Added | ||
- Apollo Metric drivers, tests, and data [#533](https://github.com/DOI-USGS/ale/pull/533) | ||
- Rosetta Virtis drivers, tests, and data [#520](https://github.com/DOI-USGS/ale/pull/520) | ||
- Added compress and decompress ISD functions and added --compress flag to isd_generate[#604](https://github.com/DOI-USGS/ale/issues/604) | ||
- LO Medium Camera drivers, tests, and data [#613](https://github.com/DOI-USGS/ale/issues/613) | ||
- Added the ability to generate ISDs with no velocities specified for instrument/sun position [#614](https://github.com/DOI-USGS/ale/issues/614) | ||
|
||
### Changed | ||
- Changed how push frame sensor drivers compute the `ephemeris_time` property [#595](https://github.com/DOI-USGS/ale/pull/595) | ||
|
||
### Fixed | ||
- Fixed landed sensors to correctly project locally [#590](https://github.com/DOI-USGS/ale/pull/590) | ||
- Fixed Hayabusa amica center time computation to match ISIS [#592](https://github.com/DOI-USGS/ale/pull/592) | ||
- Set Lunar Oribter abberation correction to None as it is in ISIS [#593](https://github.com/DOI-USGS/ale/pull/593) | ||
- Fixed missing sensor_model_version attribute on NewHorizonsLorriIsisLabelNaifSpiceDriver [#583](https://github.com/DOI-USGS/ale/pull/583) | ||
- Fixed missing sensor_model_version attribute on VikingIsisLabelNaifSpiceDriver [#583](https://github.com/DOI-USGS/ale/pull/583) | ||
- Fixed incorrect distortion look up in Orex camera when working with PolyCam images [#583](https://github.com/DOI-USGS/ale/pull/583) | ||
- Brought timing in line with ISIS for the KaguyaMiIsisLabelNaifSpiceDriver [#599](https://github.com/DOI-USGS/ale/pull/599) | ||
- Brought timing in line with ISIS for the MroMarciIsisLabelNaifSpiceDriver [#600](https://github.com/DOI-USGS/ale/pull/600) | ||
|
||
## [0.10.0] - 2024-01-08 | ||
|
||
### Added | ||
|
||
- Mariner10 IsisLabelNaifSpice driver, tests, and test data [#547](https://github.com/DOI-USGS/ale/pull/547) | ||
- Clementine UVVIS IsisLabelNaifSpice driver, tests, and test data [#546](https://github.com/DOI-USGS/ale/pull/546) | ||
- Clementine LWIR, NIR, and HIRES IsisLabelNaifSpice driver, tests, and test data [#565](https://github.com/DOI-USGS/ale/pull/565) | ||
- Hayabusa NIRS IsisLabelNaifSpice driver, tests and test data [#532](https://github.com/DOI-USGS/ale/pull/532) | ||
- LO HighCamera IsisLabelNaifSpice driver, tests and test data [#533](https://github.com/DOI-USGS/ale/pull/553) | ||
- DawnFC IsisLabelNaifSpice driver, tests, and test data [#567](https://github.com/DOI-USGS/ale/pull/567) | ||
- DawnVIR IsisLabelNaifSpice driver, tests, and test data [#566](https://github.com/DOI-USGS/ale/pull/566) | ||
- Added Local option to isd_generate, used to generate sky based projections for rover data [#564](https://github.com/DOI-USGS/ale/pull/564) | ||
- Added Nadir option to isd_generate, used to generate nadir instrument pointing [#564](https://github.com/DOI-USGS/ale/pull/564) | ||
- Added radial and tangential distortion model [#575](https://github.com/DOI-USGS/ale/pull/575) | ||
- Updated the spiceypy version used in environment.yml [#552](https://github.com/DOI-USGS/ale/issues/552) | ||
- added driver verification script that helps in comparing ALE and ISIS driver spice data usage and outputs [#584](https://github.com/DOI-USGS/ale/pull/584) | ||
|
||
### Fixed | ||
- Fixed LRO MiniRF drivers naif keywords focal to pixel and pixel to focal translations to be correct. [#569](https://github.com/DOI-USGS/ale/pull/569) | ||
- Bugfix for position and orientation for MSL cameras (driver MslMastcamPds3NaifSpiceDriver). Validated that Nav and Mast LBL files (for both left and right sensor) produce correctly positioned and oriented CSM cameras, that are self-consistent and consistent with a prior DEM for the site. [#580](https://github.com/DOI-USGS/ale/pull/580) | ||
- Bug fix for ray direction for MSL. [#589](https://github.com/DOI-USGS/ale/pull/589) | ||
|
||
### Changed | ||
- Removed the affine6p library and replaced affine6p's affine transformation with a numpy solution [#579](https://github.com/DOI-USGS/ale/pull/579) | ||
|
||
## [0.9.1] - 2023-06-05 | ||
|
||
### Changed | ||
- The NaifSpice class now gets two sun positions/velocities when a driver has more than one ephemeris time [#542](https://github.com/DOI-USGS/ale/pull/542) | ||
|
||
### Fixed | ||
- MexHrscIsisLabelNaifSpice and MexHrscPds3NaifSpice have had there ephemeris times changed and sampling factor updated. MexHrscIsisLabelNaifSpice has also had it's focal length, and focal plane translation updated to reflect those found in the MexHrscPds3NaifSpice driver [#541](https://github.com/DOI-USGS/ale/pull/541) | ||
- MGS drivers now account for a time bias in the ephemeris data [#538](https://github.com/DOI-USGS/ale/pull/538) | ||
|
||
## [0.9.0] - 2023-04-19 | ||
|
||
### Fixed | ||
- Kaguya IsisLabelIsisSpice now calculates the right exposure_duration and focal2pixel_lines [#487](https://github.com/DOI-USGS/ale/pull/487) | ||
- Logging from generate_isd now correctly limits logging information [#487](https://github.com/DOI-USGS/ale/pull/487) | ||
|
||
### Changed | ||
- Projection information is only written to the ISD if a projection is present instead of writing an empty projection [#528](https://github.com/DOI-USGS/ale/pull/528/) | ||
- Disabled MSI drivers until tests are added [#526](https://github.com/DOI-USGS/ale/pull/526/) | ||
|
||
### Added | ||
- Projection information (through GDAL) will be attached to the ISD if a projected product is processed through ALE [#524](https://github.com/DOI-USGS/ale/pull/524) | ||
- Kaguya IsisLabelNaifSpice driver, tests, and test data [#487](https://github.com/DOI-USGS/ale/pull/487) | ||
- Hayabusa Amica IsisLabelNaifSpice driver, tests and test data [#521](https://github.com/DOI-USGS/ale/pull/521) | ||
- Msi IsisLabelNaifSpice Driver [#511](https://github.com/DOI-USGS/ale/pull/511) | ||
- MGS MOC WAC IsisLabelNaifSpice driver, tests, and test data [#516](https://github.com/DOI-USGS/ale/pull/516) | ||
- Chandrayaan1_mrffr IsisLabelNaifSpice driver, tests and test data [#519](https://github.com/DOI-USGS/ale/pull/519) | ||
- MGS MOC Narrow Angle IsisLabelNaifSpice driver, tests, and test data [#517](https://github.com/DOI-USGS/ale/pull/517) | ||
- Hayabusa NIRS IsisLabelNaifSpice driver, tests and test data [#532](https://github.com/DOI-USGS/ale/pull/532) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.