Skip to content

Commit ab0a85d

Browse files
committed
refactor: update frame percentages in cadastral and topographic plans
1 parent 698407e commit ab0a85d

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

cadastral.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ def __init__(self, **kwargs):
1313
if self.type != PlanType.CADASTRAL:
1414
raise ValueError("CadastralPlan must have type PlanType.CADASTRAL")
1515

16-
self._frame_x_percent = 0.55
17-
self._frame_y_percent = 1.0
16+
self._frame_x_percent = 0.9
17+
self._frame_y_percent = 1.5
1818
self._bounding_box = self.get_bounding_box()
1919
self._frame_coords = self._setup_frame_coords()
2020
self._coord_dict = {coord.id: coord for coord in self.coordinates}

topographic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ def __init__(self, **kwargs):
2222
if self.type != PlanType.TOPOGRAPHIC:
2323
raise ValueError("TopographicPlan must have type PlanType.TOPOGRAPHIC")
2424

25-
self._frame_x_percent = 0.55
26-
self._frame_y_percent = 1.0
25+
self._frame_x_percent = 0.9
26+
self._frame_y_percent = 1.5
2727
self._bounding_box = self.get_bounding_box()
2828
self._frame_coords = self._setup_frame_coords()
2929
self._boundary_dict = {coord.id: coord for coord in self.topographic_boundary.coordinates}

0 commit comments

Comments
 (0)