We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45ccd8a commit ec4a819Copy full SHA for ec4a819
climada/hazard/tc_tracks.py
@@ -2918,10 +2918,10 @@ def compute_track_density(
2918
2919
if tc_track.data[0].time_step[0].item() > res / limit_ratio:
2920
warnings.warn(
2921
- f"The time step is too big. For the desired resolution, apply a time step \n"
2922
- "of {res/limit_ratio}h."
+ "The time step is too big for the current resolution. For the desired resolution, \n"
+ f"apply a time step of {res/limit_ratio}h."
2923
)
2924
- elif res < 0.01:
+ elif res < 0.1:
2925
2926
"The resolution is too high. The computation might take several minutes \n"
2927
"to hours. Consider using a resolution below 0.1°."
0 commit comments