-
Notifications
You must be signed in to change notification settings - Fork 21
docs: update documentation to match latest codebase state #180
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
d3af95b
docs: update add properties function api to newest release
mcllerena 0485e32
docs: update changelog files and description to current organization
mcllerena 671cfa7
docs: update doc files to match latest codebase logic
mcllerena 6dc4850
docs: update scheme handling on schema creation
mcllerena 36c9097
fix: resolve generator addition for property additions
mcllerena File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| # Checks | ||
|
|
||
| Validation helpers for checking classes, objects, collections, memberships, | ||
| properties, attributes, scenarios, data records, and tags in a `PlexosDB` | ||
| database. | ||
|
|
||
| ```{eval-rst} | ||
| .. automodule:: plexosdb.checks | ||
| :members: | ||
| :undoc-members: | ||
| :show-inheritance: | ||
| ``` | ||
|
|
||
| The helpers accept a `PlexosDB` instance as their first argument. The same | ||
| checks are also available as convenience methods on `PlexosDB` where the class | ||
| exposes them. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| # DuckDB Solution Reader | ||
|
|
||
| The DuckDB solution reader converts a PLEXOS solution ZIP with `plexos2duckdb` | ||
| and exposes lazy DuckDB relations for analysis. Import it explicitly to | ||
| distinguish it from the SQLite-backed solution reader: | ||
|
|
||
| ```python | ||
| from plexosdb.db_solution import PlexosSolution | ||
| ``` | ||
|
|
||
| ```{eval-rst} | ||
| .. automodule:: plexosdb.db_solution | ||
| :members: | ||
| :undoc-members: | ||
| :show-inheritance: | ||
| ``` | ||
|
|
||
| ## Result Types | ||
|
|
||
| ```{eval-rst} | ||
| .. automodule:: plexosdb.db_solution_models | ||
| :members: | ||
| :undoc-members: | ||
| :show-inheritance: | ||
| ``` | ||
|
|
||
| See [Reading a PLEXOS Solution](../howtos/read_solution.md) for a complete | ||
| ZIP-to-DuckDB workflow. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| # SQLite Solution Reader | ||
|
|
||
| The SQLite solution reader imports a PLEXOS solution ZIP into SQLite and | ||
| materializes derived result tables for analysis. Import it explicitly to | ||
| distinguish it from the DuckDB-backed solution wrapper: | ||
|
|
||
| ```python | ||
| from plexosdb.solution_reader import PlexosSolution | ||
| ``` | ||
|
|
||
| ```{eval-rst} | ||
| .. automodule:: plexosdb.solution_reader.solution | ||
| :members: | ||
| :undoc-members: | ||
| :show-inheritance: | ||
| ``` | ||
|
|
||
| ## Display Helpers | ||
|
|
||
| ```{eval-rst} | ||
| .. automodule:: plexosdb.solution_reader.display | ||
| :members: | ||
| :undoc-members: | ||
| :show-inheritance: | ||
| ``` | ||
|
|
||
| ## Result Types | ||
|
|
||
| ```{eval-rst} | ||
| .. automodule:: plexosdb.solution_reader.types | ||
| :members: | ||
| :undoc-members: | ||
| :show-inheritance: | ||
| ``` | ||
|
|
||
| See [Inspecting a PLEXOS Solution](../howtos/inspect_solution.md) for a complete | ||
| ZIP-to-SQLite workflow. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.