https://github.com/simonsobs/so_campaign_manager
This repo will include all the work for SO's auto mapmaking.
https://github.com/simonsobs/so_campaign_manager
Last synced: 3 months ago
JSON representation
This repo will include all the work for SO's auto mapmaking.
- Host: GitHub
- URL: https://github.com/simonsobs/so_campaign_manager
- Owner: simonsobs
- License: bsd-2-clause
- Created: 2024-03-25T14:50:55.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2026-03-24T18:51:42.000Z (3 months ago)
- Last Synced: 2026-03-25T23:52:55.972Z (3 months ago)
- Language: Python
- Homepage:
- Size: 599 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://pypi.org/project/so_campaign_manager)
[](https://pypi.org/project/so_campaign_manager)

[](https://coveralls.io/github/simonsobs/so_campaign_manager?branch=main)
[](https://doi.org/10.5281/zenodo.15784156)
[](https://so-campaign-manager.readthedocs.io)
## SO Campaign Manager
This repository holds the code of the software tools that will run the mapmaking campaign on So resources.
The project has three big aspects:
1. Providing a method to submit new workflows, update existing ones and delete via configuration or a series of commands
2. Based on the workflow configuration set the resource requirement accordingly and submit it to SLURM. Resource configuration can be based on:
1. Total size of observations and their file distribution
2. A specific observation mapping between processes and files
3. Node memory and node processor performance.
3. Use a workflow management tool to execute all workflows in the minimum amount of time.
## Documentation
📚 **[Full Documentation](docs/index.rst)** - Complete documentation including:
- [Installation Guide](docs/installation.rst) - Setup and installation instructions
- [Quick Start](docs/quickstart.rst) - Get started quickly with examples
- [User Guide](docs/user_guide.rst) - Comprehensive usage guide
- [API Reference](docs/api.rst) - Complete API documentation
- [Workflow Guide](docs/workflows.rst) - Available workflows and how to use them
- [Developer Guide](docs/developer_guide.rst) - Contributing and development setup
### Building Documentation
To build the HTML documentation locally:
```bash
cd docs
pip install sphinx sphinx-rtd-theme
make html
```
The documentation will be available in `docs/_build/html/index.html`.
## Quick Start
Install the package:
```bash
pip install so_campaign_manager
```
Create a configuration file (`campaign.toml`):
```toml
[campaign]
deadline = "2d"
[campaign.resources]
nodes = 4
cores-per-node = 112
[campaign.ml-mapmaking]
context = "file:///path/to/context.yaml"
output_dir = "/path/to/output"
bands = "f090"
# ... other parameters
```
Run your campaign:
```bash
socm -t campaign.toml
```
For detailed examples and configuration options, see the [documentation](docs/).
---
For information on contributing, branching model, and code style requirements, see [CONTRIBUTING.md](CONTRIBUTING.md).