Collection of software for Space Concordia AI payload mission

4 Open Issues Need Help Last updated: Jun 30, 2025

Open Issues Need Help

View All on GitHub

AI Summary: Improve the security and sharing of environment variables used in the Space Concordia AI payload project by implementing a secure method (e.g., using a .env file with .gitignore) and updating the README.md to reflect the new workflow. This involves researching alternative solutions and documenting the chosen approach.

Complexity: 3/5
enhancement help wanted good first issue

Collection of software for Space Concordia AI payload mission

Python

AI Summary: Implement a dynamic z-score normalization function in `preprocess.py` using OpenCV or simple Python logic. The function should normalize image channels to have a mean of 0 and a standard deviation of 1, excluding data-less pixels. This is a preprocessing step for a wildfire detection model, aiming for sensor and resolution agnostic image inputs.

Complexity: 3/5
help wanted

Collection of software for Space Concordia AI payload mission

Python

AI Summary: Migrate the existing Python project's dependency management from pip to `uv`, incorporate `pyproject.toml` for standardized build configuration, and document the updated build process in a `BUILD.md` file. This involves updating the project's structure and potentially resolving any conflicts arising from the change in dependency management.

Complexity: 3/5
documentation good first issue

Collection of software for Space Concordia AI payload mission

Python

AI Summary: Integrate FIRMS data with Copernicus imagery. This involves querying the FIRMS database (or JSON output) to identify wildfire events, then using the Copernicus API to retrieve corresponding satellite imagery for those events. The imagery should be stored locally, following existing patterns in `fetch.py`. The sensor type in the Copernicus API call needs to be adjusted in the evaluation script. This is a step towards using both data sources for wildfire detection.

Complexity: 4/5
help wanted

Collection of software for Space Concordia AI payload mission

Python