-
Notifications
You must be signed in to change notification settings - Fork 0
Buffer should be in km #87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -131,7 +131,7 @@ velocity_model: | |
| topo_type: "SQUASHED_TAPERED" | ||
| vs30: 500.0 | ||
| s_wave_velocity: 3500.0 | ||
| fault_buffer: 2000.0 | ||
| fault_buffer: 2.0 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for fixing the unit for For example:
This inconsistency can lead to errors. To improve clarity, consider adding comments to specify units for each parameter. A follow-up task to address this would be beneficial. |
||
| rrup_interpolants: | ||
| [ | ||
| [ | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -130,7 +130,7 @@ velocity_model: | |
| version: "2.07" | ||
| topo_type: "SQUASHED_TAPERED" | ||
| vs30: 500.0 | ||
| fault_buffer: 2000.0 | ||
| fault_buffer: 2.0 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for fixing the unit for For example:
This inconsistency can lead to errors. To improve clarity, consider adding comments to specify units for each parameter. A follow-up task to address this would be beneficial. |
||
| s_wave_velocity: 3500.0 | ||
| rrup_interpolants: | ||
| [ | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -130,7 +130,7 @@ velocity_model: | |
| version: "2.07" | ||
| topo_type: "SQUASHED_TAPERED" | ||
| vs30: 500.0 | ||
| fault_buffer: 2000.0 | ||
| fault_buffer: 2.0 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for fixing the unit for For example:
This inconsistency can lead to errors. To improve clarity, consider adding comments to specify units for each parameter. A follow-up task to address this would be beneficial. |
||
| s_wave_velocity: 3500.0 | ||
| rrup_interpolants: | ||
| [ | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for fixing the unit for
fault_buffer. This highlights a broader maintainability issue with inconsistent units in this configuration block. The schema (schemas.py) and values suggest a mix of units.For example:
min_vsis in km/s (per schema).fault_bufferis in km (per schema).s_wave_velocityappears to be in m/s, but its schema definition lacks a unit.This inconsistency can lead to errors. To improve clarity, consider adding comments to specify units for each parameter. A follow-up task to address this would be beneficial.