diff --git a/js/tracker.js b/js/tracker.js index 9697df3..c1e9233 100644 --- a/js/tracker.js +++ b/js/tracker.js @@ -831,96 +831,102 @@ function deletePredictions(marker) { function showLaunchSites() { if (!launches) { launches = new L.LayerGroup(); - $.getJSON("launchSites.json", function(json) { - for (var key in json) { - if (json.hasOwnProperty(key)) { - var latlon = [json[key].lat, json[key].lon]; - var sondes = json[key].rs_types; - var sondesList = ""; - for (var y = 0; y < sondes.length; y++) { - if (Array.isArray(sondes[y]) == false) { - sondes[y] = [sondes[y]]; - } - if (sondeCodes.hasOwnProperty(sondes[y][0])) { - sondesList += sondeCodes[sondes[y][0]] - if (sondes[y].length > 1) { - sondesList += " (" + sondes[y][1] + " MHz)"; + launches_url = "https://api.v2.sondehub.org/sites"; + $.ajax({ + type: "GET", + url: launches_url, + dataType: "json", + success: function(json, textStatus) { + for (var key in json) { + if (json.hasOwnProperty(key)) { + var latlon = [json[key].position[1], json[key].position[0]]; + var sondes = json[key].rs_types; + var sondesList = ""; + for (var y = 0; y < sondes.length; y++) { + if (Array.isArray(sondes[y]) == false) { + sondes[y] = [sondes[y]]; } - } else if (unsupportedSondeCodes.hasOwnProperty(sondes[y][0])) { - sondesList += unsupportedSondeCodes[sondes[y][0]]; - sondesList += " (cannot track)"; - } else { - sondesList += sondes[y][0] + " (unknown WMO code)"; - } - if (y < sondes.length-1) { - sondesList += ", "; - } - } - var marker = new L.circleMarker(latlon, {color: '#696969', fillColor: "white", radius: 8}); - var popup = new L.popup({ autoClose: false, closeOnClick: false }); - marker.bindPopup(popup); - launches.addLayer(marker); - if (json[key].hasOwnProperty('times')) { - var popupContent = null; - popupContent = "" + json[key].station_name + "

Sondes launched: " + sondesList; - var ascent_rate = 5; - var descent_rate = 6; - var burst_altitude = 26000; - var burst_samples = ""; - var descent_samples = ""; - if (json[key].rs_types.includes("11") || json[key].rs_types.includes("82")) { //LMS6 - ascent_rate = 5; - descent_rate = 2.5; - burst_altitude = 33500; - } - if (json[key].hasOwnProperty('ascent_rate')) { - ascent_rate = json[key]["ascent_rate"]; - } - if (json[key].hasOwnProperty('descent_rate')) { - descent_rate = json[key]["descent_rate"]; - } - if (json[key].hasOwnProperty('burst_altitude')) { - burst_altitude = json[key]["burst_altitude"]; - } - if (json[key].hasOwnProperty('burst_samples')) { - burst_samples = json[key]["burst_samples"]; - } - if (json[key].hasOwnProperty('descent_samples')) { - descent_samples = json[key]["descent_samples"]; - } - popupContent += "
Launch schedule:"; - for (var x = 0; x < json[key]['times'].length; x++) { - popupContent += "
- "; - var day = json[key]['times'][x].split(":")[0]; - if (day == 0) { - popupContent += "Everyday at "; - } else if (day == 1) { - popupContent += "Monday at "; - } else if (day == 2) { - popupContent += "Tuesday at "; - } else if (day == 3) { - popupContent += "Wednesday at "; - } else if (day == 4) { - popupContent += "Thursday at "; - } else if (day == 5) { - popupContent += "Friday at "; - } else if (day == 6) { - popupContent += "Saturday at "; - } else if (day == 7) { - popupContent += "Sunday at "; + if (sondeCodes.hasOwnProperty(sondes[y][0])) { + sondesList += sondeCodes[sondes[y][0]] + if (sondes[y].length > 1) { + sondesList += " (" + sondes[y][1] + " MHz)"; + } + } else if (unsupportedSondeCodes.hasOwnProperty(sondes[y][0])) { + sondesList += unsupportedSondeCodes[sondes[y][0]]; + sondesList += " (cannot track)"; + } else { + sondesList += sondes[y][0] + " (unknown WMO code)"; + } + if (y < sondes.length-1) { + sondesList += ", "; } - popupContent += json[key]['times'][x].split(":")[1] + ":" + json[key]['times'][x].split(":")[2] + " UTC"; } - if (json[key].hasOwnProperty('notes')) { - popupContent += "
Notes: " + json[key]["notes"]; + var marker = new L.circleMarker(latlon, {color: '#696969', fillColor: "white", radius: 8}); + var popup = new L.popup({ autoClose: false, closeOnClick: false }); + marker.bindPopup(popup); + launches.addLayer(marker); + if (json[key].hasOwnProperty('times')) { + var popupContent = null; + popupContent = "" + json[key].station_name + "

Sondes launched: " + sondesList; + var ascent_rate = 5; + var descent_rate = 6; + var burst_altitude = 26000; + var burst_samples = ""; + var descent_samples = ""; + if (json[key].rs_types.includes("11") || json[key].rs_types.includes("82")) { //LMS6 + ascent_rate = 5; + descent_rate = 2.5; + burst_altitude = 33500; + } + if (json[key].hasOwnProperty('ascent_rate')) { + ascent_rate = json[key]["ascent_rate"]; + } + if (json[key].hasOwnProperty('descent_rate')) { + descent_rate = json[key]["descent_rate"]; + } + if (json[key].hasOwnProperty('burst_altitude')) { + burst_altitude = json[key]["burst_altitude"]; + } + if (json[key].hasOwnProperty('burst_samples')) { + burst_samples = json[key]["burst_samples"]; + } + if (json[key].hasOwnProperty('descent_samples')) { + descent_samples = json[key]["descent_samples"]; + } + popupContent += "
Launch schedule:"; + for (var x = 0; x < json[key]['times'].length; x++) { + popupContent += "
- "; + var day = json[key]['times'][x].split(":")[0]; + if (day == 0) { + popupContent += "Everyday at "; + } else if (day == 1) { + popupContent += "Monday at "; + } else if (day == 2) { + popupContent += "Tuesday at "; + } else if (day == 3) { + popupContent += "Wednesday at "; + } else if (day == 4) { + popupContent += "Thursday at "; + } else if (day == 5) { + popupContent += "Friday at "; + } else if (day == 6) { + popupContent += "Saturday at "; + } else if (day == 7) { + popupContent += "Sunday at "; + } + popupContent += json[key]['times'][x].split(":")[1] + ":" + json[key]['times'][x].split(":")[2] + " UTC"; + } + if (json[key].hasOwnProperty('notes')) { + popupContent += "
Notes: " + json[key]["notes"]; + } + popupContent += "
Know when this site launches? Contribute here"; + popupContent += "
"; + } else { + popupContent = "" + json[key].station_name + "

Sondes launched: " + sondesList; + popupContent += "
Know when this site launches? Contribute here"; } - popupContent += "
Know when this site launches? Contribute here"; - popupContent += "
"; - } else { - popupContent = "" + json[key].station_name + "

Sondes launched: " + sondesList; - popupContent += "
Know when this site launches? Contribute here"; + popup.setContent(popupContent); } - popup.setContent(popupContent); } } }); diff --git a/launchSites.json b/launchSites.json deleted file mode 100644 index 0830424..0000000 --- a/launchSites.json +++ /dev/null @@ -1,720 +0,0 @@ -[ - {"station": "-1", "rs_types": ["41"], "lat": -37.689883, "lon": 144.947375, "alt": 119, "station_name": "Melbourne BoM Training Annex (Training and Ozonesondes) (Australia)", "burst_altitude": 28068, "burst_samples": 52, "burst_std": 5382, "descent_rate": 5.7, "descent_samples": 48, "descent_std": 2.5}, - {"station": "-2", "rs_types": ["63", "77"], "lat": 48.337861, "lon": 2.60012, "alt": 118, "station_name": "METEOMODEM Headquarters (France)"}, - {"station": "-3", "rs_types": ["17"], "lat": 44.35714, "lon": -1.23813, "alt": 15, "station_name": "DGA Essais de missiles (France)", "burst_altitude": 20000}, - {"station": "01001", "rs_types": ["77", "23"], "lat": 70.93965, "lon": -8.66914, "alt": 10, "station_name": "Jan Mayen (Norway)", "times": ["0:12:00", "0:00:00"]}, - {"station": "01004", "rs_types": ["23"], "lat": 78.92321, "lon": 11.92314, "alt": 8, "station_name": "Ny-Alesund Ii (Norway)", "times": ["0:12:00"]}, - {"station": "01010", "rs_types": ["24"], "lat": 69.31522, "lon": 16.13091, "alt": 3, "station_name": "Andoya (Norway)", "times": ["0:00:00", "0:09:00", "0:12:00"]}, - {"station": "01028", "rs_types": ["23"], "lat": 74.5038, "lon": 19.0012, "alt": 20, "station_name": "Bjornoya (Norway)", "times": ["0:00:00", "0:06:00", "0:12:00", "0:18:00"]}, - {"station": "01241", "rs_types": [["77", "404.00"]], "lat": 63.70542, "lon": 9.61193, "alt": 30, "station_name": "Orland (Norway)", "times": ["0:00:00", "0:12:00"]}, - {"station": "01400", "rs_types": ["23"], "lat": 56.54264, "lon": 3.22379, "alt": 70, "station_name": "Ekofisk (Norway)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 23355, "burst_samples": 1210, "descent_rate": 12.0, "descent_samples": 1210}, - {"station": "01415", "rs_types": [["24", "403.000"]], "lat": 58.87423, "lon": 5.66505, "alt": 37, "station_name": "Stavanger / Sola (Norway)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 30250, "burst_samples": 1988, "descent_rate": 13.2, "descent_samples": 242, "descent_std": 2.9}, - {"station": "02183", "rs_types": ["42"], "lat": 65.5368, "lon": 22.1259, "alt": 17, "station_name": "Lulea Sol (Sweden)"}, - {"station": "02365", "rs_types": ["42"], "lat": 62.5318, "lon": 17.4361, "alt": 6, "station_name": "Sundsvall (Sweden)", "times": ["0:00:00", "0:12:00"]}, - {"station": "02513", "rs_types": ["42"], "lat": 57.6573, "lon": 12.291, "alt": 166, "station_name": "Goteborg (Sweden)", "times": ["0:00:00"], "burst_altitude": 23250, "burst_samples": 1083, "descent_rate": 6.2, "descent_samples": 1083, "ascent_rate": 4.8}, - {"station": "02544", "rs_types": ["42"], "lat": 58.52, "lon": 14.5248, "alt": 97, "station_name": "Karlsborg (Sweden)"}, - {"station": "02836", "rs_types": [["24", "404.000"], "42"], "lat": 67.3667, "lon": 26.6289, "alt": 179, "station_name": "Sodankyla (Finland)", "times": ["0:00:00", "0:12:00", "3:12:00"], "notes": "Ozone sonde launched Wednesdays", "burst_altitude": 28763, "burst_samples": 250, "burst_std": 3366, "descent_rate": 12.5, "descent_samples": 226, "descent_std": 2.9}, - {"station": "02963", "rs_types": [["24", "403.000"]], "lat": 60.8146, "lon": 23.4987, "alt": 104, "station_name": "Jokioinen (Finland)", "times": ["0:00:00", "0:06:00", "0:12:00", "0:18:00"], "burst_altitude": 27250, "burst_samples": 3715, "descent_rate": 9.8, "descent_samples": 3715, "ascent_rate": 5.6}, - {"station": "03005", "rs_types": ["41"], "lat": 60.1392, "lon": -1.1847, "alt": 82, "station_name": "Lerwick (United Kingdom)", "times": ["0:12:00", "0:00:00"]}, - {"station": "03238", "rs_types": [["42", "404.400"]], "lat": 55.0197, "lon": -1.8817, "alt": 145, "station_name": "Albemarle (United Kingdom)", "times": ["0:00:00"], "burst_altitude": 27179, "burst_samples": 158, "burst_std": 2518, "descent_rate": 5.1, "descent_samples": 141, "descent_std": 3.2}, - {"station": "03354", "rs_types": [["42", "404.200"]], "lat": 53.0056, "lon": -1.2511, "alt": 117, "station_name": "Nottingham Weather Centre (United Kingdom)", "times": ["0:00:00"], "burst_altitude": 27803, "burst_samples": 888, "descent_rate": 4.5, "descent_samples": 165, "descent_std": 3.0}, - {"station": "03502", "rs_types": ["41"], "lat": 52.1394, "lon": -4.5711, "alt": 133, "station_name": "Aberporth (United Kingdom)", "times": ["4:06:00", "2:06:00", "1:06:00"]}, - {"station": "03743", "rs_types": [["41", "404.400"]], "lat": 51.2017, "lon": -1.8058, "alt": 132, "station_name": "Larkhill (United Kingdom)", "times": ["2:06:00", "2:09:00", "3:06:00", "3:09:00", "4:06:00", "5:06:00", "1:06:00", "5:09:00"], "burst_altitude": 15388, "burst_samples": 183, "burst_std": 1050, "descent_rate": 3.1, "descent_samples": 46, "descent_std": 1.8}, - {"station": "03808", "rs_types": [["41", "405.700"]], "lat": 50.218698, "lon": -5.326914, "alt": 87, "station_name": "Camborne (United Kingdom)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 34686, "burst_samples": 147, "burst_std": 3224, "descent_rate": 7.2, "descent_samples": 124, "descent_std": 3.0}, - {"station": "03882", "rs_types": [["42", "404.800"]], "lat": 50.891306, "lon": 0.317521, "alt": 52, "station_name": "Herstmonceux (United Kingdom)", "times": ["0:00:00", "1:12:00"], "burst_altitude": 29039, "burst_samples": 159, "burst_std": 2127, "descent_rate": 5.0, "descent_samples": 141, "descent_std": 3.2}, - {"station": "03918", "rs_types": [["42", "404.200"]], "lat": 54.5272, "lon": -6.3333, "alt": 18, "station_name": "Castor Bay (United Kingdom)", "times": ["0:00:00"], "burst_altitude": 29277, "burst_samples": 172, "burst_std": 3126, "descent_rate": 4.8, "descent_samples": 153, "descent_std": 3.0}, - {"station": "03953", "rs_types": ["41"], "lat": 51.9381, "lon": -10.2433, "alt": 9, "station_name": "Valentia Observatory (Ireland)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 32000, "burst_samples": 473, "descent_rate": 8.9, "descent_samples": 473, "ascent_rate": 5.5}, - {"station": "04018", "rs_types": ["42"], "lat": 63.9806, "lon": -22.595, "alt": 52, "station_name": "Keflavikurflugvollur (Iceland)", "times": ["0:12:00", "0:00:00"]}, - {"station": "04220", "rs_types": ["41"], "lat": 68.7081, "lon": -52.8517, "alt": 43, "station_name": "Egedesminde (Greenland)", "times": ["0:12:00", "0:00:00"]}, - {"station": "04270", "rs_types": ["41"], "lat": 61.1667, "lon": -45.4167, "alt": 34, "station_name": "Narsarsuaq (Greenland)", "times": ["0:12:00", "0:00:00"]}, - {"station": "04320", "rs_types": ["41"], "lat": 76.7694, "lon": -18.6681, "alt": 11, "station_name": "Danmarkshavn (Greenland)", "times": ["0:12:00", "0:00:00"]}, - {"station": "04339", "rs_types": ["41"], "lat": 70.4844, "lon": -21.9511, "alt": 65, "station_name": "Scoresbysund (Greenland)", "times": ["0:12:00", "0:00:00"]}, - {"station": "04360", "rs_types": ["77"], "lat": 65.6111, "lon": -37.6367, "alt": 50, "station_name": "Tasiilaq (Greenland)", "times": ["0:12:00", "0:00:00"]}, - {"station": "04417", "rs_types": ["23"], "lat": 72.5803, "lon": -38.4586, "alt": 3255, "station_name": "Geosummit (Greenland)"}, - {"station": "06011", "rs_types": ["07"], "lat": 62.0231, "lon": -6.7647, "alt": 54, "station_name": "Thorshavn (Denmark)", "times": ["0:00:00", "0:12:00"]}, - {"station": "06260", "rs_types": [["23", "403.900"]], "lat": 52.0989, "lon": 5.1797, "alt": 2, "station_name": "De Bilt (Netherlands)", "times": ["0:00:00", "4:12:00"], "notes": "Ozone sonde launched Thursdays", "burst_altitude": 32951, "burst_samples": 169, "burst_std": 2595, "descent_rate": 8.0, "descent_samples": 155, "descent_std": 3.8}, - {"station": "06447", "rs_types": [["23", "403.500"]], "lat": 50.7969, "lon": 4.3581, "alt": 100, "station_name": "Uccle (Belgium)", "times": ["1:12:00", "3:12:00", "5:12:00"], "burst_altitude": 34093, "burst_samples": 53, "burst_std": 871, "descent_rate": 6.4, "descent_samples": 45, "descent_std": 3.3}, - {"station": "06458", "rs_types": [["34", "403.000"]], "lat": 50.7456, "lon": 4.7633, "alt": 105, "station_name": "Beauvechain (Belgium)", "times": ["0:00:00"], "burst_altitude": 25803, "burst_samples": 1286, "descent_rate": 12.5, "descent_samples": 1286, "ascent_rate": 4.8}, - {"station": "06610", "rs_types": ["41", "42"], "lat": 46.8117, "lon": 6.9425, "alt": 490, "station_name": "Payerne (Switzerland)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 34992, "burst_samples": 3130, "descent_rate": 6.5, "descent_samples": 3130, "ascent_rate": 5.3}, - {"station": "07110", "rs_types": ["77"], "lat": 48.444549, "lon": -4.4124, "alt": 99, "station_name": "Brest (France)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 35000, "burst_samples": 570, "descent_rate": 9.5, "descent_samples": 570, "ascent_rate": 5.3}, - {"station": "07145", "rs_types": ["77"], "lat": 48.773097, "lon": 2.009377, "alt": 168, "station_name": "Trappes (France)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 34830, "burst_samples": 1384, "descent_rate": 4.5, "descent_samples": 1384, "ascent_rate": 5.9}, - {"station": "07255", "rs_types": ["17"], "lat": 47.0627, "lon": 2.4335, "alt": 165, "station_name": "Bourges (France)"}, - {"station": "07510", "rs_types": ["77"], "lat": 44.831398, "lon": -0.691992, "alt": 49, "station_name": "Bordeaux / Merignac (France)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 28679, "burst_samples": 308, "burst_std": 1891, "descent_rate": 6.7, "descent_samples": 267, "descent_std": 3.5}, - {"station": "07630", "rs_types": ["77"], "lat": 43.577, "lon": 1.3746, "alt": 160, "station_name": "Toulouse (France)", "burst_altitude": 2800, "burst_samples": 60, "descent_rate": 2.9, "descent_samples": 60, "ascent_rate": 5.1}, - {"station": "07645", "rs_types": ["63"], "lat": 43.856576, "lon": 4.405732, "alt": 60, "station_name": "Nimes / Courbessac (France)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 27830, "burst_samples": 311, "burst_std": 3662, "descent_rate": 5.9, "descent_samples": 257, "descent_std": 3.6}, - {"station": "07761", "rs_types": ["77"], "lat": 41.917808, "lon": 8.793269, "alt": 6, "station_name": "Ajaccio (France)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 35847, "burst_samples": 10, "burst_std": 924, "descent_rate": 5.6, "descent_samples": 10, "descent_std": 2.8}, - {"station": "08001", "rs_types": ["24"], "lat": 43.3658, "lon": -8.4214, "alt": 58, "station_name": "La Coruna (Spain)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 26930, "burst_samples": 353, "descent_rate": 4, "descent_samples": 353, "ascent_rate": 4.8}, - {"station": "08023", "rs_types": ["23"], "lat": 43.4911, "lon": -3.8006, "alt": 64, "station_name": "Santander (Spain)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 25360, "burst_samples": 9, "burst_std": 3171, "descent_rate": 5.0, "descent_samples": 7, "descent_std": 1.8}, - {"station": "08190", "rs_types": ["77"], "lat": 41.3844, "lon": 2.1181, "alt": 95, "station_name": "Barcelona Servei (Spain)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 25325, "burst_samples": 81, "descent_rate": 15, "descent_samples": 81, "ascent_rate": 6}, - {"station": "08221", "rs_types": ["24"], "lat": 40.4653, "lon": -3.5797, "alt": 609, "station_name": "Madrid / Barajas (Spain)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 26956, "burst_samples": 273, "burst_std": 3953, "descent_rate": 4.7, "descent_samples": 251, "descent_std": 2.9}, - {"station": "08302", "rs_types": ["24"], "lat": 39.6058, "lon": 2.7067, "alt": 41, "station_name": "Mallorca-Son Bonet (Spain)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 28250, "burst_samples": 72, "descent_rate": 4, "descent_samples": 72, "ascent_rate": 4.7}, - {"station": "08383", "rs_types": [["24", "402.500"]], "lat": 37.2703, "lon": -6.9233, "alt": 20, "station_name": "Huelva (Spain)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 30221, "burst_samples": 223, "burst_std": 2926, "descent_rate": 5.6, "descent_samples": 197, "descent_std": 3.2}, - {"station": "08430", "rs_types": ["77"], "lat": 38.0019, "lon": -1.1708, "alt": 61, "station_name": "Murcia (Spain)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 25923, "burst_samples": 243, "burst_std": 3398, "descent_rate": 4.3, "descent_samples": 208, "descent_std": 2.6}, - {"station": "08508", "rs_types": ["23"], "lat": 38.7678, "lon": -27.0856, "alt": 112, "station_name": "Lajes / Santa Rita Acores (Portugal)", "times": ["0:12:00"]}, - {"station": "08522", "rs_types": ["23"], "lat": 32.6333, "lon": -16.9, "alt": 58, "station_name": "Funchal (Portugal)", "times": ["0:12:00"]}, - {"station": "08536", "rs_types": [["24", "403.000"]], "lat": 38.7664, "lon": -9.1281, "alt": 114, "station_name": "Lisboa / Portela (Portugal)", "times": ["0:12:00"], "burst_altitude": 25574, "burst_samples": 92, "burst_std": 2886, "descent_rate": 4.7, "descent_samples": 88, "descent_std": 3.1}, - {"station": "10035", "rs_types": [["24", "402.500"]], "lat": 54.5333, "lon": 9.55, "alt": 43, "station_name": "Schleswig (Germany)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 31526, "burst_samples": 2919, "descent_rate": 5.3, "descent_samples": 269, "descent_std": 3.2}, - {"station": "10113", "rs_types": ["24"], "lat": 53.7139, "lon": 7.1525, "alt": 11, "station_name": "Norderney (Germany)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 32213, "burst_samples": 2632, "descent_rate": 4.9, "descent_samples": 261, "descent_std": 3.0}, - {"station": "10184", "rs_types": [["24", "402.300"]], "lat": 54.0978, "lon": 13.4075, "alt": 2, "station_name": "Greifswald (Germany)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 32504, "burst_samples": 3304, "descent_rate": 5.2, "descent_samples": 202, "descent_std": 2.8}, - {"station": "10238", "rs_types": [["23", "405.700"]], "lat": 52.8153, "lon": 9.9247, "alt": 70, "station_name": "Bergen-Hohne (Germany)", "times": ["0:12:00", "0:18:00", "0:00:00", "0:06:00"], "burst_altitude": 33579, "burst_samples": 6622, "descent_rate": 7.8, "descent_samples": 582, "descent_std": 3.5}, - {"station": "10304", "rs_types": ["23"], "lat": 52.7156, "lon": 7.3175, "alt": 21, "station_name": "Meppen (Germany)", "times": ["2:03:00", "2:06:00", "2:09:00", "3:03:00", "3:06:00", "3:09:00", "4:03:00", "4:06:00", "5:03:00", "5:09:00", "1:03:00", "1:06:00", "1:09:00", "4:09:00", "5:06:00"], "burst_altitude": 23687, "burst_samples": 2751, "descent_rate": 4.9, "descent_samples": 280, "descent_std": 3.3}, - {"station": "10393", "rs_types": ["23"], "lat": 52.2167, "lon": 14.1167, "alt": 98, "station_name": "Lindenberg (Germany)", "times": ["0:00:00", "0:06:00", "0:12:00", "0:18:00"], "burst_altitude": 33786, "burst_samples": 6816, "descent_rate": 6.0, "descent_samples": 523, "descent_std": 3.6}, - {"station": "10410", "rs_types": [["24", "405.300"]], "lat": 51.4056, "lon": 6.9686, "alt": 152, "station_name": "Essen (Germany)", "times": ["0:00:00", "0:06:00", "0:12:00"], "burst_altitude": 31795, "burst_samples": 3322, "burst_std": 2942, "descent_rate": 4.4, "descent_samples": 346, "descent_std": 2.9}, - {"station": "10548", "rs_types": ["24"], "lat": 50.5617, "lon": 10.3772, "alt": 450, "station_name": "Meiningen (Germany)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 31547, "burst_samples": 3173, "burst_std": 2956, "descent_rate": 4.6, "descent_samples": 283, "descent_std": 2.7}, - {"station": "10618", "rs_types": ["23"], "lat": 49.6928, "lon": 7.3264, "alt": 376, "station_name": "Idar-Oberstein (Germany)", "times": ["0:06:00", "0:12:00", "0:00:00", "0:18:00"], "burst_altitude": 33509, "burst_samples": 7456, "descent_rate": 8.3, "descent_samples": 571, "descent_std": 3.3}, - {"station": "10739", "rs_types": ["24"], "lat": 48.8333, "lon": 9.20117, "alt": 314, "station_name": "Stuttgart / Schnarrenberg (Germany)", "times": ["0:00:00", "0:06:00", "0:12:00"], "burst_altitude": 32026, "burst_samples": 3666, "descent_rate": 3.7, "descent_samples": 3666}, - {"station": "10771", "rs_types": ["23"], "lat": 49.4283, "lon": 11.9022, "alt": 419, "station_name": "Kuemmersbruck (Germany)", "times": ["0:06:00", "0:18:00", "0:00:00", "0:12:00"], "burst_altitude": 34644, "burst_samples": 6167, "descent_rate": 8.1, "descent_samples": 547, "descent_std": 3.0}, - {"station": "10868", "rs_types": ["24"], "lat": 48.2442, "lon": 11.5525, "alt": 484, "station_name": "Muenchen-Oberschleissheim (Germany)", "times": ["0:00:00", "0:06:00", "0:12:00"], "burst_altitude": 31176, "burst_samples": 3492, "descent_rate": 5, "descent_samples": 3492, "ascent_rate": 5.4}, - {"station": "10954", "rs_types": ["23"], "lat": 47.8342, "lon": 10.8667, "alt": 739, "station_name": "Altenstadt (Germany)", "times": ["2:03:00", "2:09:00", "2:15:00", "3:03:00", "3:09:00", "3:15:00", "1:03:00", "1:15:00", "4:03:00", "4:09:00", "4:15:00", "5:03:00", "1:09:00"], "burst_altitude": 24197, "burst_samples": 2999, "descent_rate": 5.0, "descent_samples": 2999}, - {"station": "10962", "rs_types": ["23", "14"], "lat": 47.8019, "lon": 11.0119, "alt": 977, "station_name": "Hohenpeissenberg (Germany)", "times": ["1:06:00"], "burst_altitude": 34273, "burst_samples": 638, "descent_rate": 4.5, "descent_samples": 638}, - {"station": "11010", "rs_types": ["42"], "lat": 48.2353, "lon": 14.1881, "alt": 298, "station_name": "Linz / Hoersching-Flughafen (Austria)", "times": ["0:03:00"], "burst_altitude": 23470, "burst_samples": 1523, "descent_rate": 5, "descent_samples": 81523, "ascent_rate": 5}, - {"station": "11035", "rs_types": ["41", "63"], "lat": 48.2486, "lon": 16.3564, "alt": 203, "station_name": "Wien / Hohe Warte (Austria)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 33697, "burst_samples": 3772, "descent_rate": 4.0, "descent_samples": 3772, "ascent_rate": 6.5}, - {"station": "11120", "rs_types": ["42"], "lat": 47.2603, "lon": 11.3439, "alt": 581, "station_name": "Innsbruck-Flughafen (Austria)", "times": ["0:03:00"], "burst_altitude": 23653, "burst_samples": 1584, "descent_rate": 5.0, "descent_samples": 1584, "ascent_rate": 4.4}, - {"station": "11240", "rs_types": [["42", "404.700"]], "lat": 46.9931, "lon": 15.4392, "alt": 340, "station_name": "Graz-Thalerhof-Flughafen (Austria)", "times": ["0:03:00"], "burst_altitude": 24411, "burst_samples": 1485, "descent_rate": 5.1, "descent_samples": 1485, "ascent_rate": 4.3}, - {"station": "11520", "rs_types": ["23", "41"], "lat": 50.0078, "lon": 14.4469, "alt": 304, "station_name": "Praha-Libus (Czech Republic)", "times": ["0:06:00", "0:12:00", "0:00:00"], "burst_altitude": 34275, "burst_samples": 4880, "descent_rate": 11.4, "descent_samples": 343, "descent_std": 2.9}, - {"station": "11747", "rs_types": [["23", "402.100"]], "lat": 49.4525, "lon": 17.1347, "alt": 216, "station_name": "Prostejov (Czech Republic)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 34183, "burst_samples": 3262, "descent_rate": 15, "descent_samples": 3262}, - {"station": "11952", "rs_types": ["23"], "lat": 49.0333, "lon": 20.3167, "alt": 706, "station_name": "Poprad / Ganovce (Slovakia)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 35264, "burst_samples": 3225, "descent_rate": 20, "descent_samples": 3225}, - {"station": "12120", "rs_types": ["41"], "lat": 54.7536, "lon": 17.5347, "alt": 2, "station_name": "Leba (Poland)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 32743, "burst_samples": 3120, "descent_rate": 11.6, "descent_samples": 181, "descent_std": 2.7}, - {"station": "12374", "rs_types": ["41"], "lat": 52.4078, "lon": 20.9564, "alt": 94, "station_name": "Legionowo (Poland)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 32542, "burst_samples": 3221, "descent_rate": 11.0, "descent_samples": 3221}, - {"station": "12425", "rs_types": [["41", "403.000"]], "lat": 51.1131, "lon": 16.8811, "alt": 116, "station_name": "Wroclaw I (Poland)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 32885, "burst_samples": 3144, "descent_rate": 11.0, "descent_samples": 3144}, - {"station": "12843", "rs_types": ["24"], "lat": 47.4333, "lon": 19.1833, "alt": 138, "station_name": "Budapest / Lorinc (Hungary)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 32918, "burst_samples": 2947, "descent_rate": 15, "descent_samples": 2947}, - {"station": "12982", "rs_types": ["24"], "lat": 46.2558, "lon": 20.0905, "alt": 77, "station_name": "Szeged (Hungary)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 33500, "burst_samples": 2841, "descent_rate": 12.1, "descent_samples": 2841, "ascent_rate": 5.4}, - {"station": "13275", "rs_types": [["77", "402.800"]], "lat": 44.771, "lon": 20.4243, "alt": 203, "station_name": "Beograd / Kosutnjak (Serbia)", "times": ["0:06:00", "0:12:00", "0:18:00", "0:00:00"], "burst_altitude": 29551, "burst_samples": 264, "burst_std": 3403, "descent_rate": 9.4, "descent_samples": 88, "descent_std": 2.5}, - {"station": "13388", "rs_types": ["77"], "lat": 43.3266, "lon": 21.8976, "alt": 202, "station_name": "Nis (Serbia)", "times": ["0:06:00", "0:12:00", "0:18:00", "0:00:00"], "burst_altitude": 32000, "burst_samples": 2206, "descent_rate": 11.1, "descent_samples": 2206, "ascent_rate": 5.3}, - {"station": "14015", "rs_types": [["63", "403.000"]], "lat": 46.0656, "lon": 14.5122, "alt": 299, "station_name": "Ljubljana / Bezigrad (Slovenia)", "times": ["0:06:00"], "burst_altitude": 21654, "burst_samples": 1420, "descent_rate": 8, "descent_samples": 1420, "ascent_rate": 4}, - {"station": "14240", "rs_types": ["41"], "lat": 45.8219, "lon": 16.0336, "alt": 123, "station_name": "Zagreb / Maksimir (Croatia)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 32134, "burst_samples": 2972, "descent_rate": 15.0, "descent_samples": 2972}, - {"station": "14430", "rs_types": ["42"], "lat": 44.0969, "lon": 15.3403, "alt": 79, "station_name": "Zadar Rs (Croatia)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 31587, "burst_samples": 2495, "descent_rate": 19.5, "descent_samples": 2495, "ascent_rate": 5.9}, - {"station": "15420", "rs_types": ["41"], "lat": 44.5106, "lon": 26.0781, "alt": 90, "station_name": "Bucuresti / Imh (Romania)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 26000, "burst_samples": 1012, "descent_rate": 8, "descent_samples": 1012, "ascent_rate": 4.4}, - {"station": "15614", "rs_types": [["41", "405.300"]], "lat": 42.6539, "lon": 23.3832, "alt": 586, "station_name": "Sofia Observ. (Bulgaria)", "times": ["0:06:00", "0:12:00"], "burst_altitude": 28296, "burst_samples": 276, "burst_std": 1580, "descent_rate": 12.6, "descent_samples": 242, "descent_std": 3.1}, - {"station": "16045", "rs_types": ["41", "42"], "lat": 45.9806, "lon": 13.0592, "alt": 51, "station_name": "Udine / Rivolto (Italy)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 32979, "burst_samples": 3006, "descent_rate": 4, "descent_samples": 3006, "ascent_rate": 5.5}, - {"station": "16064", "rs_types": ["42"], "lat": 45.52, "lon": 8.67, "alt": 178, "station_name": "Novara / Cameri (Italy)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 33000, "burst_samples": 261, "descent_rate": 4.5, "descent_samples": 261, "ascent_rate": 5.5}, - {"station": "16113", "rs_types": ["42"], "lat": 44.5392, "lon": 7.6125, "alt": 386, "station_name": "Cuneo-Levaldigi (Italy)", "times": ["0:21:00", "0:09:00"], "burst_altitude": 32752, "burst_samples": 2236, "descent_rate": 8.4, "descent_samples": 2236}, - {"station": "16144", "rs_types": ["24"], "lat": 44.6539, "lon": 11.6225, "alt": 10, "station_name": "S. Pietro Capofiume Molinella Bologna (Italy)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 27489, "burst_samples": 1576, "descent_rate": 5, "descent_samples": 1576}, - {"station": "16245", "rs_types": ["42"], "lat": 41.6704, "lon": 12.4504, "alt": 6, "station_name": "Pratica Di Mare (Italy)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 35142, "burst_samples": 278, "burst_std": 3387, "descent_rate": 6.3, "descent_samples": 263, "descent_std": 3.1}, - {"station": "16332", "rs_types": ["42"], "lat": 40.2425, "lon": 18.1405, "alt": 48, "station_name": "Lecce (Italy)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 33250, "burst_samples": 531, "descent_rate": 3.6, "descent_samples": 531, "ascent_rate": 5.1}, - {"station": "16429", "rs_types": ["41"], "lat": 37.9142, "lon": 12.4914, "alt": 7, "station_name": "Trapani / Birgi (Italy)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 32750, "burst_samples": 1946, "descent_rate": 6.4, "descent_samples": 1946, "ascent_rate": 5.2}, - {"station": "16546", "rs_types": ["41"], "lat": 39.3461, "lon": 8.9675, "alt": 29, "station_name": "Decimomannu (Italy)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 33500, "burst_samples": 1064, "descent_rate": 7.6, "descent_samples": 1064, "ascent_rate": 5.3}, - {"station": "16622", "rs_types": [["23", "403.000"]], "lat": 40.5272, "lon": 22.9714, "alt": 8, "station_name": "Thessaloniki Airport (Greece)", "times": ["0:00:00", "0:06:00"], "burst_altitude": 25530, "burst_samples": 15, "burst_std": 3168, "descent_rate": 7.5, "descent_samples": 15, "descent_std": 3.3}, - {"station": "16716", "rs_types": ["23"], "lat": 37.8897, "lon": 23.7417, "alt": 28, "station_name": "Athens Airport (Greece)", "times": ["0:12:00"], "burst_altitude": 24789, "burst_samples": 66, "burst_std": 5128, "descent_rate": 10.7, "descent_samples": 45, "descent_std": 3.1}, - {"station": "16754", "rs_types": ["23"], "lat": 35.3353, "lon": 25.1819, "alt": 37, "station_name": "Heraklion Airport (Greece)", "times": ["0:00:00"]}, - {"station": "17030", "rs_types": ["54"], "lat": 41.2833, "lon": 36.3, "alt": 4, "station_name": "Samsun (Turkey)", "times": ["0:00:00", "0:12:00"]}, - {"station": "17064", "rs_types": ["54"], "lat": 40.9113, "lon": 29.1559, "alt": 17, "station_name": "Istanbul (Turkey)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 32750, "burst_samples": 415, "descent_rate": 2.1, "descent_samples": 415, "ascent_rate": 6.1}, - {"station": "17095", "rs_types": ["54", "35"], "lat": 39.9, "lon": 41.2833, "alt": 1869, "station_name": "Erzurum Bolge (Turkey)", "times": ["0:00:00", "0:12:00"]}, - {"station": "17130", "rs_types": ["54"], "lat": 39.9714, "lon": 32.8633, "alt": 891, "station_name": "Ankara / Central (Turkey)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 30992, "burst_samples": 67, "burst_std": 5087, "descent_rate": 5.8, "descent_samples": 43, "descent_std": 2.3}, - {"station": "17220", "rs_types": ["54"], "lat": 38.4333, "lon": 27.1667, "alt": 25, "station_name": "Izmir (Turkey)", "times": ["0:12:00"], "burst_altitude": 33131, "burst_samples": 182, "burst_std": 4580, "descent_rate": 6.8, "descent_samples": 141, "descent_std": 3.1}, - {"station": "17240", "rs_types": ["54"], "lat": 37.75, "lon": 30.55, "alt": 997, "station_name": "Isparta (Turkey)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 33500, "burst_samples": 309, "descent_rate": 6.6, "descent_samples": 309, "ascent_rate": 5.8}, - {"station": "17351", "rs_types": ["54"], "lat": 36.9833, "lon": 35.35, "alt": 28, "station_name": "Adana (Turkey)", "times": ["0:00:00", "0:12:00"]}, - {"station": "17607", "rs_types": [["23", "403.000"]], "lat": 35.1436, "lon": 33.3966, "alt": 162, "station_name": "Athalassa (Cyprus)", "times": ["0:06:00", "0:12:00"], "burst_altitude": 24631, "burst_samples": 334, "burst_std": 7353, "descent_rate": 7.0, "descent_samples": 276, "descent_std": 3.3}, - {"station": "20046", "rs_types": ["19", "62"], "lat": 80.6264, "lon": 58.0589, "alt": 20, "station_name": "Polargmo Im. E. T. Krenkelja (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "20292", "rs_types": ["90", "62"], "lat": 77.7131, "lon": 104.2919, "alt": 13, "station_name": "Gmo Im. E. K. Fedorova (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "20674", "rs_types": ["19"], "lat": 73.5136, "lon": 80.4064, "alt": 47, "station_name": "Ostrov Dikson (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "20744", "rs_types": ["62", "90"], "lat": 72.3667, "lon": 52.7, "alt": 16, "station_name": "Malye Karmakuly (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "21432", "rs_types": ["90"], "lat": 76, "lon": 137.8667, "alt": 10, "station_name": "Ostrov Kotel'Nyj (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "21824", "rs_types": ["62", "90"], "lat": 71.5833, "lon": 128.9167, "alt": 8, "station_name": "Tiksi (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "21946", "rs_types": ["90", "58"], "lat": 70.6167, "lon": 147.8833, "alt": 61, "station_name": "Chokurdah (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "22217", "rs_types": ["90"], "lat": 67.1692, "lon": 32.3542, "alt": 26, "station_name": "Kandalaksa (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "22271", "rs_types": ["90"], "lat": 67.8767, "lon": 44.1742, "alt": 16, "station_name": "Sojna (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "22522", "rs_types": ["69", "90", "89"], "lat": 64.95, "lon": 34.65, "alt": 10, "station_name": "Kem'- Port (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "22543", "rs_types": ["62", "90"], "lat": 64.6247, "lon": 40.5114, "alt": 6, "station_name": "Arhangel'sk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "22820", "rs_types": ["62"], "lat": 61.8167, "lon": 34.2667, "alt": 112, "station_name": "Petrozavodsk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "22845", "rs_types": ["90"], "lat": 61.5067, "lon": 38.9347, "alt": 121, "station_name": "Kargopol (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "23078", "rs_types": ["90"], "lat": 69.3472, "lon": 88.2639, "alt": 62, "station_name": "Norilsk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "23205", "rs_types": ["19"], "lat": 67.625, "lon": 53.0175, "alt": 7, "station_name": "Nar'Jan-Mar (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "23330", "rs_types": ["68", "62"], "lat": 66.5319, "lon": 66.6744, "alt": 16, "station_name": "Salehard (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "23415", "rs_types": ["90", "62"], "lat": 65.1167, "lon": 57.1, "alt": 56, "station_name": "Pechora (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "23472", "rs_types": ["19"], "lat": 65.7944, "lon": 87.9889, "alt": 32, "station_name": "Turuhansk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "23802", "rs_types": ["90"], "lat": 61.6767, "lon": 50.7806, "alt": 116, "station_name": "Syktyvkar (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "23884", "rs_types": ["19", "90"], "lat": 61.5806, "lon": 90.0306, "alt": 63, "station_name": "Bor (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "23921", "rs_types": ["62"], "lat": 60.6833, "lon": 60.45, "alt": 101, "station_name": "Ivdel (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "23933", "rs_types": ["62", "90"], "lat": 61.0278, "lon": 69.1189, "alt": 40, "station_name": "Hanty-Mansijsk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "23955", "rs_types": ["90"], "lat": 60.4333, "lon": 77.8667, "alt": 47, "station_name": "Aleksandrovskoe (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "24266", "rs_types": ["90"], "lat": 67.5667, "lon": 133.4, "alt": 137, "station_name": "Verhojansk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "24343", "rs_types": ["62", "90", "29", "20"], "lat": 66.7667, "lon": 123.4, "alt": 93, "station_name": "Zhigansk (Russia)", "times": ["0:12:00", "0:00:00"]}, - {"station": "24507", "rs_types": ["90"], "lat": 64.2694, "lon": 100.2167, "alt": 186, "station_name": "Tura (Russia)", "times": ["0:00:00"]}, - {"station": "24641", "rs_types": ["90"], "lat": 63.7833, "lon": 121.6167, "alt": 107, "station_name": "Viljujsk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "24688", "rs_types": ["62", "90"], "lat": 63.25, "lon": 143.15, "alt": 745, "station_name": "Ojmjakon (Russia)"}, - {"station": "24726", "rs_types": ["90", "89", "58"], "lat": 62.5333, "lon": 113.8667, "alt": 347, "station_name": "Mirnvy (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "24908", "rs_types": ["19", "90"], "lat": 60.3361, "lon": 102.2944, "alt": 260, "station_name": "Vanavara (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "24959", "rs_types": ["90", "89"], "lat": 62.0167, "lon": 129.7167, "alt": 103, "station_name": "Jakutsk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "25123", "rs_types": ["62", "90"], "lat": 68.75, "lon": 161.2833, "alt": 32, "station_name": "Cherskij (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "25428", "rs_types": ["62", "90"], "lat": 65.2333, "lon": 160.5333, "alt": 265, "station_name": "Omolon (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "25703", "rs_types": ["90", "28"], "lat": 62.9167, "lon": 152.4167, "alt": 207, "station_name": "Sejmchan (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "25913", "rs_types": ["90"], "lat": 59.55, "lon": 150.7833, "alt": 118, "station_name": "Magadan (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "26038", "rs_types": [["42", "404.000"]], "lat": 59.3981, "lon": 24.6028, "alt": 34, "station_name": "Tallinn (Estonia)", "times": ["0:00:00"], "burst_altitude": 27272, "burst_samples": 557, "descent_rate": 12.8, "descent_samples": 130, "descent_std": 2.5}, - {"station": "26075", "rs_types": ["90"], "lat": 59.95, "lon": 30.7, "alt": 72, "station_name": "St. Petersburg (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "26298", "rs_types": ["62", "90"], "lat": 57.8833, "lon": 34.0333, "alt": 178, "station_name": "Bologoe (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "26435", "rs_types": ["41"], "lat": 56.6425, "lon": 25.1283, "alt": 83, "station_name": "Skriveri (Latvia)", "burst_altitude": 26142, "burst_samples": 25, "burst_std": 826, "descent_rate": 11.5, "descent_samples": 21, "descent_std": 2.6}, - {"station": "26477", "rs_types": ["62", "26"], "lat": 56.35, "lon": 30.6167, "alt": 98, "station_name": "Velikie Luki (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "26629", "rs_types": ["41"], "lat": 54.8839, "lon": 23.8358, "alt": 76, "station_name": "Kaunas (Lithuania)", "times": ["0:00:00"], "burst_altitude": 32621, "burst_samples": 134, "burst_std": 2368, "descent_rate": 12.3, "descent_samples": 121, "descent_std": 3.4}, - {"station": "26708", "rs_types": ["62", "90", "19"], "lat": 54.69639, "lon": 20.76583, "alt": 14, "station_name": "Kaliningrad (Russia)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 28216, "burst_samples": 14, "burst_std": 4142, "descent_rate": 12.4, "descent_samples": 12, "descent_std": 3.5}, - {"station": "26781", "rs_types": ["90"], "lat": 54.75, "lon": 32.0667, "alt": 241, "station_name": "Smolensk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "26850", "rs_types": [["41","403.000"]], "lat": 53.9046, "lon": 27.5433, "alt": 234, "station_name": "Minsk (Belarus)", "times": ["0:00:00"], "burst_altitude": 29142, "burst_samples": 164, "descent_rate": 9.5, "descent_samples": 13, "descent_std": 1.3}, - {"station": "27038", "rs_types": ["90"], "lat": 59.3183, "lon": 39.9256, "alt": 133, "station_name": "Vologda (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "27199", "rs_types": ["62", "90"], "lat": 58.5667, "lon": 49.5667, "alt": 158, "station_name": "Kirov (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "27459", "rs_types": ["19"], "lat": 56.2667, "lon": 44, "alt": 157, "station_name": "Niznij Novgorod (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "27707", "rs_types": ["19", "58", "90"], "lat": 54.1, "lon": 35.35, "alt": 239, "station_name": "Suhinici (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "27730", "rs_types": ["62", "90"], "lat": 54.6333, "lon": 39.7, "alt": 158, "station_name": "Rjazan (Russia)", "times": ["0:12:00", "0:00:00"]}, - {"station": "27962", "rs_types": ["90", "62"], "lat": 53.1228, "lon": 45.0189, "alt": 174, "station_name": "Penza (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "27995", "rs_types": ["90"], "lat": 52.9833, "lon": 49.4333, "alt": 45, "station_name": "Samara Bezencuk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "28225", "rs_types": ["19"], "lat": 57.9583, "lon": 56.1972, "alt": 170, "station_name": "Perm' (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "28275", "rs_types": ["62"], "lat": 58.15, "lon": 68.25, "alt": 44, "station_name": "Tobol'Sk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "28445", "rs_types": ["90"], "lat": 56.7333, "lon": 61.0667, "alt": 290, "station_name": "Verhnee Dubrovo (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "28661", "rs_types": ["62"], "lat": 55.4567, "lon": 65.4011, "alt": 79, "station_name": "Kurgan (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "28722", "rs_types": ["90"], "lat": 54.7106, "lon": 55.815, "alt": 105, "station_name": "Ufa (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "28951", "rs_types": ["77"], "lat": 53.2333, "lon": 63.6167, "alt": 151, "station_name": "Kostanai (Kazakhstan)", "times": ["0:00:00", "0:12:00"]}, - {"station": "29231", "rs_types": ["90", "89"], "lat": 58.3167, "lon": 82.95, "alt": 76, "station_name": "Kolpasevo (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "29263", "rs_types": ["90"], "lat": 58.4528, "lon": 92.2028, "alt": 78, "station_name": "Enisejsk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "29282", "rs_types": ["90"], "lat": 58.3833, "lon": 97.45, "alt": 134, "station_name": "Bogucany (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "29572", "rs_types": ["09", "90"], "lat": 56.1806, "lon": 92.6056, "alt": 296, "station_name": "Emel'Janovo (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "29612", "rs_types": ["19"], "lat": 55.3544, "lon": 78.3083, "alt": 120, "station_name": "Barabinsk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "29634", "rs_types": ["90"], "lat": 54.9667, "lon": 82.95, "alt": 177, "station_name": "Novosibirsk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "29698", "rs_types": ["90", "62"], "lat": 54.8833, "lon": 99.0333, "alt": 410, "station_name": "Nizhneudinsk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "29839", "rs_types": ["90"], "lat": 53.5, "lon": 83.8333, "alt": 159, "station_name": "Barnaul (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "29862", "rs_types": ["90"], "lat": 53.7667, "lon": 91.3167, "alt": 256, "station_name": "Hakasskaja (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "30054", "rs_types": ["90", "58"], "lat": 59.45, "lon": 112.5833, "alt": 193, "station_name": "Vitim (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "30230", "rs_types": ["90", "62"], "lat": 57.7667, "lon": 108.0667, "alt": 258, "station_name": "Kirensk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "30309", "rs_types": ["90", "69"], "lat": 56.2833, "lon": 101.75, "alt": 489, "station_name": "Bratsk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "30372", "rs_types": ["90"], "lat": 56.9, "lon": 118.2667, "alt": 711, "station_name": "Chara (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "30635", "rs_types": ["90"], "lat": 53.4167, "lon": 109.0167, "alt": 457, "station_name": "Ust'- Barguzin (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "30673", "rs_types": ["90"], "lat": 53.75, "lon": 119.7333, "alt": 619, "station_name": "Mogoca (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "30715", "rs_types": ["90", "62"], "lat": 52.4833, "lon": 103.85, "alt": 450, "station_name": "Angarsk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "30758", "rs_types": ["90"], "lat": 52.0833, "lon": 113.4833, "alt": 685, "station_name": "Chita (Russia)", "times": ["0:12:00", "0:00:00"]}, - {"station": "30935", "rs_types": ["90", "59", "62"], "lat": 50.3667, "lon": 108.75, "alt": 770, "station_name": "Krasnyj Chikoj (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "30965", "rs_types": ["58", "90"], "lat": 50.4, "lon": 116.5167, "alt": 684, "station_name": "Borzja (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "31004", "rs_types": ["90"], "lat": 58.6167, "lon": 125.3667, "alt": 682, "station_name": "Aldan (Russia)", "times": ["0:12:00", "0:00:00"]}, - {"station": "31088", "rs_types": ["90"], "lat": 59.3667, "lon": 143.2, "alt": 6, "station_name": "Ohotsk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "31300", "rs_types": ["90"], "lat": 53.7414, "lon": 127.2764, "alt": 232, "station_name": "Zeja (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "31369", "rs_types": ["62", "90"], "lat": 53.1475, "lon": 140.6939, "alt": 68, "station_name": "Nikolaevsk-Na-Amure (Russia)", "times": ["0:12:00", "0:00:00"]}, - {"station": "31510", "rs_types": ["90"], "lat": 50.2803, "lon": 127.4783, "alt": 137, "station_name": "Blagovescensk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "31538", "rs_types": ["90", "58"], "lat": 50.0667, "lon": 132.1333, "alt": 349, "station_name": "Sutur (Russia)", "times": ["0:12:00", "0:00:00"]}, - {"station": "31736", "rs_types": ["90", "58", "62"], "lat": 48.5333, "lon": 135.2333, "alt": 72, "station_name": "Habarovsk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "31770", "rs_types": ["90"], "lat": 49, "lon": 140.3, "alt": 22, "station_name": "Sovetskaja Gavan (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "31873", "rs_types": ["90"], "lat": 45.8667, "lon": 133.7333, "alt": 107, "station_name": "Dal'Nerechensk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "31977", "rs_types": ["90", "62"], "lat": 43.2667, "lon": 132.05, "alt": 82, "station_name": "Vladivostok Sad Gorod (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "32061", "rs_types": ["90", "30"], "lat": 50.9, "lon": 142.1667, "alt": 31, "station_name": "Aleksandrovsk-Sahalinskij (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "32098", "rs_types": ["90"], "lat": 49.2167, "lon": 143.1, "alt": 4, "station_name": "Poronajsk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "32150", "rs_types": ["90"], "lat": 46.95, "lon": 142.7167, "alt": 31, "station_name": "Yuzhno-Sakhalinsk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "32215", "rs_types": ["62"], "lat": 50.6833, "lon": 156.1333, "alt": 23, "station_name": "Severo-Kuril'Sk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "32389", "rs_types": ["62", "90"], "lat": 56.3167, "lon": 160.8333, "alt": 28, "station_name": "Kljuchi (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "32477", "rs_types": ["62"], "lat": 54.3, "lon": 155.9167, "alt": 25, "station_name": "Sobolevo (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "32540", "rs_types": ["62", "90"], "lat": 53.0833, "lon": 158.5833, "alt": 24, "station_name": "Petropavlovsk-Kamchatskij (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "32618", "rs_types": ["62", "90"], "lat": 55.2, "lon": 165.9833, "alt": 6, "station_name": "Nikol'Skoe (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "33041", "rs_types": ["41"], "lat": 52.4019, "lon": 30.9631, "alt": 127, "station_name": "Gomel' (Belarus)", "times": ["0:00:00"]}, - {"station": "33317", "rs_types": ["15"], "lat": 50.1667, "lon": 27.0333, "alt": 277, "station_name": "Shepetivka (Ukraine)", "times": ["0:12:00"]}, - {"station": "33345", "rs_types": ["15", "16"], "lat": 50.4, "lon": 30.5667, "alt": 166, "station_name": "Kyiv (Ukraine)", "times": ["0:00:00", "0:12:00"]}, - {"station": "33393", "rs_types": ["15"], "lat": 49.8167, "lon": 23.95, "alt": 319, "station_name": "L'Viv (Ukraine)", "times": ["0:00:00"]}, - {"station": "33791", "rs_types": ["15"], "lat": 48.0333, "lon": 33.2167, "alt": 123, "station_name": "Kryvyi Rih (Ukraine)", "times": ["0:12:00"]}, - {"station": "33837", "rs_types": ["15"], "lat": 46.4333, "lon": 30.7667, "alt": 42, "station_name": "Odesa (Ukraine)", "times": ["0:00:00"]}, - {"station": "34009", "rs_types": ["89"], "lat": 51.7667, "lon": 36.1667, "alt": 247, "station_name": "Kursk (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "34172", "rs_types": ["90"], "lat": 51.5567, "lon": 46.0394, "alt": 156, "station_name": "Saratov (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "34247", "rs_types": ["89"], "lat": 50.4167, "lon": 41.05, "alt": 93, "station_name": "Kalac (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "34300", "rs_types": ["16", "15"], "lat": 49.9667, "lon": 36.1333, "alt": 154, "station_name": "Kharkiv (Ukraine)", "times": ["0:00:00"]}, - {"station": "34467", "rs_types": ["90"], "lat": 48.7833, "lon": 44.3333, "alt": 141, "station_name": "Volgograd (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "34731", "rs_types": ["90"], "lat": 47.25, "lon": 39.8167, "alt": 77, "station_name": "Rostov-Na-Donu (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "34858", "rs_types": ["69", "90", "28"], "lat": 45.9167, "lon": 43.35, "alt": 77, "station_name": "Divnoe (Russia)", "times": ["0:12:00", "0:00:00"]}, - {"station": "34882", "rs_types": ["90", "62", "11"], "lat": 46.2833, "lon": 47.9833, "alt": -17, "station_name": "Astrahan' (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "35121", "rs_types": ["90"], "lat": 51.6925, "lon": 55.0783, "alt": 109, "station_name": "Orenburg (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "35229", "rs_types": ["27"], "lat": 50.2833, "lon": 57.15, "alt": 227, "station_name": "Aktjubinsk (Kazakhstan)", "times": ["0:00:00", "0:12:00"]}, - {"station": "35394", "rs_types": ["77"], "lat": 49.8, "lon": 73.15, "alt": 553, "station_name": "Karaganda (Kazakhstan)", "times": ["0:00:00", "0:12:00"]}, - {"station": "35671", "rs_types": ["27"], "lat": 47.8, "lon": 67.7167, "alt": 345, "station_name": "Zhezkazgan (Kazakhstan)", "times": ["0:00:00", "0:12:00"]}, - {"station": "35700", "rs_types": ["73", "88"], "lat": 47.1167, "lon": 51.9167, "alt": -15, "station_name": "Atyray (Kazakhstan)", "times": ["0:00:00", "0:12:00"]}, - {"station": "36003", "rs_types": ["73"], "lat": 52.3, "lon": 76.9333, "alt": 123, "station_name": "Pavlodar (Kazakhstan)", "times": ["0:00:00", "0:12:00"]}, - {"station": "36096", "rs_types": ["90"], "lat": 51.7103, "lon": 94.4917, "alt": 629, "station_name": "Kyzyl (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "36872", "rs_types": ["62", "73"], "lat": 43.3633, "lon": 77.0042, "alt": 850, "station_name": "Almaty (Kazakhstan)", "times": ["0:00:00", "0:12:00"]}, - {"station": "37011", "rs_types": ["62", "90"], "lat": 44.1, "lon": 39.0333, "alt": 94, "station_name": "Tuapse (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "37055", "rs_types": ["90"], "lat": 44.2167, "lon": 43.1, "alt": 312, "station_name": "Mineral'nye Vody (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "37259", "rs_types": ["90"], "lat": 43, "lon": 47.5, "alt": -18, "station_name": "Mahachkala (Russia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "37789", "rs_types": ["77"], "lat": 40.2169, "lon": 44.5017, "alt": 890, "station_name": "Yerevan (Armenia)", "times": ["0:00:00"]}, - {"station": "38064", "rs_types": ["73"], "lat": 44.7667, "lon": 65.5167, "alt": 133, "station_name": "Kyzylorda (Kazakhstan)", "times": ["0:00:00", "0:12:00"]}, - {"station": "38341", "rs_types": ["73"], "lat": 42.85, "lon": 71.3, "alt": 653, "station_name": "Zhambyl (Kazakhstan)", "times": ["0:00:00", "0:12:00"]}, - {"station": "40179", "rs_types": ["23"], "lat": 32, "lon": 34.8167, "alt": 30, "station_name": "Bet Dagan (Israel)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 27500, "descent_rate": 2.5, "ascent_rate": 4}, - {"station": "40186", "rs_types": ["34", "07"], "lat": 31.87, "lon": 34.68, "alt": 20, "station_name": "Ashdod North (Israel)", "times": ["0:18:00"], "burst_altitude": 24000, "descent_rate": 2.5, "ascent_rate": 5.5}, - {"station": "40265", "rs_types": ["17"], "lat": 32.3667, "lon": 36.25, "alt": 686, "station_name": "Mafraq (Jordan)", "times": ["5:00:00", "7:00:00", "2:00:00"], "burst_altitude": 25531, "burst_samples": 84, "burst_std": 3642, "descent_rate": 10.9, "descent_samples": 67, "descent_std": 2.4}, - {"station": "40373", "rs_types": ["41"], "lat": 28.3167, "lon": 46.1333, "alt": 358, "station_name": "Al Qaysumah (Saudi Arabia)", "times": ["0:12:00", "0:00:00"]}, - {"station": "40375", "rs_types": ["41"], "lat": 28.3833, "lon": 36.6, "alt": 778, "station_name": "Tabuk (Saudi Arabia)", "times": ["0:12:00", "0:00:00"]}, - {"station": "40394", "rs_types": ["41"], "lat": 27.4333, "lon": 41.6833, "alt": 1015, "station_name": "Hail (Saudi Arabia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "40417", "rs_types": ["41"], "lat": 26.45, "lon": 49.8167, "alt": 22, "station_name": "K.f.i.a. (King Fahad Int. Airport) Dammam (Saudi Arabia)", "times": ["0:12:00", "6:00:00", "7:00:00", "1:00:00", "2:00:00"]}, - {"station": "40430", "rs_types": ["41"], "lat": 24.55, "lon": 39.7, "alt": 654, "station_name": "Madinah (Saudi Arabia)", "times": ["0:12:00", "0:00:00"]}, - {"station": "40437", "rs_types": ["41"], "lat": 24.9333, "lon": 46.7167, "alt": 614, "station_name": "King Khaled International Airport (Saudi Arabia)", "times": ["0:12:00", "0:00:00"]}, - {"station": "40706", "rs_types": ["77"], "lat": 38.0833, "lon": 46.2833, "alt": 1367, "station_name": "Tabriz (Iran)", "times": ["0:00:00"]}, - {"station": "40745", "rs_types": ["77"], "lat": 36.2667, "lon": 59.6333, "alt": 989, "station_name": "Mashhad (Iran)", "times": ["0:00:00"]}, - {"station": "40754", "rs_types": ["77"], "lat": 35.6833, "lon": 51.3167, "alt": 1204, "station_name": "Tehran-Mehrabad (Iran)", "times": ["0:12:00", "2:00:00", "6:00:00", "7:00:00"]}, - {"station": "40766", "rs_types": ["77"], "lat": 34.35, "lon": 47.15, "alt": 1320, "station_name": "Kermanshah (Iran)", "times": ["0:00:00"]}, - {"station": "40800", "rs_types": ["77"], "lat": 32.5175, "lon": 51.7061, "alt": 1590, "station_name": "Esfahan (Iran)", "times": ["3:00:00", "6:00:00"]}, - {"station": "40809", "rs_types": ["77"], "lat": 32.8667, "lon": 59.2, "alt": 1491, "station_name": "Birjand (Iran)", "times": ["0:12:00"]}, - {"station": "40811", "rs_types": ["77"], "lat": 31.3333, "lon": 48.6667, "alt": 20, "station_name": "Ahwaz (Iran)", "times": ["0:12:00"]}, - {"station": "40841", "rs_types": ["77"], "lat": 30.25, "lon": 56.9667, "alt": 1748, "station_name": "Kerman (Iran)", "times": ["0:12:00"]}, - {"station": "40848", "rs_types": ["77"], "lat": 29.5333, "lon": 52.6, "alt": 1486, "station_name": "Shiraz (Iran)", "times": ["0:00:00"]}, - {"station": "40856", "rs_types": ["77"], "lat": 29.4667, "lon": 60.8833, "alt": 1370, "station_name": "Zahedan (Iran)", "times": ["0:00:00"]}, - {"station": "40948", "rs_types": ["41"], "lat": 34.55, "lon": 69.2167, "alt": 1789, "station_name": "Kabul Airport (Afghanistan)", "times": ["0:12:00", "0:00:00"]}, - {"station": "41024", "rs_types": ["41"], "lat": 21.7, "lon": 39.1833, "alt": 15, "station_name": "Jeddah King Abdul Aziz International Airport (Saudi Arabia)", "times": ["0:12:00", "0:00:00"]}, - {"station": "41112", "rs_types": ["41"], "lat": 18.2333, "lon": 42.65, "alt": 2090, "station_name": "Abha (Saudi Arabia)", "times": ["0:12:00", "0:00:00"]}, - {"station": "41217", "rs_types": ["41"], "lat": 24.4333, "lon": 54.65, "alt": 16, "station_name": "Abu Dhabi International Airport (United Arab Emirates)", "times": ["0:00:00", "0:12:00"]}, - {"station": "41256", "rs_types": ["41"], "lat": 23.5953, "lon": 58.2983, "alt": 8, "station_name": "Seeb, International Airport (Oman)", "times": ["0:00:00"]}, - {"station": "41316", "rs_types": ["41"], "lat": 17.0439, "lon": 54.1022, "alt": 20, "station_name": "Salalah (Oman)", "times": ["0:00:00"]}, - {"station": "42182", "rs_types": ["17", "21"], "lat": 28.5833, "lon": 77.2, "alt": 211, "station_name": "New Delhi / Safdarjung (India)", "times": ["4:00:00", "3:00:00", "1:00:00"]}, - {"station": "42314", "rs_types": ["21"], "lat": 27.4833, "lon": 95.0167, "alt": 110, "station_name": "Dibrugarh / Mohanbari (India)", "times": ["6:00:00"]}, - {"station": "42339", "rs_types": ["21"], "lat": 26.3, "lon": 73.0167, "alt": 217, "station_name": "Jodhpur (India)", "times": ["6:00:00"]}, - {"station": "42361", "rs_types": ["21"], "lat": 26.2333, "lon": 78.25, "alt": 205, "station_name": "Gwalior (India)"}, - {"station": "42410", "rs_types": ["17"], "lat": 26.1, "lon": 91.5833, "alt": 47, "station_name": "Gauhati (India)", "times": ["0:00:00"]}, - {"station": "42647", "rs_types": ["21"], "lat": 23.0667, "lon": 72.6333, "alt": 55, "station_name": "Ahmadabad (India)"}, - {"station": "42667", "rs_types": ["21"], "lat": 23.2833, "lon": 77.35, "alt": 523, "station_name": "Bhopal / Bairagarh (India)"}, - {"station": "42724", "rs_types": ["21"], "lat": 23.8833, "lon": 91.25, "alt": 15, "station_name": "Agartala (India)"}, - {"station": "42809", "rs_types": ["17"], "lat": 22.65, "lon": 88.45, "alt": 4, "station_name": "Calcutta / Dum Dum (India)", "times": ["0:00:00"]}, - {"station": "42867", "rs_types": ["17"], "lat": 21.1, "lon": 79.05, "alt": 308, "station_name": "Nagpur Sonegaon (India)", "times": ["0:00:00"]}, - {"station": "42971", "rs_types": ["21"], "lat": 20.25, "lon": 85.8333, "alt": 45, "station_name": "Bhubaneswar (India)"}, - {"station": "43185", "rs_types": ["21"], "lat": 16.2, "lon": 81.15, "alt": 3, "station_name": "Machilipatnam (India)"}, - {"station": "43192", "rs_types": ["21"], "lat": 15.4833, "lon": 73.8167, "alt": 58, "station_name": "Goa / Panjim (India)"}, - {"station": "43346", "rs_types": ["21"], "lat": 10.9167, "lon": 79.8333, "alt": 7, "station_name": "Karaikal (India)"}, - {"station": "43353", "rs_types": ["21"], "lat": 9.9333, "lon": 76.2333, "alt": 1, "station_name": "Cochin / Willingdon (India)"}, - {"station": "43371", "rs_types": ["21"], "lat": 8.4833, "lon": 76.95, "alt": 60, "station_name": "Thiruvananthapuram (India)"}, - {"station": "43466", "rs_types": ["35"], "lat": 6.9, "lon": 79.8667, "alt": 7, "station_name": "Colombo (Sri Lanka)", "times": ["3:06:00", "5:06:00", "1:06:00"]}, - {"station": "43599", "rs_types": ["99", "84"], "lat": -0.6933, "lon": 73.1556, "alt": 2, "station_name": "Gan (Maldives)", "times": ["0:12:00"]}, - {"station": "44212", "rs_types": ["77"], "lat": 49.8, "lon": 92.0833, "alt": 940, "station_name": "Ulaan-Gom (Mongolia)", "times": ["0:12:00"]}, - {"station": "44231", "rs_types": ["77"], "lat": 49.6333, "lon": 100.1667, "alt": 1285, "station_name": "Muren (Mongolia)", "times": ["0:00:00"]}, - {"station": "44292", "rs_types": ["77"], "lat": 47.9167, "lon": 106.8667, "alt": 1307, "station_name": "Ulaan-Baator (Mongolia)", "times": ["0:12:00", "0:00:00"]}, - {"station": "44373", "rs_types": ["33"], "lat": 43.5833, "lon": 104.4167, "alt": 1465, "station_name": "Dalanzadgad (Mongolia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "45004", "rs_types": ["41", "42"], "lat": 22.3272, "lon": 114.1686, "alt": 65, "station_name": "King's Park (Hong Kong)", "times": ["0:00:00", "0:12:00"]}, - {"station": "47102", "rs_types": ["41", "77"], "lat": 37.97, "lon": 124.63, "alt": 144, "station_name": "Baengnyeongdo (Korea, South)", "times": ["0:00:00", "0:12:00", "0:06:00", "0:18:00"]}, - {"station": "47104", "rs_types": ["41"], "lat": 37.87, "lon": 127.72, "alt": 76, "station_name": "Chunchon Ab (Korea, South)", "times": ["0:00:00", "0:12:00", "0:06:00", "0:18:00"]}, - {"station": "47122", "rs_types": ["45"], "lat": 37.0833, "lon": 127.0333, "alt": 11, "station_name": "Osan Ab (Korea, South)", "times": ["0:00:00", "0:06:00", "0:12:00", "0:18:00"]}, - {"station": "47138", "rs_types": ["41", "77"], "lat": 36.0319, "lon": 129.38, "alt": 6, "station_name": "Pohang (Korea, South)", "times": ["0:00:00", "0:12:00", "0:18:00", "0:06:00"]}, - {"station": "47155", "rs_types": ["42"], "lat": 35.18, "lon": 128.57, "alt": 5, "station_name": "Masan (Korea, South)", "times": ["0:12:00", "0:00:00", "0:18:00", "0:06:00"]}, - {"station": "47158", "rs_types": ["45"], "lat": 35.1167, "lon": 126.8, "alt": 13, "station_name": "Kwangju Ab (Korea, South)", "times": ["0:06:00", "0:12:00", "0:18:00", "0:00:00"]}, - {"station": "47169", "rs_types": ["41"], "lat": 34.6872, "lon": 125.4511, "alt": 79, "station_name": "Heuksando (Korea, South)", "times": ["0:00:00", "0:12:00", "0:18:00", "0:06:00"]}, - {"station": "47401", "rs_types": ["41"], "lat": 45.415, "lon": 141.6789, "alt": 3, "station_name": "Wakkanai (Japan)", "times": ["0:00:00", "0:12:00"]}, - {"station": "47412", "rs_types": ["41"], "lat": 43.06, "lon": 141.3286, "alt": 17, "station_name": "Sapporo (Japan)", "times": ["0:00:00", "0:12:00"]}, - {"station": "47418", "rs_types": ["42"], "lat": 42.9531, "lon": 144.4375, "alt": 32, "station_name": "Kushiro (Japan)", "times": ["0:00:00", "0:12:00"]}, - {"station": "47582", "rs_types": ["41"], "lat": 39.7175, "lon": 140.0992, "alt": 6, "station_name": "Akita (Japan)", "times": ["0:00:00", "0:12:00"]}, - {"station": "47600", "rs_types": ["42"], "lat": 37.3914, "lon": 136.8953, "alt": 5, "station_name": "Wajima (Japan)", "times": ["0:12:00", "0:00:00"]}, - {"station": "47646", "rs_types": ["41"], "lat": 36.0581, "lon": 140.1258, "alt": 25, "station_name": "Tateno (Japan)", "times": ["0:00:00", "0:12:00"]}, - {"station": "47678", "rs_types": ["35"], "lat": 33.1217, "lon": 139.7792, "alt": 79, "station_name": "Hachijojima (Japan)", "times": ["0:00:00", "0:12:00"]}, - {"station": "47741", "rs_types": ["42"], "lat": 35.4572, "lon": 133.0656, "alt": 17, "station_name": "Matsue (Japan)", "times": ["0:12:00", "0:00:00"]}, - {"station": "47778", "rs_types": ["42"], "lat": 33.4503, "lon": 135.7572, "alt": 73, "station_name": "Shionomisaki (Japan)", "times": ["0:00:00", "0:12:00"]}, - {"station": "47807", "rs_types": ["41"], "lat": 33.5822, "lon": 130.3764, "alt": 3, "station_name": "Fukuoka (Japan)", "times": ["0:00:00", "0:12:00"]}, - {"station": "47827", "rs_types": ["41"], "lat": 31.555, "lon": 130.5481, "alt": 4, "station_name": "Kagoshima (Japan)", "times": ["0:00:00", "0:12:00"]}, - {"station": "47909", "rs_types": ["35"], "lat": 28.3942, "lon": 129.5528, "alt": 3, "station_name": "Naze (Japan)", "times": ["0:00:00", "0:12:00"]}, - {"station": "47918", "rs_types": ["35"], "lat": 24.3367, "lon": 124.1644, "alt": 6, "station_name": "Ishigakijima (Japan)", "times": ["0:00:00", "0:12:00"]}, - {"station": "47945", "rs_types": ["35"], "lat": 25.8289, "lon": 131.2286, "alt": 16, "station_name": "Minamidaitojima (Japan)", "times": ["0:00:00", "0:12:00"]}, - {"station": "47971", "rs_types": ["35"], "lat": 27.0922, "lon": 142.1914, "alt": 3, "station_name": "Chichijima (Japan)", "times": ["0:00:00", "0:12:00"]}, - {"station": "47991", "rs_types": ["35"], "lat": 24.2883, "lon": 153.9833, "alt": 8, "station_name": "Minamitorishima (Japan)", "times": ["0:12:00", "0:00:00"]}, - {"station": "48097", "rs_types": ["41"], "lat": 16.7667, "lon": 96.1667, "alt": 14, "station_name": "Yangon (Myanmar)", "times": ["0:12:00"]}, - {"station": "48327", "rs_types": ["78"], "lat": 18.7706, "lon": 98.9683, "alt": 312, "station_name": "Chiang Mai (Thailand)", "times": ["0:00:00"]}, - {"station": "48381", "rs_types": ["97"], "lat": 16.4608, "lon": 102.7894, "alt": 165, "station_name": "Khon Kaen (Thailand)", "times": ["0:00:00"]}, - {"station": "48407", "rs_types": ["97"], "lat": 15.25, "lon": 104.8667, "alt": 123, "station_name": "Ubon Ratchathani (Thailand)", "times": ["0:00:00"]}, - {"station": "48453", "rs_types": ["41"], "lat": 13.6664, "lon": 100.6061, "alt": 3, "station_name": "Bang Na Agromet (Thailand)", "times": ["0:00:00"]}, - {"station": "48565", "rs_types": ["97"], "lat": 8.145, "lon": 98.3144, "alt": 6, "station_name": "Phuket Airport (Thailand)", "times": ["0:06:00"]}, - {"station": "48568", "rs_types": ["97"], "lat": 7.1819, "lon": 100.6075, "alt": 4, "station_name": "Songkhla (Thailand)", "times": ["3:00:00", "7:00:00", "2:00:00"]}, - {"station": "48601", "rs_types": ["54"], "lat": 5.3, "lon": 100.2667, "alt": 3, "station_name": "Penang / Bayan Lepas (Malaysia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "48615", "rs_types": ["54"], "lat": 6.1667, "lon": 102.2833, "alt": 5, "station_name": "Kota Bharu (Malaysia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "48650", "rs_types": ["54"], "lat": 2.7167, "lon": 101.7, "alt": 21, "station_name": "Sepang (Malaysia)", "times": ["0:12:00", "0:00:00"]}, - {"station": "48657", "rs_types": ["54"], "lat": 3.7833, "lon": 103.2167, "alt": 18, "station_name": "Kuantan (Malaysia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "48698", "rs_types": ["41"], "lat": 1.3667, "lon": 103.9833, "alt": 5, "station_name": "Singapore / Changi Airport (Singapore)", "times": ["0:00:00", "0:12:00"]}, - {"station": "48820", "rs_types": ["41", "80"], "lat": 21.0333, "lon": 105.8, "alt": 6, "station_name": "Ha Noi (Vietnam)", "times": ["0:12:00", "0:00:00"]}, - {"station": "48839", "rs_types": ["41", "80"], "lat": 20.1333, "lon": 107.7167, "alt": 60, "station_name": "Bach Long Vi (Vietnam)", "times": ["2:00:00"]}, - {"station": "48845", "rs_types": ["41", "80"], "lat": 18.6667, "lon": 105.6833, "alt": 6, "station_name": "Vinh (Vietnam)", "times": ["0:00:00"]}, - {"station": "48855", "rs_types": ["41", "80"], "lat": 16.0667, "lon": 108.35, "alt": 7, "station_name": "Da Nang (Vietnam)", "times": ["0:12:00", "0:00:00"]}, - {"station": "48900", "rs_types": ["41", "80"], "lat": 10.8167, "lon": 106.6667, "alt": 19, "station_name": "Ho Chi Minh (Vietnam)", "times": ["0:00:00", "0:12:00"]}, - {"station": "50527", "rs_types": ["00"], "lat": 49.25, "lon": 119.7, "alt": 611, "station_name": "Hailar (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "50557", "rs_types": ["02", "01"], "lat": 49.1667, "lon": 125.2333, "alt": 243, "station_name": "Nenjiang (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "50774", "rs_types": ["02"], "lat": 47.7167, "lon": 128.8333, "alt": 232, "station_name": "Yichun (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "50953", "rs_types": ["02", "00"], "lat": 45.9333, "lon": 126.5667, "alt": 143, "station_name": "Harbin (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "51076", "rs_types": ["02"], "lat": 47.7333, "lon": 88.0833, "alt": 737, "station_name": "Altay (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "51431", "rs_types": ["02"], "lat": 43.95, "lon": 81.3333, "alt": 663, "station_name": "Yining (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "51463", "rs_types": ["02"], "lat": 43.7833, "lon": 87.6167, "alt": 919, "station_name": "Urumqi (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "51644", "rs_types": ["01"], "lat": 41.7167, "lon": 82.95, "alt": 1100, "station_name": "Kuqa (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "51709", "rs_types": ["02"], "lat": 39.4833, "lon": 75.75, "alt": 1291, "station_name": "Kashi (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "51777", "rs_types": ["01"], "lat": 39.0333, "lon": 88.1667, "alt": 889, "station_name": "Ruoqiang (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "51828", "rs_types": ["01", "00"], "lat": 37.1333, "lon": 79.9333, "alt": 1375, "station_name": "Hotan (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "51839", "rs_types": ["00", "01", "02"], "lat": 37.0667, "lon": 82.7167, "alt": 1410, "station_name": "Minfeng / Niya (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "52203", "rs_types": ["01"], "lat": 42.8167, "lon": 93.5167, "alt": 739, "station_name": "Hami (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "52267", "rs_types": ["02", "01"], "lat": 41.95, "lon": 101.0667, "alt": 941, "station_name": "Ejin Qi (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "52323", "rs_types": ["01"], "lat": 41.8, "lon": 97.0333, "alt": 1770, "station_name": "Mazong Shan (China)", "times": ["3:12:00"]}, - {"station": "52418", "rs_types": ["01", "00"], "lat": 40.15, "lon": 94.6833, "alt": 1140, "station_name": "Dunhuang (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "52533", "rs_types": ["01"], "lat": 39.7667, "lon": 98.4833, "alt": 1478, "station_name": "Jiuquan (China)", "times": ["0:12:00", "3:00:00"]}, - {"station": "52681", "rs_types": ["01"], "lat": 38.6333, "lon": 103.0833, "alt": 1367, "station_name": "Minqin (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "52818", "rs_types": ["02"], "lat": 36.4167, "lon": 94.9, "alt": 2809, "station_name": "Golmud (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "52836", "rs_types": ["02"], "lat": 36.3, "lon": 98.1, "alt": 3192, "station_name": "Dulan (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "52866", "rs_types": ["01"], "lat": 36.7167, "lon": 101.75, "alt": 2262, "station_name": "Xining (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "52983", "rs_types": ["02"], "lat": 35.8667, "lon": 104.15, "alt": 1875, "station_name": "Yu Zhong (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "53068", "rs_types": ["01", "00"], "lat": 43.6333, "lon": 111.95, "alt": 966, "station_name": "Erenhot (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "53463", "rs_types": ["01", "00"], "lat": 40.85, "lon": 111.5667, "alt": 1065, "station_name": "Hohhot (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "53513", "rs_types": ["00"], "lat": 40.7333, "lon": 107.3667, "alt": 1041, "station_name": "Linhe (China)", "times": ["0:00:00", "0:12:00"]}, - {"station": "53614", "rs_types": ["01", "02"], "lat": 38.4667, "lon": 106.2, "alt": 1112, "station_name": "Yinchuan (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "53772", "rs_types": ["02", "01"], "lat": 37.6206, "lon": 112.5767, "alt": 779, "station_name": "Taiyuan (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "53845", "rs_types": ["01"], "lat": 36.5667, "lon": 109.45, "alt": 959, "station_name": "Yan An (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "53915", "rs_types": ["00", "01"], "lat": 35.55, "lon": 106.6667, "alt": 1348, "station_name": "Pingliang (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "54102", "rs_types": ["00", "02"], "lat": 43.95, "lon": 116.1167, "alt": 991, "station_name": "Xilin Hot (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "54135", "rs_types": ["00"], "lat": 43.6, "lon": 122.2667, "alt": 180, "station_name": "Tongliao (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "54161", "rs_types": ["01"], "lat": 43.9, "lon": 125.2167, "alt": 238, "station_name": "Changchun (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "54218", "rs_types": ["00"], "lat": 42.3, "lon": 118.8333, "alt": 572, "station_name": "Chifeng (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "54292", "rs_types": ["01"], "lat": 42.8667, "lon": 129.5, "alt": 178, "station_name": "Yanji (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "54374", "rs_types": ["01", "00"], "lat": 41.8, "lon": 126.8833, "alt": 333, "station_name": "Linjiang (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "54511", "rs_types": ["00", "02"], "lat": 39.9333, "lon": 116.2833, "alt": 55, "station_name": "Beijing (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "54662", "rs_types": ["00"], "lat": 38.9, "lon": 121.6333, "alt": 97, "station_name": "Dalian (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "54727", "rs_types": ["01"], "lat": 36.7, "lon": 117.55, "alt": 123, "station_name": "Zhangqui (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "54857", "rs_types": ["01"], "lat": 36.0667, "lon": 120.3333, "alt": 77, "station_name": "Qingdao (China)", "times": ["0:12:00", "4:00:00", "7:00:00", "2:00:00", "3:00:00"]}, - {"station": "55299", "rs_types": ["02"], "lat": 31.4833, "lon": 92.0667, "alt": 4508, "station_name": "Nagqu (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "55591", "rs_types": ["02"], "lat": 29.6667, "lon": 91.1333, "alt": 3650, "station_name": "Lhasa (China)", "times": ["0:12:00", "5:00:00", "6:00:00", "7:00:00", "1:00:00", "3:00:00"]}, - {"station": "56029", "rs_types": ["01"], "lat": 33, "lon": 96.95, "alt": 3682, "station_name": "Yushu (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "56080", "rs_types": ["01"], "lat": 35, "lon": 102.9, "alt": 2910, "station_name": "Hezuo (China)", "times": ["0:12:00"]}, - {"station": "56137", "rs_types": ["02", "00"], "lat": 31.15, "lon": 97.1667, "alt": 3307, "station_name": "Qamdo (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "56146", "rs_types": ["01"], "lat": 31.6167, "lon": 100, "alt": 3394, "station_name": "Garze (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "56187", "rs_types": ["02", "01"], "lat": 30.75, "lon": 103.8667, "alt": 555, "station_name": "Wenjiang (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "56571", "rs_types": ["01"], "lat": 27.9, "lon": 102.2667, "alt": 1599, "station_name": "Xichang (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "56691", "rs_types": ["01"], "lat": 26.8667, "lon": 104.2833, "alt": 2236, "station_name": "Weining (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "56739", "rs_types": ["02", "00"], "lat": 24.9844, "lon": 98.5056, "alt": 1649, "station_name": "Tengchong (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "56778", "rs_types": ["01", "00"], "lat": 25.0167, "lon": 102.6833, "alt": 1892, "station_name": "Kunming (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "56964", "rs_types": ["00"], "lat": 22.7667, "lon": 100.9833, "alt": 1303, "station_name": "Simao (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "56985", "rs_types": ["00"], "lat": 23.4444, "lon": 103.3278, "alt": 1302, "station_name": "Mengzi (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "57083", "rs_types": ["01", "00"], "lat": 34.7167, "lon": 113.65, "alt": 111, "station_name": "Zhengzhou (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "57127", "rs_types": ["02"], "lat": 33.0667, "lon": 107.0333, "alt": 509, "station_name": "Hanzhong (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "57131", "rs_types": ["02"], "lat": 34.4333, "lon": 108.9667, "alt": 411, "station_name": "Jinghe (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "57178", "rs_types": ["00"], "lat": 33.1, "lon": 112.4833, "alt": 131, "station_name": "Nanyang (China)", "times": ["0:12:00", "3:00:00", "5:00:00", "7:00:00"]}, - {"station": "57447", "rs_types": ["00", "01"], "lat": 30.2833, "lon": 109.4667, "alt": 458, "station_name": "Enshi (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "57461", "rs_types": ["01"], "lat": 30.7333, "lon": 111.3667, "alt": 134, "station_name": "Yichang (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "57494", "rs_types": ["01"], "lat": 30.6, "lon": 114.05, "alt": 23, "station_name": "Wuhan (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "57516", "rs_types": ["00"], "lat": 29.6, "lon": 106.4, "alt": 351, "station_name": "Chongqing (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "57687", "rs_types": ["01", "00"], "lat": 28.23, "lon": 112.87, "alt": 68, "station_name": "Changsha (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "57749", "rs_types": ["00"], "lat": 27.5667, "lon": 110, "alt": 261, "station_name": "Huaihua (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "57816", "rs_types": ["01"], "lat": 26.4833, "lon": 106.65, "alt": 1074, "station_name": "Guiyang (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "57957", "rs_types": ["01"], "lat": 25.3333, "lon": 110.3, "alt": 166, "station_name": "Guilin (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "57972", "rs_types": ["01"], "lat": 25.7353, "lon": 112.9739, "alt": 185, "station_name": "Chenzhou (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "57993", "rs_types": ["01", "02"], "lat": 25.8667, "lon": 115, "alt": 125, "station_name": "Ganzhou (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "58027", "rs_types": ["00"], "lat": 34.2833, "lon": 117.15, "alt": 42, "station_name": "Xuzhou (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "58150", "rs_types": ["00"], "lat": 33.75, "lon": 120.3, "alt": 7, "station_name": "Sheyang (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "58203", "rs_types": ["01"], "lat": 32.8667, "lon": 115.7333, "alt": 39, "station_name": "Fuyang (China)", "times": ["0:12:00", "1:00:00", "4:00:00"]}, - {"station": "58238", "rs_types": ["00"], "lat": 31.9333, "lon": 118.9, "alt": 12, "station_name": "Nanjing (China)", "times": ["0:12:00", "1:00:00", "2:00:00"]}, - {"station": "58362", "rs_types": ["01", "00"], "lat": 31.4167, "lon": 121.45, "alt": 8, "station_name": "Shanghai (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "58424", "rs_types": ["02"], "lat": 30.6167, "lon": 116.9667, "alt": 20, "station_name": "Anqing (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "58457", "rs_types": ["00"], "lat": 30.2333, "lon": 120.1667, "alt": 43, "station_name": "Hangzhou (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "58606", "rs_types": ["02"], "lat": 28.6, "lon": 115.9167, "alt": 50, "station_name": "Nanchang (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "58633", "rs_types": ["00", "01"], "lat": 28.9667, "lon": 118.8667, "alt": 71, "station_name": "Qu Xian (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "58665", "rs_types": ["00", "01"], "lat": 28.6167, "lon": 121.4167, "alt": 9, "station_name": "Hongjia (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "58725", "rs_types": ["00"], "lat": 27.3333, "lon": 117.4667, "alt": 192, "station_name": "Shaowu (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "58847", "rs_types": ["00"], "lat": 26.0833, "lon": 119.2833, "alt": 85, "station_name": "Fuzhou (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "58968", "rs_types": [["41", "400.300"]], "lat": 24.998, "lon": 121.444, "alt": 13, "station_name": "Taibei (Taiwan)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 32750, "burst_samples": 1172, "descent_rate": 3.2, "descent_samples": 1172, "ascent_rate": 5.9}, - {"station": "59134", "rs_types": ["01", "02", "00"], "lat": 24.4833, "lon": 118.0833, "alt": 139, "station_name": "Xiamen (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "59211", "rs_types": ["00", "01", "02"], "lat": 23.9, "lon": 106.6, "alt": 242, "station_name": "Baise (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "59265", "rs_types": ["01"], "lat": 23.4833, "lon": 111.3, "alt": 120, "station_name": "Wuzhou (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "59280", "rs_types": ["01"], "lat": 23.7, "lon": 113.0833, "alt": 19, "station_name": "Qing Yuan (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "59316", "rs_types": ["01"], "lat": 23.35, "lon": 116.6667, "alt": 3, "station_name": "Shantou (China)", "times": ["0:12:00", "6:00:00", "1:00:00", "7:00:00", "3:00:00"]}, - {"station": "59431", "rs_types": ["00"], "lat": 22.6333, "lon": 108.2167, "alt": 73, "station_name": "Nanning (China)", "times": ["0:12:00", "6:00:00", "7:00:00"]}, - {"station": "59758", "rs_types": ["00", "02"], "lat": 20, "lon": 110.25, "alt": 15, "station_name": "Haikou (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "59981", "rs_types": ["00", "02"], "lat": 16.8333, "lon": 112.3333, "alt": 5, "station_name": "Xisha Dao (China)", "times": ["0:12:00", "0:00:00"]}, - {"station": "60018", "rs_types": ["24"], "lat": 28.3183, "lon": -16.3822, "alt": 105, "station_name": "Tenerife-Guimar (Spain)", "times": ["0:00:00", "0:12:00"]}, - {"station": "60096", "rs_types": ["77"], "lat": 23.7111, "lon": -15.9308, "alt": 10, "station_name": "Dakhla (Western Sahara)", "times": ["1:12:00", "2:12:00", "3:12:00"]}, - {"station": "60155", "rs_types": ["77"], "lat": 33.5667, "lon": -7.6667, "alt": 62, "station_name": "Casablanca (Morocco)", "times": ["0:00:00"]}, - {"station": "60390", "rs_types": ["41"], "lat": 36.6833, "lon": 3.2167, "alt": 25, "station_name": "Dar-El-Beida (Algeria)", "times": ["0:00:00"]}, - {"station": "60571", "rs_types": ["41"], "lat": 31.5, "lon": -2.25, "alt": 773, "station_name": "Bechar (Algeria)", "times": ["2:00:00"]}, - {"station": "60630", "rs_types": ["41"], "lat": 27.2333, "lon": 2.5, "alt": 293, "station_name": "In Salah (Algeria)"}, - {"station": "60656", "rs_types": ["41"], "lat": 27.7, "lon": -8.1667, "alt": 431, "station_name": "Tindouf (Algeria)"}, - {"station": "60680", "rs_types": ["41"], "lat": 22.8, "lon": 5.4333, "alt": 1378, "station_name": "Tamanrasset (Algeria)", "times": ["7:00:00", "4:00:00"]}, - {"station": "60715", "rs_types": ["17"], "lat": 36.8333, "lon": 10.2333, "alt": 3, "station_name": "Tunis-Carthage (Tunisia)", "times": ["0:00:00"], "burst_altitude": 28000, "burst_samples": 304, "descent_rate": 10.5, "descent_samples": 304, "ascent_rate": 4.6}, - {"station": "60760", "rs_types": ["17"], "lat": 33.9167, "lon": 8.1667, "alt": 87, "station_name": "Tozeur (Tunisia)", "times": ["4:00:00", "6:00:00"]}, - {"station": "61024", "rs_types": ["54", "17"], "lat": 16.9667, "lon": 7.9833, "alt": 501, "station_name": "Agadez (Niger)"}, - {"station": "61901", "rs_types": ["41"], "lat": -15.9419, "lon": -5.6672, "alt": 435, "station_name": "Saint Helena Island (Saint Helena, Ascension and Tristan da Cunha)", "times": ["2:12:00", "3:12:00", "4:12:00", "5:12:00", "6:12:00", "1:12:00"]}, - {"station": "61980", "rs_types": ["77"], "lat": -20.88, "lon": 55.52, "alt": 21, "station_name": "Saint-Denis / Gillot (Reunion)", "times": ["0:00:00"]}, - {"station": "61998", "rs_types": ["77"], "lat": -49.35, "lon": 70.25, "alt": 29, "station_name": "Port-Aux-Francais Iles Kerguelen (French Southern Territories)", "times": ["0:12:00"]}, - {"station": "62306", "rs_types": ["41"], "lat": 31.3253, "lon": 27.2217, "alt": 25, "station_name": "Mersa Matruh (Egypt)", "times": ["0:00:00"]}, - {"station": "62378", "rs_types": ["41"], "lat": 29.8628, "lon": 31.3492, "alt": 139, "station_name": "Helwan (Egypt)"}, - {"station": "62403", "rs_types": ["63"], "lat": 26.2003, "lon": 32.7467, "alt": 77, "station_name": "South Of Valley University (Egypt)"}, - {"station": "62414", "rs_types": ["41"], "lat": 23.9644, "lon": 32.82, "alt": 200, "station_name": "Asswan (Egypt)", "times": ["3:00:00", "4:00:00"]}, - {"station": "63450", "rs_types": ["41"], "lat": 9.0333, "lon": 38.75, "alt": 2355, "station_name": "Addis Ababa (Ethiopia)"}, - {"station": "63741", "rs_types": ["77"], "lat": -1.3036, "lon": 36.7597, "alt": 1798, "station_name": "Nairobi / Dagoretti (Kenya)", "times": ["4:00:00", "6:00:00", "1:00:00", "2:00:00"]}, - {"station": "63985", "rs_types": ["41"], "lat": -4.6833, "lon": 55.5167, "alt": 4, "station_name": "Seychelles International Airport Rawinsonde Station (Seychelles)", "times": ["0:12:00"]}, - {"station": "64400", "rs_types": ["54", "17"], "lat": -4.8167, "lon": 11.9, "alt": 17, "station_name": "Pointe-Noire (Congo, Republic of the)", "times": ["0:00:00", "0:12:00"]}, - {"station": "64500", "rs_types": ["54"], "lat": 0.45, "lon": 9.4167, "alt": 12, "station_name": "Libreville (Gabon)"}, - {"station": "64700", "rs_types": ["54"], "lat": 12.1333, "lon": 15.0333, "alt": 295, "station_name": "Ndjamena (Chad)"}, - {"station": "65578", "rs_types": ["54"], "lat": 5.25, "lon": -3.9333, "alt": 7, "station_name": "Abidjan (Cote d'Ivoire)"}, - {"station": "67083", "rs_types": ["54"], "lat": -18.8, "lon": 47.4833, "alt": 1279, "station_name": "Antananarivo / Ivato (Madagascar)", "times": ["0:12:00", "0:00:00"]}, - {"station": "68110", "rs_types": ["99"], "lat": -22.5667, "lon": 17.1, "alt": 1728, "station_name": "Windhoek (Namibia)"}, - {"station": "68263", "rs_types": ["84"], "lat": -25.91, "lon": 28.2111, "alt": 1526, "station_name": "Pretoria Irene (South Africa)", "times": ["0:12:00", "5:00:00", "7:00:00", "1:00:00", "2:00:00"], "burst_altitude": 25467, "burst_samples": 219, "burst_std": 3234, "descent_rate": 6.5, "descent_samples": 6, "descent_std": 3.7}, - {"station": "68424", "rs_types": ["84"], "lat": -28.4136, "lon": 21.2597, "alt": 839, "station_name": "Upington (South Africa)", "times": ["0:00:00"]}, - {"station": "68442", "rs_types": ["84"], "lat": -29.1, "lon": 26.3, "alt": 1354, "station_name": "Bloemfontein J. B. M. Hertzog (South Africa)"}, - {"station": "68512", "rs_types": ["84"], "lat": -29.6719, "lon": 17.8875, "alt": 1006, "station_name": "Springbok (South Africa)", "times": ["0:12:00"]}, - {"station": "68538", "rs_types": ["84"], "lat": -30.6747, "lon": 23.9992, "alt": 384, "station_name": "De Aar (South Africa)"}, - {"station": "68592", "rs_types": ["84"], "lat": -29.6017, "lon": 31.13, "alt": 105, "station_name": "King Shaka Int'l Airport (South Africa)", "times": ["0:12:00", "0:00:00"]}, - {"station": "68816", "rs_types": ["84"], "lat": -33.97, "lon": 18.6, "alt": 42, "station_name": "Cape Town D. F. Malan (South Africa)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 22301, "burst_samples": 264, "burst_std": 3160}, - {"station": "68842", "rs_types": ["84"], "lat": -33.9844, "lon": 25.6108, "alt": 61, "station_name": "Port Elizabeth (South Africa)", "times": ["0:12:00", "0:00:00"]}, - {"station": "68906", "rs_types": ["99"], "lat": -40.35, "lon": -9.88, "alt": 54, "station_name": "Gough Island (South Africa)", "times": ["0:12:00", "0:00:00"]}, - {"station": "70026", "rs_types": ["24"], "lat": 71.2889, "lon": -156.7833, "alt": 13, "station_name": "Barrow, Wiley Post-Will Rogers Memorial Airport (United States)"}, - {"station": "70133", "rs_types": ["24"], "lat": 66.8864, "lon": -162.6133, "alt": 3, "station_name": "Kotzebue, Ralph Wien Memorial Airport (United States)"}, - {"station": "70200", "rs_types": ["24"], "lat": 64.5072, "lon": -165.4347, "alt": 11, "station_name": "Nome, Nome Airport (United States)"}, - {"station": "70219", "rs_types": ["24"], "lat": 60.785, "lon": -161.84, "alt": 38, "station_name": "Bethel, Bethel Airport (United States)"}, - {"station": "70231", "rs_types": ["24"], "lat": 62.9583, "lon": -155.5978, "alt": 103, "station_name": "McGrath, McGrath Airport (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "70261", "rs_types": ["24"], "lat": 64.8161, "lon": -147.8767, "alt": 132, "station_name": "Fairbanks, Fairbanks International Airport (United States)"}, - {"station": "70273", "rs_types": [["24", "405.300"]], "lat": 61.1567, "lon": -149.9864, "alt": 44, "station_name": "Anchorage, Ted Stevens Anchorage International Airport (United States)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 35090, "burst_samples": 226, "burst_std": 2106, "descent_rate": 11.3, "descent_samples": 210, "descent_std": 2.6}, - {"station": "70308", "rs_types": ["24"], "lat": 57.15, "lon": -170.2167, "alt": 19, "station_name": "St. Paul Island, St. Paul Island Airport (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "70316", "rs_types": ["24"], "lat": 55.2011, "lon": -162.7164, "alt": 30, "station_name": "Cold Bay, Cold Bay Airport (United States)"}, - {"station": "70326", "rs_types": ["24"], "lat": 58.6794, "lon": -156.6683, "alt": 17, "station_name": "King Salmon, King Salmon Airport (United States)"}, - {"station": "70350", "rs_types": ["24"], "lat": 57.7431, "lon": -152.4867, "alt": 22, "station_name": "Kodiak, Kodiak Airport (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "70361", "rs_types": ["24"], "lat": 59.5167, "lon": -139.6667, "alt": 11, "station_name": "Yakutat (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "70398", "rs_types": ["24"], "lat": 55.0389, "lon": -131.5778, "alt": 36, "station_name": "Annette, Annette Island Airport (United States)"}, - {"station": "70414", "rs_types": ["41"], "lat": 52.7167, "lon": 174.1, "alt": 29, "station_name": "Shemya, Eareckson As (United States)"}, - {"station": "71033", "rs_types": ["17"], "lat": 57.25, "lon": -105.6, "alt": 513, "station_name": "Key Lake, Sk, Sask (Canada)"}, - {"station": "71043", "rs_types": ["17"], "lat": 65.2833, "lon": -126.75, "alt": 67, "station_name": "Norman Wells, N. W. T. (Canada)", "times": ["0:00:00", "0:12:00"]}, - {"station": "71081", "rs_types": ["17"], "lat": 68.7667, "lon": -81.2167, "alt": 8, "station_name": "Hall Beach, N. W. T. (Canada)", "times": ["0:00:00", "0:12:00"]}, - {"station": "71082", "rs_types": ["17"], "lat": 82.5, "lon": -62.3333, "alt": 63, "station_name": "Alert, N. W. T. (Canada)", "times": ["0:12:00", "0:00:00"]}, - {"station": "71109", "rs_types": ["17"], "lat": 50.685, "lon": -127.3758, "alt": 22, "station_name": "Port Hardy, B. C. (Canada)", "times": ["0:00:00", "0:12:00"]}, - {"station": "71119", "rs_types": ["17"], "lat": 53.5475, "lon": -114.1083, "alt": 766, "station_name": "Edmonton Stony Plain Alta. (Canada)", "times": ["0:00:00", "0:12:00"]}, - {"station": "71603", "rs_types": ["17"], "lat": 43.8667, "lon": -66.1, "alt": 43, "station_name": "Yarmouth, N. S. (Canada)", "times": ["0:00:00", "0:12:00"]}, - {"station": "71701", "rs_types": ["41"], "lat": 45.8333, "lon": -66.4333, "alt": 51, "station_name": "Gagetown Can-Mil (Canada)"}, - {"station": "71722", "rs_types": [["17", "403.000"]], "lat": 46.3019, "lon": -76.0061, "alt": 170, "station_name": "Maniwaki, Que. (Canada)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 34812, "burst_samples": 256, "burst_std": 1922, "descent_rate": 10.6, "descent_samples": 222, "descent_std": 1.8}, - {"station": "71802", "rs_types": ["17"], "lat": 47.5167, "lon": -52.7833, "alt": 46, "station_name": "St. Lawrence, Nfld. (Canada)", "times": ["0:00:00", "0:12:00"]}, - {"station": "71811", "rs_types": ["17"], "lat": 50.2167, "lon": -66.25, "alt": 55, "station_name": "Sept-Iles, Que. (Canada)", "times": ["0:00:00", "0:12:00"]}, - {"station": "71815", "rs_types": ["17"], "lat": 48.5667, "lon": -58.5667, "alt": 8, "station_name": "Stephenville, Nfld. (Canada)", "times": ["0:12:00", "0:00:00"]}, - {"station": "71816", "rs_types": ["17"], "lat": 53.3, "lon": -60.3667, "alt": 46, "station_name": "Goose, Nfld. (Canada)", "times": ["0:00:00", "0:12:00"]}, - {"station": "71823", "rs_types": ["17"], "lat": 53.7572, "lon": -73.6792, "alt": 306, "station_name": "La Grande Iv, Que. (Canada)", "times": ["0:00:00", "0:12:00"]}, - {"station": "71836", "rs_types": ["17"], "lat": 51.2667, "lon": -80.65, "alt": 10, "station_name": "Moosonee, Ont. (Canada)", "times": ["0:12:00", "0:00:00"]}, - {"station": "71843", "rs_types": ["17"], "lat": 49.8, "lon": -97.1333, "alt": 251, "station_name": "Winnipeg Ua, Man (Canada)"}, - {"station": "71845", "rs_types": ["17"], "lat": 51.45, "lon": -90.2, "alt": 389, "station_name": "Pickle Lake, Ont. (Canada)", "times": ["0:00:00", "0:12:00"]}, - {"station": "71867", "rs_types": ["17"], "lat": 53.9667, "lon": -101.1, "alt": 271, "station_name": "The Pas, Man. (Canada)", "times": ["0:00:00", "0:12:00"]}, - {"station": "71906", "rs_types": ["17"], "lat": 58.1167, "lon": -68.4167, "alt": 37, "station_name": "Kuujjuaq, Que. (Canada)", "times": ["0:00:00", "0:12:00"]}, - {"station": "71907", "rs_types": ["17"], "lat": 58.4667, "lon": -78.0833, "alt": 3, "station_name": "Inukjuak, Que (Canada)", "times": ["0:00:00", "0:12:00"]}, - {"station": "71908", "rs_types": ["17"], "lat": 53.9, "lon": -122.79, "alt": 601, "station_name": "Prince George Ua, Bc (Canada)", "times": ["0:00:00", "0:12:00"]}, - {"station": "71909", "rs_types": ["17"], "lat": 63.75, "lon": -68.55, "alt": 34, "station_name": "Iqaluit, N. W. T. (Canada)", "times": ["0:00:00", "0:12:00"]}, - {"station": "71913", "rs_types": ["17"], "lat": 58.7333, "lon": -94.0667, "alt": 28, "station_name": "Churchill, Man. (Canada)", "times": ["0:00:00", "0:12:00"]}, - {"station": "71917", "rs_types": ["17"], "lat": 79.9833, "lon": -85.9333, "alt": 10, "station_name": "Eureka, N. W. T. (Canada)", "times": ["0:12:00", "0:00:00"]}, - {"station": "71924", "rs_types": ["17"], "lat": 74.7042, "lon": -94.9681, "alt": 67, "station_name": "Resolute, N. W. T. (Canada)", "times": ["0:12:00", "0:00:00"]}, - {"station": "71925", "rs_types": ["17"], "lat": 69.1333, "lon": -105.0667, "alt": 23, "station_name": "Cambridge Bay, N. W. T. (Canada)", "times": ["0:00:00", "0:12:00"]}, - {"station": "71926", "rs_types": ["17"], "lat": 64.3167, "lon": -96, "alt": 18, "station_name": "Baker Lake, N. W. T. (Canada)", "times": ["0:00:00", "0:12:00"]}, - {"station": "71934", "rs_types": ["17"], "lat": 60.0261, "lon": -111.9294, "alt": 203, "station_name": "Fort Smith, N. W. T. (Canada)", "times": ["0:00:00", "0:12:00"]}, - {"station": "71945", "rs_types": ["17"], "lat": 58.8333, "lon": -122.6, "alt": 835, "station_name": "Muncho Lake (Canada)", "times": ["0:00:00", "0:12:00"]}, - {"station": "71957", "rs_types": ["17"], "lat": 68.3167, "lon": -133.5167, "alt": 59, "station_name": "Inuvik, N. W. T. (Canada)", "times": ["0:00:00", "0:12:00"]}, - {"station": "72201", "rs_types": ["52"], "lat": 24.5531, "lon": -81.7886, "alt": 1, "station_name": "Key West, Key West International Airport (United States)"}, - {"station": "72202", "rs_types": ["11"], "lat": 25.7544, "lon": -80.3831, "alt": 3, "station_name": "Miami, Miami International Airport (United States)"}, - {"station": "72206", "rs_types": ["52"], "lat": 30.4839, "lon": -81.7011, "alt": 9, "station_name": "Jacksonville, Jacksonville International Airport (United States)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 32492, "burst_samples": 118, "burst_std": 3612, "descent_rate": 5.6, "descent_samples": 111, "descent_std": 3.8}, - {"station": "72208", "rs_types": ["82"], "lat": 32.895, "lon": -80.0275, "alt": 14, "station_name": "Charleston, Charleston Air Force Base (United States)"}, - {"station": "72210", "rs_types": ["82"], "lat": 27.7053, "lon": -82.4006, "alt": 12, "station_name": "Tampa Bay Area (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "72214", "rs_types": ["82"], "lat": 30.4461, "lon": -84.2994, "alt": 24, "station_name": "Tallahassee, Tallahassee Regional Airport (United States)"}, - {"station": "72215", "rs_types": ["82"], "lat": 33.3558, "lon": -84.5672, "alt": 262, "station_name": "Peachtree City, Ga. (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "72230", "rs_types": ["82"], "lat": 33.1789, "lon": -86.7822, "alt": 178, "station_name": "Shelby Country Airport, Al. (United States)", "times": ["0:12:00", "0:00:00"]}, - {"station": "72233", "rs_types": ["52"], "lat": 30.3369, "lon": -89.825, "alt": 8, "station_name": "Slidell (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "72235", "rs_types": ["82"], "lat": 32.3189, "lon": -90.08, "alt": 105, "station_name": "Jackson, Jackson International Airport (United States)"}, - {"station": "72240", "rs_types": ["52"], "lat": 30.1253, "lon": -93.2161, "alt": 5, "station_name": "Lake Charles, Lake Charles Regional Airport (United States)"}, - {"station": "72248", "rs_types": ["82"], "lat": 32.4511, "lon": -93.8414, "alt": 78, "station_name": "Shreveport, Shreveport Regional Airport (United States)", "burst_altitude": 26234, "burst_samples": 5, "burst_std": 13040}, - {"station": "72249", "rs_types": ["82"], "lat": 32.835, "lon": -97.2986, "alt": 196, "station_name": "Fort Worth (United States)", "times": ["0:12:00", "0:00:00"]}, - {"station": "72250", "rs_types": ["52"], "lat": 25.9167, "lon": -97.4192, "alt": 7, "station_name": "Brownsville, Brownsville / South Padre Island International Airport (United States)"}, - {"station": "72251", "rs_types": ["52"], "lat": 27.7789, "lon": -97.5056, "alt": 13, "station_name": "Corpus Christi, Corpus Christi International Airport (United States)"}, - {"station": "72261", "rs_types": ["24"], "lat": 29.3744, "lon": -100.9183, "alt": 304, "station_name": "Del Rio, Del Rio International Airport (United States)"}, - {"station": "72265", "rs_types": ["82"], "lat": 31.9425, "lon": -102.1892, "alt": 875, "station_name": "Midland, Midland International Airport (United States)"}, - {"station": "72274", "rs_types": ["52"], "lat": 32.2278, "lon": -110.9558, "alt": 805, "station_name": "Tucson, Tucson International Airport (United States)"}, - {"station": "72293", "rs_types": [["24", "400.65"]], "lat": 32.845125, "lon": -117.123690, "alt": 133, "station_name": "San Diego, Miramar MCAS/Mitscher Field Airport (United States)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 32924, "burst_samples": 251, "burst_std": 2704, "descent_rate": 12.6, "descent_samples": 224, "descent_std": 2.7}, - {"station": "72305", "rs_types": ["52"], "lat": 34.7761, "lon": -76.8767, "alt": 11, "station_name": "Newport (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "72317", "rs_types": ["82"], "lat": 36.0981, "lon": -79.9428, "alt": 282, "station_name": "Greensboro, Piedmont Triad International Airport (United States)"}, - {"station": "72318", "rs_types": ["11"], "lat": 37.2039, "lon": -80.4142, "alt": 653, "station_name": "Blacksburg, Va. (United States)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 33000, "burst_samples": 590, "descent_rate": 5.4, "descent_samples": 590, "ascent_rate": 4.9}, - {"station": "72327", "rs_types": ["82"], "lat": 36.2469, "lon": -86.5617, "alt": 182, "station_name": "Nashville, Nashville International Airport (United States)"}, - {"station": "72340", "rs_types": ["82"], "lat": 34.835, "lon": -92.2594, "alt": 165, "station_name": "North Little Rock, North Little Rock Airport (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "72357", "rs_types": ["11"], "lat": 35.1808, "lon": -97.4378, "alt": 357, "station_name": "Norman / Max Westheimer (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "72363", "rs_types": ["82"], "lat": 35.2331, "lon": -101.7092, "alt": 1099, "station_name": "Amarillo, Amarillo International Airport (United States)"}, - {"station": "72364", "rs_types": ["52"], "lat": 31.8728, "lon": -106.6981, "alt": 1252, "station_name": "Santa Teresa (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "72365", "rs_types": [["82", "1680.000"]], "lat": 35.0378, "lon": -106.6219, "alt": 1631, "station_name": "Albuquerque, Albuquerque International Airport (United States)", "times": ["0:12:00"], "burst_altitude": 31780, "burst_samples": 180, "burst_std": 4058, "descent_rate": 4.5, "descent_samples": 85, "descent_std": 2.4}, - {"station": "72376", "rs_types": ["52"], "lat": 35.23, "lon": -111.8217, "alt": 2192, "station_name": "Flagstaff, Az. (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "72381", "rs_types": ["11"], "lat": 34.9167, "lon": -117.9, "alt": 702, "station_name": "Edwards Air Force Base (United States)", "times": ["2:12:00"], "burst_altitude": 23066, "burst_samples": 19, "burst_std": 4490, "descent_rate": 4.9, "descent_samples": 14, "descent_std": 2.8}, - {"station": "72388", "rs_types": [["82", "1680.000"]], "lat": 36.04705, "lon": -115.18466, "alt": 695, "station_name": "Las Vegas, National Weather Service Office (United States)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 31000, "descent_rate": 5}, - {"station": "72393", "rs_types": ["11", "49"], "lat": 34.75, "lon": -120.5667, "alt": 112, "station_name": "Vandenberg Air Force Base (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "72402", "rs_types": ["11"], "lat": 37.9333, "lon": -75.4833, "alt": 12, "station_name": "Wallops Island, Wallops Flight Facility Airport (United States)", "burst_altitude": 30562, "burst_samples": 214, "burst_std": 5299, "descent_rate": 5.9, "descent_samples": 176, "descent_std": 2.9}, - {"station": "72403", "rs_types": ["11"], "lat": 38.9767, "lon": -77.4858, "alt": 95, "station_name": "Washington DC, Washington-Dulles International Airport (United States)", "times": ["0:12:00"], "burst_altitude": 32098, "burst_samples": 431, "burst_std": 3115, "descent_rate": 5.4, "descent_samples": 380, "descent_std": 3.0}, - {"station": "72426", "rs_types": ["82"], "lat": 39.4214, "lon": -83.8217, "alt": 317, "station_name": "Wilmington, Oh. (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "72440", "rs_types": ["52"], "lat": 37.2347, "lon": -93.4014, "alt": 386, "station_name": "Springfield, Springfield Regional Airport (United States)"}, - {"station": "72451", "rs_types": ["82"], "lat": 37.7614, "lon": -99.9686, "alt": 790, "station_name": "Dodge City, Dodge City Regional Airport (United States)"}, - {"station": "72456", "rs_types": [["11", "400.300"]], "lat": 39.0722, "lon": -95.6306, "alt": 268, "station_name": "Topeka, Philip Billard Municipal Airport (United States)", "burst_altitude": 32421, "burst_samples": 267, "burst_std": 2424, "descent_rate": 5.0, "descent_samples": 224, "descent_std": 3.0}, - {"station": "72469", "rs_types": ["11"], "lat": 39.7675, "lon": -104.8694, "alt": 1626, "station_name": "Denver / Stapleton International, Co. (United States)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 31951, "burst_samples": 267, "burst_std": 1853, "descent_rate": 4.7, "descent_samples": 238, "descent_std": 3.1}, - {"station": "72476", "rs_types": ["82"], "lat": 39.12, "lon": -108.525, "alt": 1481, "station_name": "Grand Junction, Walker Field (United States)"}, - {"station": "72489", "rs_types": ["82"], "lat": 39.5681, "lon": -119.7967, "alt": 1463, "station_name": "Reno, Nv. (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "72493", "rs_types": [["24", "404.000"]], "lat": 37.7444, "lon": -122.2236, "alt": 1, "station_name": "Oakland, Metro Oakland International Airport (United States)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 33412, "burst_samples": 283, "burst_std": 2086, "descent_rate": 12.2, "descent_samples": 269, "descent_std": 2.9}, - {"station": "72501", "rs_types": ["52"], "lat": 40.865, "lon": -72.8628, "alt": 20, "station_name": "Upton, Ny. (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "72518", "rs_types": ["82"], "lat": 42.6919, "lon": -73.8322, "alt": 87, "station_name": "Albany, Albany International Airport (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "72520", "rs_types": ["82"], "lat": 40.5317, "lon": -80.2172, "alt": 366, "station_name": "Pittsburgh, Pittsburgh International Airport (United States)"}, - {"station": "72528", "rs_types": ["82"], "lat": 42.9411, "lon": -78.7189, "alt": 220, "station_name": "Buffalo, Greater Buffalo International Airport (United States)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 32750, "burst_samples": 389, "descent_rate": 4.8, "descent_samples": 389, "ascent_rate": 5.6}, - {"station": "72558", "rs_types": [["82", "1680.000"]], "lat": 41.3202, "lon": -96.3669, "alt": 350, "station_name": "Valley (United States)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 32461, "burst_samples": 237, "burst_std": 3199, "descent_rate": 4.6, "descent_samples": 167, "descent_std": 2.7}, - {"station": "72562", "rs_types": ["82"], "lat": 41.1328, "lon": -100.7, "alt": 846, "station_name": "North Platte, North Platte Regional Airport (United States)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 33500, "burst_samples": 247, "descent_rate": 5.2, "descent_samples": 247, "ascent_rate": 5.3}, - {"station": "72572", "rs_types": ["82"], "lat": 40.7722, "lon": -111.9553, "alt": 1288, "station_name": "Salt Lake City, Salt Lake City International Airport (United States)"}, - {"station": "72582", "rs_types": ["82"], "lat": 40.86, "lon": -115.7422, "alt": 1607, "station_name": "Elko, Nv. (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "72597", "rs_types": ["52"], "lat": 42.3769, "lon": -122.8822, "alt": 405, "station_name": "Medford, Rogue Valley International Airport (United States)"}, - {"station": "72632", "rs_types": ["52"], "lat": 42.6989, "lon": -83.4714, "alt": 321, "station_name": "White Lake, Mi. (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "72634", "rs_types": ["52"], "lat": 44.9075, "lon": -84.7189, "alt": 446, "station_name": "Gaylord, Mi. (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "72645", "rs_types": ["82"], "lat": 44.4986, "lon": -88.1119, "alt": 211, "station_name": "Green Bay, Austin Straubel International Airport (United States)"}, - {"station": "72649", "rs_types": ["82"], "lat": 44.8497, "lon": -93.5647, "alt": 287, "station_name": "Chanhaussen, Mn. (United States)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 32731, "burst_samples": 50, "burst_std": 1780, "descent_rate": 4.3, "descent_samples": 16, "descent_std": 1.6}, - {"station": "72659", "rs_types": ["82"], "lat": 45.4556, "lon": -98.4133, "alt": 396, "station_name": "Aberdeen, Aberdeen Regional Airport (United States)"}, - {"station": "72662", "rs_types": ["82"], "lat": 44.0728, "lon": -103.21, "alt": 976, "station_name": "Rapid City, Rapid City Regional Airport (United States)"}, - {"station": "72672", "rs_types": ["82"], "lat": 43.0647, "lon": -108.4767, "alt": 1684, "station_name": "Riverton, Riverton Regional Airport (United States)"}, - {"station": "72681", "rs_types": ["11"], "lat": 43.5672, "lon": -116.2114, "alt": 871, "station_name": "Boise, Boise Air Terminal (United States)"}, - {"station": "72694", "rs_types": [["24", "401.400"]], "lat": 44.9092, "lon": -123.0083, "alt": 64, "station_name": "Salem, McNary Field (United States)", "times": ["0:00:00"], "burst_altitude": 34049, "burst_samples": 235, "burst_std": 2613, "descent_rate": 11.1, "descent_samples": 193, "descent_std": 3.1}, - {"station": "72712", "rs_types": ["52"], "lat": 46.8683, "lon": -68.0136, "alt": 191, "station_name": "Caribou, Caribou Municipal Airport (United States)"}, - {"station": "72747", "rs_types": ["11"], "lat": 48.5647, "lon": -93.3975, "alt": 361, "station_name": "International Falls, Falls International Airport (United States)"}, - {"station": "72764", "rs_types": ["82"], "lat": 46.7717, "lon": -100.7594, "alt": 511, "station_name": "Bismarck, Bismarck Municipal Airport (United States)"}, - {"station": "72768", "rs_types": ["82"], "lat": 48.2067, "lon": -106.6256, "alt": 699, "station_name": "Glasgow, Glasgow International Airport (United States)"}, - {"station": "72776", "rs_types": ["52"], "lat": 47.4614, "lon": -111.3847, "alt": 1131, "station_name": "Great Falls, Mt. (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "72786", "rs_types": ["82"], "lat": 47.6806, "lon": -117.6267, "alt": 728, "station_name": "Spokane, Wa. (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "72797", "rs_types": ["24"], "lat": 47.9339, "lon": -124.5603, "alt": 59, "station_name": "Quillayute, Quillayute State Airport (United States)"}, - {"station": "74004", "rs_types": ["41"], "lat": 32.8356, "lon": -114.4, "alt": 231, "station_name": "Yuma Proving Grounds Az. (United States)", "times": ["2:18:00", "2:21:00", "3:12:00", "3:18:00", "3:21:00", "4:15:00", "4:18:00", "4:21:00", "3:15:00", "2:12:00", "2:15:00"], "burst_altitude": 23500, "burst_samples": 147, "descent_rate": 9.9, "descent_samples": 147}, - {"station": "74389", "rs_types": ["52"], "lat": 43.8925, "lon": -70.2572, "alt": 125, "station_name": "Gray, Me. (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "74455", "rs_types": ["11"], "lat": 41.6114, "lon": -90.5817, "alt": 229, "station_name": "Davenport, Ia. (United States)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 32916, "burst_samples": 319, "burst_std": 1898, "descent_rate": 4.0, "descent_samples": 254, "descent_std": 2.8}, - {"station": "74560", "rs_types": ["82"], "lat": 40.1517, "lon": -89.3383, "alt": 178, "station_name": "Lincoln, Il. (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "74626", "rs_types": ["41"], "lat": 33.45, "lon": -111.95, "alt": 386, "station_name": "Wfo Phoenix, Az. (United States)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 23967, "burst_samples": 129, "burst_std": 2324, "descent_rate": 13.7, "descent_samples": 128, "descent_std": 2.9}, - {"station": "74646", "rs_types": ["23"], "lat": 36.6079, "lon": -97.4877, "alt": 320, "station_name": "Sulphur Municipal (United States)", "times": ["0:06:00", "0:12:00", "0:18:00", "0:00:00"], "burst_altitude": 25368, "burst_samples": 334, "burst_std": 3520, "descent_rate": 12.5, "descent_samples": 311, "descent_std": 2.7}, - {"station": "74794", "rs_types": [""], "lat": 28.4667, "lon": -80.55, "alt": 3, "station_name": "Cocoa Beach, Cape Canaveral Air Force Station Skid Strip (United States)"}, - {"station": "76225", "rs_types": ["41", "35"], "lat": 28.6667, "lon": -106.0333, "alt": 1435, "station_name": "University De Chihuahua, Chihuahua, Chih. (Mexico)", "times": ["0:00:00"]}, - {"station": "76256", "rs_types": ["41", "35"], "lat": 27.95, "lon": -110.8, "alt": 11, "station_name": "Empalme, Son. (Mexico)", "times": ["0:12:00"]}, - {"station": "76394", "rs_types": ["41"], "lat": 25.8667, "lon": -100.2333, "alt": 448, "station_name": "Aerop. Internacional Monterrey, N. L. (Mexico)", "times": ["0:12:00", "4:00:00", "5:00:00", "7:00:00", "1:00:00"]}, - {"station": "76405", "rs_types": ["41"], "lat": 24.1167, "lon": -110.3167, "alt": 18, "station_name": "La Paz, B. C. S. (Mexico)", "times": ["0:00:00", "0:12:00"]}, - {"station": "76458", "rs_types": ["41", "35"], "lat": 23.2167, "lon": -106.4, "alt": 4, "station_name": "Colonia Juan Carras-Co Mazatlan, Sin. (Mexico)", "times": ["0:00:00", "0:12:00"]}, - {"station": "76595", "rs_types": ["41"], "lat": 21.0167, "lon": -86.85, "alt": 10, "station_name": "Cancun (Mexico)", "times": ["0:12:00", "3:00:00", "4:00:00", "5:00:00", "6:00:00"]}, - {"station": "76612", "rs_types": ["41", "35"], "lat": 20.7, "lon": -103.3833, "alt": 1551, "station_name": "Guadalajara, Jal. (Mexico)", "times": ["0:00:00", "0:12:00"]}, - {"station": "76644", "rs_types": ["41"], "lat": 20.95, "lon": -89.65, "alt": 10, "station_name": "Merida / lic Manuel Crecencio (Mexico)", "times": ["0:12:00", "0:00:00"]}, - {"station": "76654", "rs_types": ["41"], "lat": 19.0667, "lon": -104.3333, "alt": 3, "station_name": "Manzanillo, Col. (Mexico)", "times": ["0:00:00", "0:12:00"]}, - {"station": "76679", "rs_types": ["41", "35"], "lat": 19.4333, "lon": -99.1333, "alt": 2234, "station_name": "Aerop. Internacionalmexico, D. F. (Mexico)", "times": ["0:00:00", "0:12:00", "0:18:00"]}, - {"station": "76692", "rs_types": ["41", "35"], "lat": 19.15, "lon": -96.1333, "alt": 13, "station_name": "Hacienda Ylang Ylangveracruz, Ver. (Mexico)", "times": ["0:00:00", "0:12:00"]}, - {"station": "76743", "rs_types": ["41"], "lat": 17.9833, "lon": -92.9333, "alt": 10, "station_name": "Villahermosa, Tab. (Mexico)", "times": ["0:12:00", "0:00:00"]}, - {"station": "76805", "rs_types": ["41", "35"], "lat": 16.75, "lon": -99.75, "alt": 13, "station_name": "Acapulco, Gro. (Mexico)", "times": ["0:00:00", "2:12:00", "3:12:00", "4:12:00", "7:12:00"]}, - {"station": "76903", "rs_types": ["41"], "lat": 14.9167, "lon": -92.25, "alt": 118, "station_name": "Tapachula, Chis (Mexico)", "times": ["3:00:00", "2:12:00", "4:00:00", "3:12:00", "5:00:00", "4:12:00", "6:00:00"]}, - {"station": "78016", "rs_types": ["41"], "lat": 32.3669, "lon": -64.6772, "alt": 6, "station_name": "Bermuda (Bermuda)", "times": ["0:12:00"], "burst_altitude": 25660, "burst_samples": 10, "burst_std": 1868, "descent_rate": 11.3, "descent_samples": 7, "descent_std": 2.3}, - {"station": "78384", "rs_types": ["17"], "lat": 19.2917, "lon": -81.3583, "alt": 3, "station_name": "Owen Roberts Airportgrand Cayman (Cayman Islands)", "times": ["0:12:00", "0:00:00"]}, - {"station": "78397", "rs_types": ["17"], "lat": 18.0667, "lon": -76.85, "alt": 3, "station_name": "Kingston / Norman Manley (Jamaica)", "times": ["0:12:00", "4:00:00"]}, - {"station": "78486", "rs_types": ["17"], "lat": 18.4333, "lon": -69.8833, "alt": 14, "station_name": "Santo Domingo (Dominican Republic)", "times": ["0:12:00"]}, - {"station": "78526", "rs_types": ["52"], "lat": 18.4317, "lon": -65.9919, "alt": 3, "station_name": "San Juan / Int., Puerto Rico (Puerto Rico)", "times": ["0:00:00", "0:12:00"]}, - {"station": "78762", "rs_types": ["41"], "lat": 9.9833, "lon": -84.1833, "alt": 920, "station_name": "Juan Santamaria (Costa Rica)"}, - {"station": "78807", "rs_types": ["41"], "lat": 8.9667, "lon": -79.5667, "alt": 7, "station_name": "Corozal Oeste (Panama)", "times": ["2:12:00", "3:12:00", "4:12:00", "5:12:00"]}, - {"station": "78866", "rs_types": ["17"], "lat": 18.0333, "lon": -63.1167, "alt": 4, "station_name": "Juliana Airport, Saint Maarten (Netherlands Antilles)", "times": ["0:12:00", "0:00:00"]}, - {"station": "78897", "rs_types": ["77"], "lat": 16.27, "lon": -61.52, "alt": 11, "station_name": "Le Raizet, Guadeloupe (Guadeloupe)", "times": ["0:12:00", "0:00:00"]}, - {"station": "78954", "rs_types": ["17"], "lat": 13.0667, "lon": -59.4833, "alt": 50, "station_name": "Grantley Adams (Barbados)", "times": ["0:12:00", "0:00:00"]}, - {"station": "78970", "rs_types": ["17"], "lat": 10.6167, "lon": -61.35, "alt": 12, "station_name": "Piarco International Airport, Trinidad (Trinidad and Tobago)", "times": ["0:12:00", "3:00:00"]}, - {"station": "78988", "rs_types": ["17"], "lat": 12.2, "lon": -68.9667, "alt": 9, "station_name": "Hato Airport, Curacao (Netherlands Antilles)", "times": ["0:12:00", "5:00:00", "1:00:00", "2:00:00"], "burst_altitude": 27128, "burst_samples": 32, "burst_std": 2218}, - {"station": "80001", "rs_types": ["17"], "lat": 12.5833, "lon": -81.7167, "alt": 1, "station_name": "San Andres Isla / Sesquicentenario (Colombia)", "times": ["0:12:00", "3:00:00"]}, - {"station": "80222", "rs_types": ["41"], "lat": 4.7, "lon": -74.15, "alt": 2547, "station_name": "Bogota / Eldorado (Colombia)", "times": ["0:12:00"]}, - {"station": "81405", "rs_types": ["77"], "lat": 4.83, "lon": -52.37, "alt": 105, "station_name": "Cayenne / Rochambeau (French Guiana)", "times": ["0:12:00", "0:00:00"]}, - {"station": "81715", "rs_types": ["23"], "lat": 2.31, "lon": -44.12, "alt": 56, "station_name": "Sao Luis (Brazil)"}, - {"station": "82022", "rs_types": ["23"], "lat": 2.8333, "lon": -60.7, "alt": 84, "station_name": "Boa Vista, Boa Vista Intl (Brazil)", "times": ["0:12:00"]}, - {"station": "82026", "rs_types": ["23"], "lat": 2.2239, "lon": -55.9472, "alt": 325, "station_name": "Tirios (Brazil)", "times": ["0:12:00"]}, - {"station": "82099", "rs_types": ["23"], "lat": 0.05, "lon": -51.0667, "alt": 16, "station_name": "Macapa-Aeroporto (Brazil)", "times": ["0:12:00"]}, - {"station": "82107", "rs_types": ["23"], "lat": -0.1167, "lon": -66.9667, "alt": 79, "station_name": "Sao Gabriel Da Cachoeira (Aero) (Brazil)", "times": ["0:12:00"]}, - {"station": "82193", "rs_types": ["23"], "lat": -1.3833, "lon": -48.4833, "alt": 16, "station_name": "Belem Aeroporto (Brazil)", "times": ["0:12:00"]}, - {"station": "82244", "rs_types": ["23"], "lat": -2.4333, "lon": -54.7167, "alt": 72, "station_name": "Santarem-Aeroporto (Brazil)", "times": ["0:12:00"]}, - {"station": "82332", "rs_types": ["23"], "lat": -3.15, "lon": -59.9833, "alt": 84, "station_name": "Manaus Aeroporto (Brazil)", "times": ["0:00:00", "0:12:00"]}, - {"station": "82400", "rs_types": ["24", "42"], "lat": -3.85, "lon": -32.4167, "alt": 56, "station_name": "Fernando De Noronha (Brazil)", "times": ["0:00:00", "0:12:00"]}, - {"station": "82411", "rs_types": ["23"], "lat": -4.25, "lon": -69.9333, "alt": 85, "station_name": "Tabatinga (Brazil)", "times": ["0:12:00"]}, - {"station": "82532", "rs_types": ["23"], "lat": -5.8167, "lon": -61.2833, "alt": 53, "station_name": "Manicore (Aero) (Brazil)", "times": ["0:12:00"]}, - {"station": "82599", "rs_types": ["23"], "lat": -5.9167, "lon": -35.25, "alt": 52, "station_name": "Natal Aeroporto (Brazil)"}, - {"station": "82705", "rs_types": ["23"], "lat": -7.5833, "lon": -72.7667, "alt": 199, "station_name": "Cruzeiro Do Sul (Aero) (Brazil)", "times": ["0:12:00"]}, - {"station": "82824", "rs_types": ["23"], "lat": -8.7667, "lon": -63.9167, "alt": 102, "station_name": "Porto Velho Aeroporto (Brazil)", "times": ["0:12:00"]}, - {"station": "82917", "rs_types": ["23"], "lat": -10, "lon": -67.8, "alt": 142, "station_name": "Rio Branco (Brazil)", "times": ["0:12:00"]}, - {"station": "82965", "rs_types": ["23"], "lat": -9.8667, "lon": -56.1, "alt": 288, "station_name": "Alta Floresta Aeroporto (Brazil)", "times": ["0:12:00"]}, - {"station": "83208", "rs_types": ["23"], "lat": -12.7, "lon": -60.1, "alt": 612, "station_name": "Vilhena Aeroporto (Brazil)", "times": ["0:12:00"]}, - {"station": "83362", "rs_types": ["23"], "lat": -15.65, "lon": -56.1, "alt": 187, "station_name": "Cuiaba Aeroporto (Brazil)", "times": ["0:12:00"]}, - {"station": "83378", "rs_types": ["23"], "lat": -15.8667, "lon": -47.9333, "alt": 1061, "station_name": "Brasilia Aeroporto (Brazil)", "times": ["0:12:00"], "burst_altitude": 25750, "burst_samples": 506, "descent_rate": 5.9, "descent_samples": 139, "descent_std": 3.5}, - {"station": "83525", "rs_types": ["23"], "lat": -18.8833, "lon": -48.2167, "alt": 943, "station_name": "Uberlandia (Aero) (Brazil)", "times": ["0:12:00"], "burst_altitude": 25019, "burst_samples": 67, "burst_std": 3270, "descent_rate": 6.2, "descent_samples": 65, "descent_std": 3.7}, - {"station": "83554", "rs_types": ["23"], "lat": -19, "lon": -57.6667, "alt": 141, "station_name": "Corumba Aeroporto (Brazil)", "times": ["0:12:00"]}, - {"station": "83566", "rs_types": [["23", "404.000"]], "lat": -19.6167, "lon": -43.9667, "alt": 827, "station_name": "Confis Intnl Airport (Brazil)", "times": ["0:12:00"], "burst_altitude": 24410, "burst_samples": 94, "burst_std": 3002, "descent_rate": 5.3, "descent_samples": 89, "descent_std": 2.8}, - {"station": "83612", "rs_types": ["23"], "lat": -20.4667, "lon": -54.6667, "alt": 567, "station_name": "Campo Grande Aeroporto (Brazil)", "times": ["0:12:00"]}, - {"station": "83649", "rs_types": ["23"], "lat": -20.2667, "lon": -40.2833, "alt": 4, "station_name": "Vitoria Aeroporto (Brazil)", "times": ["0:12:00"]}, - {"station": "83746", "rs_types": ["23"], "lat": -22.8167, "lon": -43.2332, "alt": 6, "station_name": "Galeao (Brazil)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 25500, "burst_samples": 633, "descent_rate": 5.7, "descent_samples": 123, "descent_std": 3.0}, - {"station": "83768", "rs_types": [["23", "403.000"]], "lat": -23.3333, "lon": -51.1333, "alt": 569, "station_name": "Londrina Aeroporto (Brazil)", "times": ["0:12:00"], "burst_altitude": 25250, "burst_samples": 295, "burst_std": 1685, "descent_rate": 5.6, "descent_samples": 66, "descent_std": 4.0}, - {"station": "83779", "rs_types": ["14", "23"], "lat": -23.5, "lon": -46.6333, "alt": 722, "station_name": "Marte Civ / Mil (Brazil)", "times": ["0:12:00"], "burst_altitude": 24122, "burst_samples": 157, "burst_std": 2250, "descent_rate": 5.9, "descent_samples": 144, "descent_std": 3.4}, - {"station": "83827", "rs_types": ["23"], "lat": -25.5167, "lon": -54.5833, "alt": 180, "station_name": "Foz Do Iguacu Aeroporto (Brazil)", "times": ["0:00:00", "0:12:00"]}, - {"station": "83840", "rs_types": ["23"], "lat": -25.5167, "lon": -49.1667, "alt": 908, "station_name": "Curitiba Aeroporto (Brazil)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 28000, "burst_samples": 520, "descent_rate": 2.4, "descent_samples": 520, "ascent_rate": 5.5}, - {"station": "83899", "rs_types": ["23"], "lat": -27.6667, "lon": -48.5391, "alt": 5, "station_name": "Florianopolis Aeroporto (Brazil)", "times": ["2:12:00", "3:12:00", "4:12:00", "5:12:00", "1:12:00"], "burst_altitude": 25750, "burst_samples": 322, "descent_rate": 5, "descent_samples": 322, "ascent_rate": 6.3}, - {"station": "83928", "rs_types": ["24"], "lat": -29.7833, "lon": -57.0333, "alt": 74, "station_name": "Uruguaiana Aeroporto (Brazil)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 22717, "burst_samples": 60, "burst_std": 4832, "descent_rate": 4.5, "descent_samples": 57, "descent_std": 2.6}, - {"station": "83937", "rs_types": ["23"], "lat": -29.7167, "lon": -53.7011, "alt": 85, "station_name": "Santa Maria Aero-Porto (Brazil)", "times": ["0:12:00"], "burst_altitude": 26750, "burst_samples": 346, "descent_rate": 2.1, "descent_samples": 346, "ascent_rate": 6.3}, - {"station": "83971", "rs_types": [["23", "403.000"]], "lat": -30, "lon": -51.1833, "alt": 3, "station_name": "Porto Alegre Aero-Porto (Brazil)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 25500, "burst_samples": 714, "descent_rate": 5.1, "descent_samples": 221, "descent_std": 3.2}, - {"station": "85442", "rs_types": ["41"], "lat": -23.4503, "lon": -70.4408, "alt": 135, "station_name": "Antofagasta (Chile)", "times": ["0:12:00"]}, - {"station": "85469", "rs_types": ["41"], "lat": -27.1606, "lon": -109.4267, "alt": 51, "station_name": "Isla De Pascua (Chile)", "times": ["0:00:00"]}, - {"station": "85577", "rs_types": ["41"], "lat": -33.43, "lon": -70.68, "alt": 520, "station_name": "Santiago Q. Normal (Chile)"}, - {"station": "85586", "rs_types": ["41"], "lat": -33.6547, "lon": -71.6144, "alt": 75, "station_name": "Santo Domingo (Chile)", "times": ["0:12:00", "0:00:00"]}, - {"station": "85799", "rs_types": ["41"], "lat": -41.4347, "lon": -73.0975, "alt": 85, "station_name": "Puerto Montt (Chile)", "times": ["0:12:00"]}, - {"station": "85934", "rs_types": ["41"], "lat": -53.0033, "lon": -70.845, "alt": 37, "station_name": "Punta Arenas (Chile)", "times": ["0:12:00"]}, - {"station": "87155", "rs_types": ["41"], "lat": -27.45, "lon": -59.05, "alt": 53, "station_name": "Resistencia Aero. (Argentina)", "times": ["0:12:00"]}, - {"station": "87576", "rs_types": [["41", "403.000"]], "lat": -34.8167, "lon": -58.5333, "alt": 20, "station_name": "Ezeiza Aerodrome (Argentina)", "times": ["0:12:00"], "burst_altitude": 30000, "burst_samples": 464, "descent_rate": 7.6, "descent_samples": 465, "ascent_rate": 6.4}, - {"station": "87860", "rs_types": ["41"], "lat": -45.7833, "lon": -67.5, "alt": 58, "station_name": "Comodoro Rivadavia Aerodrome (Argentina)", "times": ["0:12:00"]}, - {"station": "88889", "rs_types": ["41"], "lat": -51.82, "lon": -58.4481, "alt": 74, "station_name": "Mount Pleasant Airport (Falkland Islands)", "times": ["0:00:00"]}, - {"station": "89009", "rs_types": ["23"], "lat": -90, "lon": 0, "alt": 2830, "station_name": "South Pole (Antarctica)"}, - {"station": "89062", "rs_types": ["41"], "lat": -67.5661, "lon": -68.1297, "alt": 16, "station_name": "Rothera Point (Antarctica)", "times": ["3:12:00", "4:12:00", "1:12:00"]}, - {"station": "89532", "rs_types": ["22"], "lat": -69.0053, "lon": 39.5811, "alt": 18, "station_name": "Syowa (Antarctica)", "times": ["0:12:00", "0:00:00"]}, - {"station": "89564", "rs_types": ["41"], "lat": -67.6017, "lon": 62.8753, "alt": 10, "station_name": "Mawson (Antarctica)", "times": ["0:12:00"]}, - {"station": "89571", "rs_types": ["41", "23"], "lat": -68.5744, "lon": 77.9672, "alt": 18, "station_name": "Davis (Antarctica)", "times": ["0:12:00", "0:00:00"]}, - {"station": "89611", "rs_types": ["41"], "lat": -66.2825, "lon": 110.5231, "alt": 40, "station_name": "Casey (Antarctica)", "times": ["0:12:00", "0:00:00"]}, - {"station": "89625", "rs_types": ["23"], "lat": -75.1017, "lon": 123.4119, "alt": 3232, "station_name": "Concordia (Antarctica)", "times": ["0:12:00"]}, - {"station": "89642", "rs_types": ["77"], "lat": -66.6631, "lon": 140.0011, "alt": 41, "station_name": "Dumont D'Urville (Antarctica)", "times": ["0:00:00"]}, - {"station": "91165", "rs_types": ["11", "24"], "lat": 21.9933, "lon": -159.3467, "alt": 45, "station_name": "Lihue, Lihue Airport (United States)", "burst_altitude": 32494, "burst_samples": 172, "burst_std": 2782, "descent_rate": 7.1, "descent_samples": 138, "descent_std": 4.2}, - {"station": "91212", "rs_types": ["52"], "lat": 13.4767, "lon": 144.7944, "alt": 91, "station_name": "Agana, Guam International Airport (United States)", "times": ["0:00:00", "0:12:00"]}, - {"station": "91285", "rs_types": ["24"], "lat": 19.7183, "lon": -155.0583, "alt": 11, "station_name": "Hilo, Hilo International Airport (United States)"}, - {"station": "91334", "rs_types": ["82"], "lat": 7.45, "lon": 151.8333, "alt": 3, "station_name": "Weno Island, Chuuk Int. Airp. (Micronesia, Federated States of)", "times": ["0:00:00", "0:12:00"]}, - {"station": "91348", "rs_types": ["82"], "lat": 6.95, "lon": 158.2, "alt": 2, "station_name": "Pohnpei Island, Pohnpei Int. Airp. (Micronesia, Federated States of)", "times": ["0:00:00", "0:12:00"]}, - {"station": "91366", "rs_types": ["07", "90"], "lat": 8.7333, "lon": 167.7333, "alt": 3, "station_name": "Kwajalein, Bucholz AAF, Kwajalein KMR ATOL Airport (Marshall Islands)", "times": ["0:00:00"]}, - {"station": "91376", "rs_types": ["82"], "lat": 7.0683, "lon": 171.2942, "alt": 2, "station_name": "Majuro Atoll, Marshall Islands Int. Airp. (Marshall Islands)", "times": ["0:12:00", "0:00:00"]}, - {"station": "91408", "rs_types": ["11"], "lat": 7.3687, "lon": 134.5412, "alt": 54, "station_name": "Babelthuap Island, Babelthuap/Koror Airport (Palau)", "times": ["0:00:00", "0:12:00"]}, - {"station": "91413", "rs_types": ["82"], "lat": 9.4833, "lon": 138.0667, "alt": 28, "station_name": "Yap Island, Yap Int. Airp. (Micronesia, Federated States of)", "times": ["0:00:00", "0:12:00"]}, - {"station": "91592", "rs_types": ["77"], "lat": -22.27, "lon": 166.45, "alt": 69, "station_name": "Noumea Nlle-Caledonie (New Caledonia)", "times": ["0:12:00", "0:00:00"]}, - {"station": "91610", "rs_types": ["41"], "lat": 1.35, "lon": 172.9167, "alt": 2, "station_name": "Tarawa (Kiribati)", "times": ["0:00:00"]}, - {"station": "91643", "rs_types": ["41"], "lat": -8.5167, "lon": 179.2167, "alt": 1, "station_name": "Funafuti (Tuvalu)", "times": ["0:00:00"]}, - {"station": "91680", "rs_types": ["41"], "lat": -17.75, "lon": 177.45, "alt": 13, "station_name": "Nandi (Fiji)", "times": ["0:00:00"]}, - {"station": "91765", "rs_types": ["82"], "lat": -14.3383, "lon": -170.7192, "alt": 3, "station_name": "Pago Pago / Int. Airport (United States Minor Outlying Islands)", "times": ["0:00:00", "0:12:00"]}, - {"station": "91925", "rs_types": ["77"], "lat": -9.8061, "lon": -139.0356, "alt": 51, "station_name": "Atuona (French Polynesia)", "times": ["0:00:00"]}, - {"station": "91938", "rs_types": ["77"], "lat": -17.55, "lon": -149.62, "alt": 2, "station_name": "Tahiti-Faaa (French Polynesia)", "times": ["0:12:00", "0:00:00"]}, - {"station": "91948", "rs_types": ["77"], "lat": -23.1303, "lon": -134.9653, "alt": 91, "station_name": "Rikitea (French Polynesia)", "times": ["0:00:00"]}, - {"station": "91958", "rs_types": ["77"], "lat": -27.6183, "lon": -144.3347, "alt": 1, "station_name": "Rapa (French Polynesia)", "times": ["0:18:00"]}, - {"station": "93112", "rs_types": [["41", "403.000"]], "lat": -36.7928, "lon": 174.6214, "alt": 30, "station_name": "Whenuapai (New Zealand)", "times": ["0:00:00", "0:12:00"], "burst_altitude": 26000, "descent_rate": 12}, - {"station": "93417", "rs_types": ["41"], "lat": -40.9044, "lon": 174.9839, "alt": 7, "station_name": "Paraparaumu Aerodrome (New Zealand)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 26000, "descent_rate": 12}, - {"station": "93817", "rs_types": ["41"], "lat": -45.0216, "lon": 169.4102, "alt": 370, "station_name": "Lauder (New Zealand)", "times": ["1:00:00"], "burst_altitude": 30000, "descent_rate": 8, "ascent_rate": 4, "notes": "Ozone sonde launched Mondays"}, - {"station": "93844", "rs_types": ["41"], "lat": -46.4108, "lon": 168.3178, "alt": 4, "station_name": "Invercargill Aerodrome (New Zealand)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 32000, "descent_rate": 12}, - {"station": "94120", "rs_types": ["41"], "lat": -12.4239, "lon": 130.8925, "alt": 31, "station_name": "Darwin Airport (Australia)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 27871, "burst_samples": 281, "burst_std": 4048, "descent_rate": 7.3, "descent_samples": 252, "descent_std": 1.6}, - {"station": "94150", "rs_types": ["41"], "lat": -12.2742, "lon": 136.8203, "alt": 52, "station_name": "Gove Airport (Australia)", "times": ["5:00:00"]}, - {"station": "94170", "rs_types": ["42"], "lat": -12.6778, "lon": 141.9208, "alt": 20, "station_name": "Weipa Amo (Australia)", "times": ["3:00:00", "5:00:00", "7:00:00", "1:00:00"]}, - {"station": "94203", "rs_types": ["41"], "lat": -17.9475, "lon": 122.2353, "alt": 17, "station_name": "Broome Airport (Australia)", "times": ["0:00:00"]}, - {"station": "94299", "rs_types": ["41"], "lat": -16.2833, "lon": 149.965, "alt": 6, "station_name": "Willis Island (Australia)", "times": ["0:12:00", "0:00:00"]}, - {"station": "94302", "rs_types": ["42"], "lat": -22.2406, "lon": 114.0967, "alt": 5, "station_name": "Learmonth Airport (Australia)", "times": ["0:12:00", "0:00:00"]}, - {"station": "94312", "rs_types": ["42"], "lat": -20.3725, "lon": 118.6317, "alt": 9, "station_name": "Port Hedland Pardoo (Australia)", "times": ["7:00:00", "1:00:00"]}, - {"station": "94326", "rs_types": ["41"], "lat": -23.795, "lon": 133.8889, "alt": 545, "station_name": "Alice Springs Aerodrome (Australia)", "times": ["3:00:00", "5:00:00", "2:00:00"]}, - {"station": "94332", "rs_types": ["42"], "lat": -20.6778, "lon": 139.4875, "alt": 342, "station_name": "Mount Isa Amo (Australia)", "times": ["2:00:00", "3:00:00", "4:00:00", "7:00:00"]}, - {"station": "94374", "rs_types": ["41"], "lat": -23.3753, "lon": 150.4775, "alt": 10, "station_name": "Rockhampton Airport (Australia)", "times": ["3:00:00", "1:00:00", "2:00:00"], "burst_altitude": 27474, "burst_samples": 5, "burst_std": 565}, - {"station": "94403", "rs_types": ["42"], "lat": -28.8044, "lon": 114.6989, "alt": 37, "station_name": "Geraldton Airport (Australia)", "times": ["3:00:00", "4:00:00", "5:00:00", "2:00:00"]}, - {"station": "94430", "rs_types": ["42"], "lat": -26.6136, "lon": 118.5372, "alt": 522, "station_name": "Meekatharra Airport (Australia)", "times": ["3:00:00", "4:00:00", "6:00:00", "2:00:00"]}, - {"station": "94461", "rs_types": ["41"], "lat": -25.0342, "lon": 128.3011, "alt": 580, "station_name": "Giles (Australia)", "times": ["0:12:00", "0:00:00"]}, - {"station": "94510", "rs_types": ["42"], "lat": -26.4139, "lon": 146.2558, "alt": 306, "station_name": "Charleville Airport (Australia)", "times": ["0:00:00"]}, - {"station": "94578", "rs_types": ["41"], "lat": -27.3917, "lon": 153.1292, "alt": 4, "station_name": "Brisbane Airport M. O (Australia)", "times": ["0:18:00", "0:00:00"], "burst_altitude": 26175, "burst_samples": 256, "burst_std": 2828, "descent_rate": 6.4, "descent_samples": 178, "descent_std": 1.1}, - {"station": "94610", "rs_types": ["41"], "lat": -31.9275, "lon": 115.9764, "alt": 20, "station_name": "Belmont Perth Airport (Australia)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 26635, "burst_samples": 289, "burst_std": 4675, "descent_rate": 6.3, "descent_samples": 251, "descent_std": 1.0}, - {"station": "94637", "rs_types": ["42"], "lat": -30.7847, "lon": 121.4533, "alt": 367, "station_name": "Kalgoorlie Boulder Amo (Australia)", "times": ["3:00:00", "4:00:00", "6:00:00", "1:00:00"]}, - {"station": "94638", "rs_types": ["42"], "lat": -33.83, "lon": 121.8925, "alt": 25, "station_name": "Esperance (Australia)", "times": ["3:00:00", "4:00:00", "5:00:00", "2:00:00"]}, - {"station": "94653", "rs_types": ["42"], "lat": -32.1297, "lon": 133.6975, "alt": 23, "station_name": "Ceduna Airport (Australia)", "times": ["1:00:00"]}, - {"station": "94659", "rs_types": ["42"], "lat": -31.1558, "lon": 136.8053, "alt": 165, "station_name": "Woomera Aerodrome (Australia)", "times": ["0:00:00"]}, - {"station": "94672", "rs_types": ["41"], "lat": -34.9525, "lon": 138.5203, "alt": 6, "station_name": "Adelaide Airport (Australia)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 25814, "burst_samples": 297, "burst_std": 3415, "descent_rate": 6.3, "descent_samples": 267, "descent_std": 1.6}, - {"station": "94711", "rs_types": ["42"], "lat": -31.4839, "lon": 145.8294, "alt": 264, "station_name": "Cobar (Australia)", "times": ["3:00:00", "4:00:00", "6:00:00"]}, - {"station": "94750", "rs_types": ["41"], "lat": -34.9469, "lon": 150.5353, "alt": 122, "station_name": "Nowra Ran Air Station (Australia)"}, - {"station": "94767", "rs_types": ["41"], "lat": -33.9464, "lon": 151.1731, "alt": 6, "station_name": "Sydney Airport (Australia)", "times": ["0:21:00"], "burst_altitude": 25238, "burst_samples": 24, "burst_std": 4515}, - {"station": "94776", "rs_types": ["42"], "lat": -32.7933, "lon": 151.8358, "alt": 9, "station_name": "Williamtown Aerodrome (Australia)", "times": ["0:00:00"], "burst_altitude": 26648, "burst_samples": 73, "burst_std": 2960, "descent_rate": 8.5, "descent_samples": 27, "descent_std": 2.3}, - {"station": "94802", "rs_types": ["42"], "lat": -34.9414, "lon": 117.8022, "alt": 71, "station_name": "Albany Airport (Australia)", "times": ["4:00:00", "5:00:00", "6:00:00", "2:00:00"]}, - {"station": "94821", "rs_types": ["42"], "lat": -37.7472, "lon": 140.7739, "alt": 65, "station_name": "Mount Gambier Aerodrome (Australia)", "times": ["4:00:00", "1:00:00"], "burst_altitude": 25510, "burst_samples": 42, "burst_std": 3944, "descent_rate": 9.9, "descent_samples": 36, "descent_std": 3.2}, - {"station": "94866", "rs_types": ["41"], "lat": -37.6656, "lon": 144.8322, "alt": 132, "station_name": "Melbourne Airport (Australia)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 26337, "burst_samples": 287, "burst_std": 2193, "descent_rate": 6.4, "descent_samples": 250, "descent_std": 1.4}, - {"station": "94910", "rs_types": ["42"], "lat": -35.1583, "lon": 147.4572, "alt": 221, "station_name": "Wagga Airport (Australia)", "times": ["3:00:00", "1:00:00"]}, - {"station": "94975", "rs_types": ["41"], "lat": -42.8339, "lon": 147.5033, "alt": 4, "station_name": "Hobart Airport (Australia)", "times": ["0:12:00", "0:00:00"], "burst_altitude": 27177, "burst_samples": 260, "burst_std": 5678, "descent_rate": 8.9, "descent_samples": 220, "descent_std": 2.7}, - {"station": "94995", "rs_types": ["42"], "lat": -31.5422, "lon": 159.0786, "alt": 5, "station_name": "Lord Howe Island (Australia)", "times": ["0:00:00"]}, - {"station": "94996", "rs_types": ["41"], "lat": -29.03, "lon": 167.93, "alt": 113, "station_name": "Norfolk Island Airport (Australia)", "times": ["0:00:00"]}, - {"station": "94998", "rs_types": ["41", "23"], "lat": -54.4994, "lon": 158.937, "alt": 6, "station_name": "Macquarie Island (Australia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "95527", "rs_types": ["42"], "lat": -29.4897, "lon": 149.8472, "alt": 214, "station_name": "Moree Mo (Australia)", "times": ["4:00:00"]}, - {"station": "96413", "rs_types": ["54"], "lat": 1.4833, "lon": 110.3333, "alt": 27, "station_name": "Kuching (Malaysia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "96441", "rs_types": ["54"], "lat": 3.2, "lon": 113.0333, "alt": 2, "station_name": "Bintulu (Malaysia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "96471", "rs_types": ["54"], "lat": 5.9333, "lon": 116.05, "alt": 3, "station_name": "Kota Kinabalu (Malaysia)", "times": ["0:00:00", "2:12:00", "3:12:00", "4:12:00", "7:12:00", "1:12:00"]}, - {"station": "96481", "rs_types": ["54"], "lat": 4.2667, "lon": 117.8833, "alt": 18, "station_name": "Tawau (Malaysia)", "times": ["0:00:00", "0:12:00"]}, - {"station": "96581", "rs_types": ["35"], "lat": -0.15, "lon": 109.4, "alt": 3, "station_name": "Pontianak / Supadio (Indonesia)"}, - {"station": "96749", "rs_types": ["35"], "lat": -6.1167, "lon": 106.65, "alt": 8, "station_name": "Jakarta / Soekarno-Hatta (Indonesia)"}, - {"station": "96996", "rs_types": ["42"], "lat": -12.1892, "lon": 96.8344, "alt": 3, "station_name": "Cocos Island Airport (Christmas Island)", "times": ["0:00:00"]}, - {"station": "97014", "rs_types": ["35"], "lat": 1.5333, "lon": 124.9167, "alt": 80, "station_name": "Menado / Dr. Sam Ratulangi (Indonesia)", "times": ["0:00:00"]}, - {"station": "97072", "rs_types": ["35"], "lat": -0.6833, "lon": 119.7333, "alt": 6, "station_name": "Palu / Mutiara (Indonesia)", "times": ["0:00:00"]}, - {"station": "97180", "rs_types": ["35"], "lat": -5.0667, "lon": 119.55, "alt": 14, "station_name": "Ujung Pandang / Hasanuddin (Indonesia)", "times": ["0:00:00"]}, - {"station": "97372", "rs_types": ["35"], "lat": -10.1667, "lon": 123.6667, "alt": 108, "station_name": "Kupang / El Tari (Indonesia)", "times": ["0:00:00"]}, - {"station": "97502", "rs_types": ["77"], "lat": -0.8939, "lon": 131.2858, "alt": 3, "station_name": "Sorong / Jefman (Indonesia)", "times": ["0:00:00"]}, - {"station": "97560", "rs_types": ["35"], "lat": -1.1833, "lon": 136.1167, "alt": 11, "station_name": "Biak / Mokmer (Indonesia)", "times": ["0:00:00"]}, - {"station": "97724", "rs_types": ["35"], "lat": -3.7, "lon": 128.0833, "alt": 12, "station_name": "Ambon / Pattimura (Indonesia)", "times": ["0:00:00"]}, - {"station": "97900", "rs_types": ["35"], "lat": -7.9833, "lon": 131.3, "alt": 24, "station_name": "Saumlaki (Indonesia)", "times": ["0:00:00"]}, - {"station": "97980", "rs_types": ["35"], "lat": -8.4667, "lon": 140.3833, "alt": 3, "station_name": "Merauke / Mopah (Indonesia)", "times": ["0:00:00"]}, - {"station": "98223", "rs_types": ["11", "18"], "lat": 18.1828, "lon": 120.5342, "alt": 4, "station_name": "Laoag (Philippines)", "times": ["0:00:00", "0:12:00"]}, - {"station": "98233", "rs_types": ["11"], "lat": 17.6375, "lon": 121.7525, "alt": 61, "station_name": "Tuguegarao (Philippines)", "times": ["0:12:00", "3:00:00", "4:00:00", "2:00:00", "6:00:00"]}, - {"station": "98328", "rs_types": ["11"], "lat": 16.4039, "lon": 120.6014, "alt": 1500, "station_name": "Baguio (Philippines)", "times": ["0:00:00", "0:12:00"]}, - {"station": "98433", "rs_types": ["11"], "lat": 14.5814, "lon": 121.3692, "alt": 614, "station_name": "Tanay (Philippines)", "times": ["0:12:00", "0:00:00"]}, - {"station": "98444", "rs_types": ["41"], "lat": 13.1506, "lon": 123.7283, "alt": 16, "station_name": "Legaspi (Philippines)", "times": ["0:12:00", "0:00:00"]}, - {"station": "98558", "rs_types": ["11"], "lat": 11.03, "lon": 126.73, "alt": 56, "station_name": "Guiuan (Philippines)"}, - {"station": "98618", "rs_types": ["11"], "lat": 9.7403, "lon": 118.7586, "alt": 14, "station_name": "Puerto Princesa (Philippines)", "times": ["0:00:00", "0:12:00"]}, - {"station": "98646", "rs_types": ["41"], "lat": 10.3222, "lon": 123.98, "alt": 23, "station_name": "Mactan (Philippines)", "times": ["0:00:00", "0:12:00"]}, - {"station": "98753", "rs_types": ["11"], "lat": 7.1278, "lon": 125.6547, "alt": 17, "station_name": "Davao Airport (Philippines)", "times": ["0:00:00", "0:12:00"]} -]