-
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
Showing
25 changed files
with
58 additions
and
58 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Contributing to `satsync` | ||
# Contributing to `satalign` | ||
|
||
Contributions are welcome, and they are greatly appreciated! | ||
Every little bit helps, and credit will always be given. | ||
|
@@ -9,7 +9,7 @@ You can contribute in many ways: | |
|
||
## Report Bugs | ||
|
||
Report bugs at https://github.com/csaybar/satsync/issues | ||
Report bugs at https://github.com/csaybar/satalign/issues | ||
|
||
If you are reporting a bug, please include: | ||
|
||
|
@@ -33,7 +33,7 @@ Cookiecutter PyPackage could always use more documentation, whether as part of t | |
|
||
## Submit Feedback | ||
|
||
The best way to send feedback is to file an issue at https://github.com/csaybar/satsync/issues. | ||
The best way to send feedback is to file an issue at https://github.com/csaybar/satalign/issues. | ||
|
||
If you are proposing a new feature: | ||
|
||
|
@@ -44,22 +44,22 @@ If you are proposing a new feature: | |
|
||
# Get Started! | ||
|
||
Ready to contribute? Here's how to set up `satsync` for local development. | ||
Ready to contribute? Here's how to set up `satalign` for local development. | ||
Please note this documentation assumes you already have `poetry` and `Git` installed and ready to go. | ||
|
||
1. Fork the `satsync` repo on GitHub. | ||
1. Fork the `satalign` repo on GitHub. | ||
|
||
2. Clone your fork locally: | ||
|
||
```bash | ||
cd <directory_in_which_repo_should_be_created> | ||
git clone [email protected]:YOUR_NAME/satsync.git | ||
git clone [email protected]:YOUR_NAME/satalign.git | ||
``` | ||
|
||
3. Now we need to install the environment. Navigate into the directory | ||
|
||
```bash | ||
cd satsync | ||
cd satalign | ||
``` | ||
|
||
If you are using `pyenv`, select a version to use locally. (See installed versions with `pyenv versions`) | ||
|
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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
# satsync | ||
# satalign | ||
|
||
[![Release](https://img.shields.io/github/v/release/csaybar/satsync)](https://img.shields.io/github/v/release/csaybar/satsync) | ||
[![Build status](https://img.shields.io/github/actions/workflow/status/csaybar/satsync/main.yml?branch=main)](https://github.com/csaybar/satsync/actions/workflows/main.yml?query=branch%3Amain) | ||
[![codecov](https://codecov.io/gh/csaybar/satsync/branch/main/graph/badge.svg)](https://codecov.io/gh/csaybar/satsync) | ||
[![Commit activity](https://img.shields.io/github/commit-activity/m/csaybar/satsync)](https://img.shields.io/github/commit-activity/m/csaybar/satsync) | ||
[![License](https://img.shields.io/github/license/csaybar/satsync)](https://img.shields.io/github/license/csaybar/satsync) | ||
[![Release](https://img.shields.io/github/v/release/csaybar/satalign)](https://img.shields.io/github/v/release/csaybar/satalign) | ||
[![Build status](https://img.shields.io/github/actions/workflow/status/csaybar/satalign/main.yml?branch=main)](https://github.com/csaybar/satalign/actions/workflows/main.yml?query=branch%3Amain) | ||
[![codecov](https://codecov.io/gh/csaybar/satalign/branch/main/graph/badge.svg)](https://codecov.io/gh/csaybar/satalign) | ||
[![Commit activity](https://img.shields.io/github/commit-activity/m/csaybar/satalign)](https://img.shields.io/github/commit-activity/m/csaybar/satalign) | ||
[![License](https://img.shields.io/github/license/csaybar/satalign)](https://img.shields.io/github/license/csaybar/satalign) | ||
|
||
A python package to align satellite images. | ||
|
||
- **Github repository**: <https://github.com/csaybar/satsync/> | ||
- **Documentation** <https://csaybar.github.io/satsync/> | ||
- **Github repository**: <https://github.com/csaybar/satalign/> | ||
- **Documentation** <https://csaybar.github.io/satalign/> | ||
|
||
## Getting started with your project | ||
|
||
|
@@ -19,7 +19,7 @@ First, create a repository on GitHub with the same name as this project, and the | |
git init -b main | ||
git add . | ||
git commit -m "init commit" | ||
git remote add origin [email protected]:csaybar/satsync.git | ||
git remote add origin [email protected]:csaybar/satalign.git | ||
git push -u origin main | ||
``` | ||
|
||
|
@@ -39,8 +39,8 @@ To enable the code coverage reports, see [here](https://fpgmaas.github.io/cookie | |
## Releasing a new version | ||
|
||
- Create an API Token on [Pypi](https://pypi.org/). | ||
- Add the API Token to your projects secrets with the name `PYPI_TOKEN` by visiting [this page](https://github.com/csaybar/satsync/settings/secrets/actions/new). | ||
- Create a [new release](https://github.com/csaybar/satsync/releases/new) on Github. | ||
- Add the API Token to your projects secrets with the name `PYPI_TOKEN` by visiting [this page](https://github.com/csaybar/satalign/settings/secrets/actions/new). | ||
- Create a [new release](https://github.com/csaybar/satalign/releases/new) on Github. | ||
- Create a new tag in the form `*.*.*`. | ||
|
||
For more details, see [here](https://fpgmaas.github.io/cookiecutter-poetry/features/cicd/#how-to-trigger-a-release). | ||
|
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,8 +1,8 @@ | ||
# satsync | ||
# satalign | ||
|
||
[![Release](https://img.shields.io/github/v/release/csaybar/satsync)](https://img.shields.io/github/v/release/csaybar/satsync) | ||
[![Build status](https://img.shields.io/github/actions/workflow/status/csaybar/satsync/main.yml?branch=main)](https://github.com/csaybar/satsync/actions/workflows/main.yml?query=branch%3Amain) | ||
[![Commit activity](https://img.shields.io/github/commit-activity/m/csaybar/satsync)](https://img.shields.io/github/commit-activity/m/csaybar/satsync) | ||
[![License](https://img.shields.io/github/license/csaybar/satsync)](https://img.shields.io/github/license/csaybar/satsync) | ||
[![Release](https://img.shields.io/github/v/release/csaybar/satalign)](https://img.shields.io/github/v/release/csaybar/satalign) | ||
[![Build status](https://img.shields.io/github/actions/workflow/status/csaybar/satalign/main.yml?branch=main)](https://github.com/csaybar/satalign/actions/workflows/main.yml?query=branch%3Amain) | ||
[![Commit activity](https://img.shields.io/github/commit-activity/m/csaybar/satalign)](https://img.shields.io/github/commit-activity/m/csaybar/satalign) | ||
[![License](https://img.shields.io/github/license/csaybar/satalign)](https://img.shields.io/github/license/csaybar/satalign) | ||
|
||
A python package to align satellite images. |
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 +1 @@ | ||
::: satsync.foo | ||
::: satalign.foo |
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[tool.poetry] | ||
name = "satsync" | ||
version = "0.0.6" | ||
name = "satalign" | ||
version = "0.0.7" | ||
description = "Methods for spatial alignment of satellite imagery" | ||
authors = ["Cesar Aybar <fcesar[email protected]>"] | ||
repository = "https://github.com/csaybar/satsync" | ||
documentation = "https://csaybar.github.io/satsync/" | ||
authors = ["Cesar Aybar <cesar[email protected]>"] | ||
repository = "https://github.com/csaybar/satalign" | ||
documentation = "https://csaybar.github.io/satalign/" | ||
readme = "README.md" | ||
packages = [ | ||
{include = "satsync"} | ||
{include = "satalign"} | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
|
@@ -19,7 +19,7 @@ scikit-image = ">=0.23.1" | |
opencv-python = ">=4.8.0.76" | ||
pandas = ">=2.0.3" | ||
kornia = ">=0.7.2" | ||
torch = ">=2.2.0" | ||
torch = ">=2.0.0" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
pytest = "^7.2.0" | ||
|
@@ -39,7 +39,7 @@ requires = ["poetry-core>=1.0.0"] | |
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.mypy] | ||
files = ["satsync"] | ||
files = ["satalign"] | ||
disallow_untyped_defs = "True" | ||
disallow_any_unimported = "True" | ||
no_implicit_optional = "True" | ||
|
@@ -102,7 +102,7 @@ skip_empty = true | |
|
||
[tool.coverage.run] | ||
branch = true | ||
source = ["satsync"] | ||
source = ["satalign"] | ||
|
||
|
||
[tool.ruff.per-file-ignores] | ||
|
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,4 @@ | ||
from satalign import utils | ||
from satalign.ecc import ECC | ||
from satalign.lightglue import LightGlue | ||
from satalign.pcc import PCC |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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,4 +1,4 @@ | ||
from satsync.foo import foo | ||
from satalign.foo import foo | ||
|
||
|
||
def test_foo(): | ||
|