Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,22 @@ release.

## [Unreleased]

## [1.1.0] - 2026-02-17

### Fixed
- Fixed ephemeris stop time in Chandrayaan2 TMC2 driver. [#681](https://github.com/DOI-USGS/ale/pull/681/changes)

- Fixed focal plane to detector lines/samples as well as rely on IAK for rotation corrections in Chandrayaan2 OHRC driver. [#682](https://github.com/DOI-USGS/ale/pull/682)

### Added
- Added TMC_FORE, TMC_NADIR, and TMC_AFT instrument IDs to Chandrayaan2 driver. [#678](https://github.com/DOI-USGS/ale/pull/678)

- Added optional boolean flag `remove_kernels` to the `props` dict in the `loads()` func to allow the user to add the `kernels` key in the output ISD. Added the `misc` kernel key for user-entered kernels. Format the kernels value to always be dict type in ISD generation. [#675](https://github.com/DOI-USGS/ale/pull/675)
- Sets ALE's default log level to ERROR instead of INFO, which was too verbose. [#679](https://github.com/DOI-USGS/ale/pull/679)

- Added support for loading ISIS metadata from GDAL drivers when using GDAL 3.12.0 or newer. [#676](https://github.com/DOI-USGS/ale/pull/676)

### Changed
- Sets ALE's default log level to ERROR instead of INFO, which was too verbose. [#679](https://github.com/DOI-USGS/ale/pull/679)

## [1.0.2]

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Specify the required version of CMake.
# cmake 3.15 required for findPython virtualenv configuration
cmake_minimum_required(VERSION 3.15)
project(ale VERSION 1.0.2 DESCRIPTION "Abstraction Library for Ephemerides ")
project(ale VERSION 1.1.0 DESCRIPTION "Abstraction Library for Ephemerides ")

list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")

Expand Down
47 changes: 47 additions & 0 deletions code.json
Original file line number Diff line number Diff line change
Expand Up @@ -460,5 +460,52 @@
"date": {
"metadataLastUpdated": "2025-08-20"
}
},
{
"name": "ale",
"organization": "U.S. Geological Survey",
"description": "GitLab repository for the Abstraction Layer for Ephemerides package",
"version": "1.1.0",
"status": "Production",

"permissions": {
"usageType": "openSource",
"licenses": [
{
"name": "Public Domain, CC0-1.0",
"URL": "https://code.usgs.gov/astrogeology/ale/-/raw/1.1.0/LICENSE.md"
}
]
},

"homepageURL": "https://code.usgs.gov/astrogeology/ale/-/tree/1.1.0",
"downloadURL": "https://code.usgs.gov/astrogeology/ale/-/archive/1.1.0/ale-1.1.0.zip",
"disclaimerURL": "https://code.usgs.gov/astrogeology/ale/-/raw/1.1.0/DISCLAIMER.md",
"repositoryURL": "https://code.usgs.gov/astrogeology/ale.git",
"vcs": "git",

"laborHours": 480,

"tags": [
"Planetary",
"Remote Sensing",
"Data Processing",
"Ephemerides",
"Community Sensor Model"
],

"languages": [
"C++",
"Python"
],

"contact": {
"name": "Kelvin Rodriguez",
"email": "krodriguez@usgs.gov"
},

"date": {
"metadataLastUpdated": "2026-02-09"
}
}
]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import setup, find_packages

NAME = "Ale"
VERSION = "1.0.2"
VERSION = "1.1.0"

# To install the library, run the following
#
Expand Down
Loading