Skip to content

Commit

Permalink
wip: fast-marching implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
miili committed Sep 11, 2023
1 parent 18818ce commit b1c3373
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lassie/tracers/fast_marching/velocity_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,13 @@ def load_header(self) -> Self:
elif self._header.grid_type == "VELOCITY":
self._velocity_model *= KM

logging.info("loaded NonLinLoc velocity model %s", self._header)
logging.info(
"loaded NonLinLoc velocity model, "
"east_bounds: %s, north_bounds %s, depth_bounds %s",
self._header.east_bounds,
self._header.north_bounds,
self._header.depth_bounds,
)
return self

def get_model(self, octree: Octree) -> VelocityModel3D:
Expand Down

0 comments on commit b1c3373

Please sign in to comment.