Skip to content

Commit

Permalink
Forgot to remove basin from concentration table.
Browse files Browse the repository at this point in the history
  • Loading branch information
evetion committed May 6, 2024
1 parent d1651b2 commit 9d78c3f
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion core/src/schema.jl
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ end
node_id::Int32
time::DateTime
substance::String
basin::Union{Missing, Float64}
drainage::Union{Missing, Float64}
precipitation::Union{Missing, Float64}
end
Expand Down
1 change: 0 additions & 1 deletion python/ribasim/ribasim/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ class BasinConcentrationSchema(_BaseSchema):
node_id: Series[Int32] = pa.Field(nullable=False, default=0)
time: Series[Timestamp] = pa.Field(nullable=False)
substance: Series[str] = pa.Field(nullable=False)
basin: Series[float] = pa.Field(nullable=True)
drainage: Series[float] = pa.Field(nullable=True)
precipitation: Series[float] = pa.Field(nullable=True)

Expand Down
1 change: 0 additions & 1 deletion python/ribasim_testmodels/ribasim_testmodels/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ def basic_model() -> ribasim.Model:
basin.Concentration(
time="2020-01-01 00:00:00",
substance=["Cl"],
basin=[0.0],
drainage=[0.0],
precipitation=[0.0],
),
Expand Down

0 comments on commit 9d78c3f

Please sign in to comment.