Discussion of general issues related to the project and protyping or research
- eScience Slack channel: 🔒 #ssec-ca-biositing
- SSEC Sharepoint (INTERNAL SSEC ONLY): 🔒 Projects/GeospatialBioeconomy
- Shared Sharepoint Directory: 🔒 SSEC CA Biositing Shared Folder
For general discussion, ideas, and resources please use the GitHub Discussions. However, if there's an internal discussion that need to happen, please use the slack channel provided.
- Meeting Notes in GitHub: discussions/meetings
If you have any questions about our process, or locations of SSEC resources, please ask Anshul Tambay.
This project includes QGIS for geospatial analysis and visualization. You can run QGIS using pixi with the following command:
pixi run qgisThis will launch QGIS in the gis environment with all necessary dependencies
installed.
For MacOS, there will be a Python error about faulthandler, which is expected and can be ignored, see qgis/QGIS#52987.
This repository now includes the Cal Bioscape Frontend as a Git submodule
located in the frontend/ directory.
When you first clone this repository, you can initialize and pull only the
frontend submodule with:
pixi run submodule-frontend-initThis project uses MkDocs Material for documentation.
You can preview the documentation locally using Pixi:
pixi install -e docs
pixi run -e docs docs-serveThen open your browser and go to:
http://127.0.0.1:8000
Most documentation should live in the relevant directories within the docs
folder.
When adding new pages to the documentation, make sure you update the
mkdocs.yml file
so they can be rendered on the website.
If you need to add documentation referencing a file that lives elsewhere in the repository, you'll need to do the following (this is an example, run from the package root directory)
# symlink the file to its destination
# Be sure to use relative paths here, otherwise it won't work!
ln -s ../../deployment/README.md docs/deployment/README.md
# stage your new file
git add docs/deployment/README.mdBe sure to preview the documentation to make sure it's accurate before submitting a PR.