Skip to content

Commit

Permalink
Fix wrong order of parameters in sqlite metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
schroedtert authored Apr 26, 2024
1 parent 7896f22 commit 019aacb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python_modules/jupedsim/jupedsim/sqlite_serialization.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def write_iteration_state(self, simulation: Simulation) -> None:
(frame, geo_hash),
)

xmin, xmax, ymin, ymax = from_wkt(geo_wkt).bounds
xmin, ymin, xmax, ymax = from_wkt(geo_wkt).bounds

old_xmin = self._x_min(cur)
old_xmax = self._x_max(cur)
Expand Down

0 comments on commit 019aacb

Please sign in to comment.