Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
f600492
glossary.siteref
jaberg May 2, 2026
029a4e1
new glossary terms
jaberg May 2, 2026
bda31ca
rename scenario->simulation in pre-main tabs
jaberg May 2, 2026
1515b96
more glossary
jaberg May 2, 2026
ceed3e9
replace many instances of term "scenario" with "simulation"
jaberg May 3, 2026
ea87111
remove scenarios.py
jaberg May 3, 2026
f40ef3e
new test_cattle and new emission_factor and driver registries
jaberg May 5, 2026
fd840c0
test_cattle passing with new registries
jaberg May 5, 2026
96db33d
test_sim passes with register_emission_factor
jaberg May 6, 2026
78c254f
tests pass again, peval has been removed from app.py
jaberg May 6, 2026
4462b51
clean up app.py, remove strategy_page
jaberg May 6, 2026
7efa956
remove csfs.py
jaberg May 6, 2026
7afe684
removed lots of stuff from base.py
jaberg May 6, 2026
9fff012
Planet_Model runs in tests
jaberg May 6, 2026
20b0f90
re-enable Atmospheric blog post
jaberg May 6, 2026
fe0925e
fixed up old ghg blog post
jaberg May 6, 2026
bf23261
fix mistake in SiteSimulation t_stop_year
jaberg May 6, 2026
bd79662
silencing some warnings
jaberg May 6, 2026
6b7cd26
remove ipcc_sectors attr on dynelems
jaberg May 7, 2026
e66c9ed
simulations page uses printcname
jaberg May 7, 2026
6056328
lots of cleanup
jaberg May 7, 2026
29515ad
added "See Also" to Scale_Bovaer
jaberg May 7, 2026
88e4704
Strategy impact page breaks out emissions impact by sector
jaberg May 7, 2026
1d76c83
strategy impact page cleanup
jaberg May 7, 2026
e340641
strategy impact breaks down subsidies by program and reason
jaberg May 7, 2026
e4c2319
adjust test_cattle numbers to new barrier behaviour
jaberg May 8, 2026
3e4f887
a few fixes
jaberg May 8, 2026
cd62915
glossary post wip
jaberg May 8, 2026
f00cd89
made it to bottom of glossary post
jaberg May 11, 2026
ddb00a2
glossary post
jaberg May 11, 2026
1534623
glossary&about comment on link deprecation
jaberg May 11, 2026
6b1d179
glossary writing
jaberg May 11, 2026
7cfc97a
test internal links
jaberg May 11, 2026
d43e27b
rewrite Bovaer post
jaberg May 12, 2026
568178d
working over glossary.py, halfway through
jaberg May 12, 2026
d468e81
glossary page draft complete
jaberg May 13, 2026
856d440
tests pass w glossary
jaberg May 13, 2026
c1a6ad7
remove old cattle methane emission code
jaberg May 13, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 32 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ target = ${PROJECTNAME}
bash: .build
docker run \
-v ${PWD}:/mnt/ \
-e PLANZERO_USE_DISK_CACHE=0 \
-w /mnt/ \
-it --rm $(target) \
bash
Expand Down Expand Up @@ -36,12 +37,23 @@ test_blogs: .build
-it --rm $(target) \
pytest -W error --maxfail=1 -vv -k test_each_blog test_200.py

test_200_internal: .build
# do use memory cache
docker run \
-v ${PWD}:/mnt/ \
-e PLANZERO_USE_DISK_CACHE=0 \
-w /mnt/ \
-it --rm $(target) \
pytest -W error -vv -k internal test_200.py

test_200: .build
# do use memory cache
docker run \
-v ${PWD}:/mnt/ \
-e PLANZERO_USE_DISK_CACHE=0 \
-w /mnt/ \
-it --rm $(target) \
pytest -W error --maxfail=1 -vv test_200.py
pytest -W error --maxfail=1 -vv -k endpoints test_200.py

test_ipcc_canada: .build
docker run \
Expand All @@ -50,6 +62,13 @@ test_ipcc_canada: .build
-it --rm $(target) \
pytest -W error --maxfail=2 -vv test_ipcc_canada.py

test_cattle: .build
docker run \
-v ${PWD}:/mnt/ \
-w /mnt/ \
-it --rm $(target) \
pytest -W error --maxfail=1 -vv planzero/test_cattle.py

test_mapml: .build
docker run \
-v ${PWD}:/mnt/ \
Expand Down Expand Up @@ -251,3 +270,15 @@ demo_sc_32_10_0130_01: .build
-w /mnt/ \
-it --rm $(target) \
python -m planzero.sc_3210013001


html/blog/2026-04-03-bovaer_assets:
# these asset files are meant to be stored in git
# the script is used during development to re-generate them
# after the post is beyond amendment, this build script could be removed
docker run \
-v ${PWD}:/mnt/ \
-e PLANZERO_USE_DISK_CACHE=0 \
-w /mnt/ \
-it --rm $(target) \
python -c "import planzero; planzero.blog.ModellingBovaer.generate_assets()"
Loading