File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -61,4 +61,3 @@ wslink==1.12.4
6161yarl >= 1
6262 # via aiohttp
6363
64- opengeodeweb-microservice == 1.* ,>= 1.1.3
Original file line number Diff line number Diff line change @@ -189,7 +189,11 @@ def update_grid_scale_and_clipping_range(self) -> None:
189189 props .InitTraversal ()
190190 prop = props .GetNextProp ()
191191 while prop :
192- if prop .GetVisibility () and prop .GetUseBounds () and prop != grid_scale :
192+ if (
193+ prop .GetVisibility ()
194+ and prop .GetUseBounds ()
195+ and prop != grid_scale
196+ ):
193197 bounds .AddBounds (prop .GetBounds ())
194198 prop = props .GetNextProp ()
195199 if bounds .IsValid ():
@@ -199,6 +203,7 @@ def update_grid_scale_and_clipping_range(self) -> None:
199203
200204 final_bounds = list (grid_scale .GetBounds ())
201205 if final_bounds [0 ] <= final_bounds [1 ]:
206+
202207 def get_dist (axis : int ) -> float :
203208 p1 = [final_bounds [0 ], final_bounds [2 ], final_bounds [4 ]]
204209 p2 = list (p1 )
You can’t perform that action at this time.
0 commit comments