Slight reformatting
This commit is contained in:
parent
ff65688774
commit
cd1a587c22
1 changed files with 4 additions and 3 deletions
|
@ -158,11 +158,12 @@ class BUFRSounding(Sounding):
|
|||
|
||||
@staticmethod
|
||||
def valid_by_timestamp(station: str, timestamp: datetime.datetime) -> Self:
|
||||
epoch = timestamp.timestamp()
|
||||
request = BUFRSounding.create_request(station)
|
||||
epoch = timestamp.timestamp()
|
||||
|
||||
request = BUFRSounding.create_request(station)
|
||||
datatimes = DataAccessLayer.getAvailableTimes(request)
|
||||
by_delta = dict()
|
||||
|
||||
by_delta = dict()
|
||||
|
||||
for datatime in datatimes:
|
||||
ts = datatime.getRefTime().time / 1000.0
|
||||
|
|
Loading…
Add table
Reference in a new issue