-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
125159c
commit 6cf6ff4
Showing
6 changed files
with
83 additions
and
55 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,32 @@ | ||
# Changelog | ||
# **Changelog** | ||
|
||
All notable changes to 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). | ||
|
||
## [Unreleased] | ||
## **[Unreleased]** | ||
|
||
### Added ✨ | ||
- Documentation updates and additional examples for alignment methods. 📚 | ||
### **Added** | ||
- Documentation updates and additional examples for alignment methods. | ||
|
||
### Changed 🛠️ | ||
- Enhanced performance optimizations in co-registration methods. 🚀 | ||
### **Changed** | ||
- Enhanced performance optimizations in co-registration methods. | ||
|
||
### Fixed 🐛 | ||
- Minor bug fixes in spatial alignment functions. 🔧 | ||
### **Fixed** | ||
- Minor bug fixes in spatial alignment functions. | ||
|
||
## [0.1.3] - 2024-05-25 | ||
### Added ✨ | ||
- New methods for spatial alignment of satellite imagery. 🛰️ | ||
- Expanded documentation with examples and usage guides. 📄 | ||
## **[0.1.3] - 2024-05-25** | ||
### **Added** | ||
- New methods for spatial alignment of satellite imagery. | ||
- Expanded documentation with examples and usage guides. | ||
|
||
## [0.1.1] - 2024-05-12 | ||
### Added ✨ | ||
- Initial release of Satalign with basic functionalities for image co-registration. 🛠️ | ||
- Examples demonstrating the use of PCC, ECC, and LGM alignment methods. 📊 | ||
## **[0.1.1] - 2024-05-12** | ||
### Added | ||
- Initial release of Satalign with basic functionalities for image co-registration. | ||
- Examples demonstrating the use of PCC, ECC, and LGM alignment methods. | ||
|
||
## [0.1.0] - 2024-05-08 | ||
### Added ✨ | ||
- Basic structure for Satalign. 🏗️ | ||
- Set up CI/CD pipeline with GitHub Actions. ⚙️ | ||
- Added basic tests and coverage reports. ✅ | ||
|
||
--- | ||
## **[0.1.0] - 2024-05-08** | ||
### **Added** | ||
- Basic structure for Satalign. | ||
- Set up CI/CD pipeline with GitHub Actions. | ||
- Added basic tests and coverage reports. |
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,18 @@ | ||
document.addEventListener('DOMContentLoaded', function() { | ||
let blocks = document.querySelectorAll('pre code'); | ||
blocks.forEach((block) => { | ||
let button = document.createElement('button'); | ||
button.innerHTML = 'Copy'; | ||
button.classList.add('copy-button'); | ||
block.parentNode.appendChild(button); | ||
button.addEventListener('click', () => { | ||
let range = document.createRange(); | ||
range.selectNode(block); | ||
window.getSelection().addRange(range); | ||
document.execCommand('copy'); | ||
window.getSelection().removeAllRanges(); | ||
button.innerHTML = 'Copied!'; | ||
setTimeout(() => { button.innerHTML = 'Copy'; }, 2000); | ||
}); | ||
}); | ||
}); |
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,30 @@ | ||
/* bottom copy */ | ||
.copy-button { | ||
position: absolute; | ||
right: 0; | ||
top: 0; | ||
padding: 5px 10px; | ||
font-size: 12px; | ||
background: #333; | ||
color: white; | ||
border: none; | ||
cursor: pointer; | ||
} | ||
|
||
.copy-button:hover { | ||
background: #555; | ||
} | ||
|
||
/* nav */ | ||
.md-tabs__list { | ||
display: flex; | ||
justify-content: space-evenly; | ||
} | ||
|
||
[data-md-color-primary=black] .md-header { | ||
background-color: #596346; | ||
} | ||
|
||
[data-md-color-primary=black] .md-tabs { | ||
background-color: #1a2d5d; | ||
} |
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