-
Notifications
You must be signed in to change notification settings - Fork 4
Run multiple crops - first work on engine #124
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
+80
−61
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
cafa59e
keep crop instance alive for all simulation
fnattino 4fa78c5
allow parameter provider to be a dict
fnattino b88979e
fix __iter__ method of parameter provider
fnattino b221fe0
fix signals and flags
fnattino ab66217
Merge branch 'main' into 60-different-crops
fnattino c77265d
Merge branch 'main' into 60-different-crops
fnattino 58f18f7
Merge branch 'test-module' into 60-different-crops
fnattino 0a6b93e
Merge branch 'test-module' into 60-different-crops
fnattino 91ab41a
move crop instance creation to function
fnattino 393b7aa
fix tests on engine
fnattino 2b9cf77
add new tests
fnattino d1db549
Merge remote-tracking branch 'origin/main' into 60-different-crops
fnattino a602964
add reference to PR
fnattino 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
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,12 @@ | ||
| from pcse.base.parameter_providers import ParameterProvider as PcseParameterProvider | ||
|
|
||
|
|
||
| class ParameterProvider(PcseParameterProvider): | ||
| """Temporary implementation of PCSE's ParameterProvider. | ||
|
|
||
| Fixes the `__iter__` method in order to allow for access via dict-like `.items()`, `.keys()`, | ||
| and `.values()`. Could be dropped when https://github.com/ajwdewit/pcse/pull/121 is merged. | ||
| """ | ||
|
|
||
| def __iter__(self): | ||
| return iter(self._unique_parameters) | ||
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,12 @@ | ||
| from diffwofost.physical_models.parameter_providers import ParameterProvider | ||
|
|
||
|
|
||
| class TestParameterProvider: | ||
| def test_parameter_provider_supports_dict_methods(self): | ||
| p = ParameterProvider( | ||
| sitedata={"A": 0}, timerdata={"B": 1}, soildata={"C": 2}, cropdata={"D": 3} | ||
| ) | ||
| p.set_override("E", 4, check=False) | ||
| assert len(p.items()) == len(p.keys()) == len(p.values()) == 5 | ||
| assert set(p.keys()) == set("ABCDE") | ||
| assert set(p.values()) == set(range(5)) |
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.