Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
hvasbath committed Jan 25, 2024
1 parent d109ec4 commit 7c754d1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
5 changes: 0 additions & 5 deletions beat/heart.py
Original file line number Diff line number Diff line change
Expand Up @@ -4168,11 +4168,6 @@ def geo_synthetics(
:class:`numpy.ndarray` (target.samples; ux-North, uy-East, uz-Down)
returns Nan in displacements if result is invalid!
"""
for source in sources:
print(source)

for target in targets:
print(target)

response = engine.process(sources, targets)

Expand Down
8 changes: 0 additions & 8 deletions beat/plotting/geodetic.py
Original file line number Diff line number Diff line change
Expand Up @@ -765,13 +765,6 @@ def draw_leaves(ax, scene, offset_e=0, offset_n=0):
r.set_y(r.get_y() - offset_n)
map(ax.add_artist, rects)

print(offset_e, offset_n)
# print("leaves offset E", scene.quadtree.leaf_coordinates[:, 0] - offset_e)
# print("leaves offset N", scene.quadtree.leaf_coordinates[:, 1] - offset_n)

print("leaves E", scene.quadtree.leaf_coordinates[:, 0])
print("leaves N", scene.quadtree.leaf_coordinates[:, 1])

ax.scatter(
scene.quadtree.leaf_coordinates[:, 0] - offset_e,
scene.quadtree.leaf_coordinates[:, 1] - offset_n,
Expand All @@ -784,7 +777,6 @@ def draw_sources(ax, sources, scene, po, event, **kwargs):
bgcolor = kwargs.pop("color", None)

for i, source in enumerate(sources):
print(source)
if scene.frame.isMeter():
fn, fe = source.outline(cs="xy").T
elif scene.frame.isDegree():
Expand Down

0 comments on commit 7c754d1

Please sign in to comment.