Skip to content

Commit

Permalink
Merge pull request #18 from openscm/budgets
Browse files Browse the repository at this point in the history
Add budget-compatible emissions pathway module
  • Loading branch information
znicholls authored Jan 5, 2025
2 parents 5d4c279 + a8d824d commit 7ba68a7
Show file tree
Hide file tree
Showing 15 changed files with 1,339 additions and 24 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Additional dependencies can be installed using
# To add scipy-related dependencies
pip install continuous-timeseries[scipy]

# To add all optionatl dependencies
# To add all optional dependencies
pip install continuous-timeseries[full]
```

Expand Down
1 change: 1 addition & 0 deletions changelog/18.docs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added a tutorial into our support for creating emissions pathways that are compatible with a given budget (see [Budget-compatible emissions pathways](../tutorials/budget_compatible_pathways)).
1 change: 1 addition & 0 deletions changelog/18.feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added [`budget_compatible_pathways`][continuous_timeseries.budget_compatible_pathways] to support the creation of pathways compatible with a given budget.
1 change: 1 addition & 0 deletions changelog/18.trivial.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added support for rending maths with latex in the docs.
1 change: 1 addition & 0 deletions docs/NAVIGATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ See https://oprypin.github.io/mkdocs-literate-nav/
- [Tutorials](tutorials/index.md)
- [Timeseries tutorial](tutorials/timeseries_tutorial.py)
- [Higher-order interpolation](tutorials/higher_order_interpolation.py)
- [Budget-compatible emissions pathways](tutorials/budget_compatible_pathways.py)
- [Continuous timeseries tutorial](tutorials/continuous_timeseries_tutorial.py)
- [Discrete timeseries tutorial](tutorials/discrete_timeseries_tutorial.py)
- [Further background](further-background/index.md)
Expand Down
10 changes: 10 additions & 0 deletions docs/javascripts/katex.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
document$.subscribe(({ body }) => {
renderMathInElement(body, {
delimiters: [
{ left: "$$", right: "$$", display: true },
{ left: "$", right: "$", display: false },
{ left: "\\(", right: "\\)", display: false },
{ left: "\\[", right: "\\]", display: true }
],
})
})
Loading

0 comments on commit 7ba68a7

Please sign in to comment.