Skip to content
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

Update used ids on reading an existing model. #1818

Merged
merged 2 commits into from
Sep 10, 2024
Merged

Conversation

evetion
Copy link
Member

@evetion evetion commented Sep 10, 2024

Fixes #1806 and #1804

@evetion evetion requested a review from visr September 10, 2024 18:30
df = (
pd.concat(df_chunks)
if df_chunks
else pd.DataFrame(index=pd.Index([], name="node_id"))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is to handle empty models, without any nodes right? Did you need this for anything? I don't think we test empty models.

I think this fails, just like before, but now with:

>>> ribasim.model.NodeTable(pd.Index([], name="node_id"))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: BaseModel.__init__() takes 1 positional argument but 2 were given
>>> ribasim.model.NodeTable(df=pd.Index([], name="node_id"))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "D:\repo\ribasim\Ribasim\.pixi\envs\default\Lib\site-packages\pydantic\main.py", line 193, in __init__
    self.__pydantic_validator__.validate_python(data, self_instance=self)
pydantic_core._pydantic_core.ValidationError: 1 validation error for NodeTable
df
  Value error, Expected <class 'pandas.core.series.Series'> to have name 'node_id', found 'None' [type=value_error, input_value=Index([], dtype='object', name='node_id'), input_type=Index]
    For further information visit https://errors.pydantic.dev/2.8/v/value_error

Wouldn't we need all columns with the right dtypes? With this we get an object dtype.

So perhaps best to leave out this change unless needed.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your examples are not what's happening in the code, you need to pass the dataframe as the df argument to the nodetable.

That said, this might not be needed in this PR, it's for the edge case when you read an empty geopackage. And when you call nodetable on a new model, which previously failed.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh sorry I pasted two prompts, the first once was missing the df arguments, but the second one is not.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your second one passes an index, not a dataframe 😉

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ha my bad. Let's merge!

@visr visr merged commit 9514b30 into main Sep 10, 2024
29 checks passed
@visr visr deleted the fix/used-ids-on-read branch September 10, 2024 20:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants