Skip to content

Commit c42bac1

Browse files
committed
solid.for: turn OFF the mild warning msg of time cross leap second table
because 1) no leap second has been introduced since Jan 2017 (https://data.iana.org/time-zones/tzdb/leap-seconds.list), and 2) the error introduced for missing a few leap second is small, and the accuracy would still be enough for many applications (https://geodesyworld.github.io/SOFTS/solid.htm) If there is new leap second announced by IERS, we will update the code accordingly.
1 parent f55213d commit c42bac1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/pysolid/solid.for

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@
154154

155155
*** end of processing and flag for leap second
156156

157-
if(lflag) then
157+
if(.false.) then
158158
print *, 'Mild Warning -- time crossed leap second table'
159159
print *, ' boundaries. Boundary edge value used instead'
160160
endif
@@ -293,7 +293,7 @@
293293

294294
*** end of processing and flag of leap second
295295

296-
if(lflag) then
296+
if(.false.) then
297297
print *, 'Mild Warning -- time crossed leap second table'
298298
print *, ' boundaries. Boundary edge value used instead'
299299
endif

0 commit comments

Comments
 (0)