Skip to content

Commit

Permalink
Bugfix octree
Browse files Browse the repository at this point in the history
  • Loading branch information
Marius Isken committed Jan 5, 2024
1 parent 9e5fdb1 commit 09fa4d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/qseek/octree.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,15 +234,15 @@ class Octree(BaseModel):
description="Smallest possible size of an octree node in meters.",
)
east_bounds: Range = Field(
default=(-10 * KM, 10 * KM),
default=Range(-10 * KM, 10 * KM),
description="East bounds of the octree in meters.",
)
north_bounds: Range = Field(
default=(-10 * KM, 10 * KM),
default=Range(-10 * KM, 10 * KM),
description="North bounds of the octree in meters.",
)
depth_bounds: Range = Field(
default=(0 * KM, 20 * KM),
default=Range(0 * KM, 20 * KM),
description="Depth bounds of the octree in meters.",
)
absorbing_boundary: float = Field(
Expand Down

0 comments on commit 09fa4d9

Please sign in to comment.