Skip to content

Commit

Permalink
change rotation back to enabled by default
Browse files Browse the repository at this point in the history
  • Loading branch information
niyiyu committed Feb 21, 2024
1 parent dd7783a commit 0bc4220
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/noisepy/seis/datatypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ class ConfigParameters(BaseModel):
stack_method: StackMethod = Field(default=StackMethod.LINEAR.value)
keep_substack: bool = Field(default=False, description="keep all sub-stacks in final ASDF file")
# new rotation para
rotation: bool = Field(default=False, description="rotation from E-N-Z to R-T-Z")
rotation: bool = Field(default=True, description="rotation from E-N-Z to R-T-Z")
correction: bool = Field(default=False, description="angle correction due to mis-orientation")
correction_csv: Optional[str] = Field(default=None, description="Path to e.g. meso_angles.csv")
# 'RESP', or 'polozeros' to remove response
Expand Down

0 comments on commit 0bc4220

Please sign in to comment.