Initial commit: database schema, data source docs, chapter variable references

This commit is contained in:
dadams
2026-03-08 20:25:58 -07:00
commit 38cf181f40
7 changed files with 955 additions and 0 deletions

42
.gitignore vendored Normal file
View File

@@ -0,0 +1,42 @@
# Large source data files — not tracked
data/raw/
*.shp
*.dbf
*.shx
*.prj
*.sbn
*.sbx
*.sbx
*.cpg
*.shp.xml
*.shp.ea.iso.xml
*.shp.iso.xml
# CSV data files (large)
*.csv
# Jupyter
.ipynb_checkpoints/
**/.ipynb_checkpoints/
# Python
__pycache__/
*.py[cod]
*.egg-info/
.env
.venv/
venv/
# Figures (generated outputs — commit selectively)
figures/**/*.png
figures/**/*.pdf
figures/**/*.svg
# OS
.DS_Store
Thumbs.db
# Editor
.vscode/
*.swp
*~