Storm Track
Get the tropical cyclones location, level, pressure, windspeed, and track path of active storm in major ocean basins around the world.
| Interface code | Interface | Class |
|---|---|---|
| tropicalStormTrack | Real-time storm data and storm track data | StormTrackResponse |
Parameters
StormParameter
-
stormid(required)The storm ID that needs to be queried, StormID can be obtained by Storm List, e.g.,stormid=NP2018
Sample code
Swift
Task{
do {
let parameter = StormParameter(stormid: "NP_2421")
let response = try await QWeather.instance
.tropicalStormTrack(parameter)
print(response)
} catch QWeatherError.errorResponse(let error) {
print(error)
} catch {
print(error)
}
}
Objective-C
StormParameter *parameter = [StormParameter instanceWithStormid:@"NP_2421"];
[QWeatherObjc tropicalStormTrack:parameter completionHandler:^(StormTrackResponse * _Nullable response, NSError * _Nullable error) {
if (response) {
NSLog(@"%@", response.description);
}
if (error) {
NSLog(@"%@", error.localizedDescription);
}
}];
Response
StormTrackResponse
-
codeSee Status Code -
updateTimeAPI last update time -
fxLinkResponsive web page of this data, for embedded in website or APP -
isActiveWhether it is an active storm?1= Active and0= Stopped -
now.pubTimeThe data release time from the data source -
now.latStorm latitude -
now.lonStorm longitude -
now.typeStorm type -
now.pressureCenter pressure of the storm -
now.windSpeedMaximum wind speed near the strom -
now.moveSpeedStorm moving speed -
now.moveDirStorm moving direction -
now.move360Storm movement direction in azimuth degre -
now.windRadius30.neRadiusThe northeast wind radius quadrants of the strom with level 7 wind circle, may be null -
now.windRadius30.seRadiusThe southeast wind radius quadrants of the strom with level 7 wind circle, may be null -
now.windRadius30.swRadiusThe southwest wind radius quadrants of the strom with level 7 wind circle, may be null -
now.windRadius30.nwRadiusThe northwest wind radius quadrants of the strom with level 7 wind circle, may be null -
now.windRadius50.neRadiusThe northeast wind radius quadrants of the strom with level 10 wind circle, may be null -
now.windRadius50.seRadiusThe southeast wind radius quadrants of the strom with level 10 wind circle, may be null -
now.windRadius50.swRadiusThe southwest wind radius quadrants of the strom with level 10 wind circle, may be null -
now.windRadius50.nwRadiusThe northwest wind radius quadrants of the strom with level 10 wind circle, may be null -
now.windRadius64.neRadiusThe northeast wind radius quadrants of the strom with level 12 wind circle, may be null -
now.windRadius64.seRadiusThe southeast wind radius quadrants of the strom with level 12 wind circle, may be null -
now.windRadius64.swRadiusThe southwest wind radius quadrants of the strom with level 12 wind circle, may be null -
now.windRadius64.nwRadiusThe northwest wind radius quadrants of the strom with level 12 wind circle, may be null -
track.timeStorm information release time -
track.latStorm latitude -
track.lonStorm longitude -
track.typeStorm type -
track.pressureCenter pressure of the storm -
track.windSpeedMaximum wind speed near the strom -
track.moveSpeedStorm moving speed -
track.moveDirStorm moving direction -
track.move360Storm movement direction in azimuth degre -
track.windRadius30.neRadiusThe northeast wind radius quadrants of the strom with level 7 wind circle, may be null -
track.windRadius30.seRadiusThe southeast wind radius quadrants of the strom with level 7 wind circle, may be null -
track.windRadius30.swRadiusThe southwest wind radius quadrants of the strom with level 7 wind circle, may be null -
track.windRadius30.nwRadiusThe northwest wind radius quadrants of the strom with level 7 wind circle, may be null -
track.windRadius50.neRadiusThe northeast wind radius quadrants of the strom with level 10 wind circle, may be null -
track.windRadius50.seRadiusThe southeast wind radius quadrants of the strom with level 10 wind circle, may be null -
track.windRadius50.swRadiusThe southwest wind radius quadrants of the strom with level 10 wind circle, may be null -
track.windRadius50.nwRadiusThe northwest wind radius quadrants of the strom with level 10 wind circle, may be null -
track.windRadius64.neRadiusThe northeast wind radius quadrants of the strom with level 12 wind circle, may be null -
track.windRadius64.seRadiusThe southeast wind radius quadrants of the strom with level 12 wind circle, may be null -
track.windRadius64.swRadiusThe southwest wind radius quadrants of the strom with level 12 wind circle, may be null -
track.windRadius64.nwRadiusThe northwest wind radius quadrants of the strom with level 12 wind circle, may be null -
refer.sourcesData source and other statements, may be null -
refer.licenseData license, may be null
Typhoon level
GBT 19201-2006
| Tropical cyclone level | Maximum average wind speed near the bottom center (m/s) | Maximum wind near the bottom center (level) |
|---|---|---|
| Tropical pressure (TD) | 10.8-17.1 | 6-7 |
| Tropical Storm (TS) | 17.2-24.4 | 8-9 |
| Severe Tropical Storm (STS) | 24.5-32.6 | 10-11 |
| Typhoon (TY) | 32.7-41.4 | 12-13 |
| Severe Typhoon (STY) | 41.5-50.9 | 14-15 |
| Super Typhoon (SuperTY) | ≥51.0 | 16 or above |