mostlyright 1.4.0 → 1.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-7XWX6QZG.mjs → chunk-L7OZMKOJ.mjs} +564 -203
- package/dist/chunk-L7OZMKOJ.mjs.map +1 -0
- package/dist/{chunk-TT6J2BKH.mjs → chunk-OTJGBPL4.mjs} +2 -2
- package/dist/{iem-asos-OLJNQPEM.mjs → iem-asos-BPSHDERE.mjs} +3 -3
- package/dist/index.bundle.mjs +1254 -541
- package/dist/index.bundle.mjs.map +1 -1
- package/dist/index.global.js +1817 -743
- package/dist/index.global.js.map +1 -1
- package/dist/{src-JXVFCGSQ.mjs → src-ENFDREPA.mjs} +2 -2
- package/package.json +4 -4
- package/dist/chunk-7XWX6QZG.mjs.map +0 -1
- /package/dist/{chunk-TT6J2BKH.mjs.map → chunk-OTJGBPL4.mjs.map} +0 -0
- /package/dist/{iem-asos-OLJNQPEM.mjs.map → iem-asos-BPSHDERE.mjs.map} +0 -0
- /package/dist/{src-JXVFCGSQ.mjs.map → src-ENFDREPA.mjs.map} +0 -0
package/dist/index.bundle.mjs
CHANGED
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
buildIemUrl,
|
|
5
5
|
downloadIemAsos,
|
|
6
6
|
yearlyChunksExclusiveEnd
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-OTJGBPL4.mjs";
|
|
8
8
|
import {
|
|
9
9
|
CLIMATE_REPORT_TYPE_PRIORITY,
|
|
10
10
|
DataAvailabilityError,
|
|
@@ -22,7 +22,7 @@ import {
|
|
|
22
22
|
helloCore,
|
|
23
23
|
settlementDateFor,
|
|
24
24
|
src_exports
|
|
25
|
-
} from "./chunk-
|
|
25
|
+
} from "./chunk-L7OZMKOJ.mjs";
|
|
26
26
|
import {
|
|
27
27
|
awcToObservation,
|
|
28
28
|
celsiusToFahrenheit,
|
|
@@ -775,9 +775,9 @@ function previousDayIso(iso) {
|
|
|
775
775
|
}
|
|
776
776
|
async function fetchIemLatest(station) {
|
|
777
777
|
const [{ fetchWithRetry: fetchWithRetry2 }, { STATION_CODE_RE: STATION_CODE_RE3 }, { buildIemUrl: buildIemUrl2 }, { parseIemCsv: parseIemCsv2 }] = await Promise.all([
|
|
778
|
-
import("./src-
|
|
778
|
+
import("./src-ENFDREPA.mjs"),
|
|
779
779
|
import("./bounds-KSTXL77E.mjs"),
|
|
780
|
-
import("./iem-asos-
|
|
780
|
+
import("./iem-asos-BPSHDERE.mjs"),
|
|
781
781
|
import("./iem-IO2HIL5V.mjs")
|
|
782
782
|
]);
|
|
783
783
|
const icao = normalizeStation(station);
|
|
@@ -1311,13 +1311,16 @@ async function openMeteoForecasts(station, fromDate, toDate, opts = {}) {
|
|
|
1311
1311
|
const params = new URLSearchParams();
|
|
1312
1312
|
params.set("latitude", String(lat));
|
|
1313
1313
|
params.set("longitude", String(lon));
|
|
1314
|
-
params.set("start_date", fromDate);
|
|
1315
|
-
params.set("end_date", toDate);
|
|
1316
1314
|
params.set("hourly", buildHourlyParam(endpoint));
|
|
1317
1315
|
params.set("models", model);
|
|
1318
1316
|
params.set("timezone", "UTC");
|
|
1319
|
-
if (endpoint === OPEN_METEO_SINGLE_RUNS_URL
|
|
1320
|
-
|
|
1317
|
+
if (endpoint === OPEN_METEO_SINGLE_RUNS_URL) {
|
|
1318
|
+
if (opts.issuedAt) {
|
|
1319
|
+
params.set("run", opts.issuedAt);
|
|
1320
|
+
}
|
|
1321
|
+
} else {
|
|
1322
|
+
params.set("start_date", fromDate);
|
|
1323
|
+
params.set("end_date", toDate);
|
|
1321
1324
|
}
|
|
1322
1325
|
const fetchFn = opts.fetchFn ?? fetch;
|
|
1323
1326
|
const url = `${endpoint}?${params.toString()}`;
|
|
@@ -1394,11 +1397,32 @@ async function openMeteoForecasts(station, fromDate, toDate, opts = {}) {
|
|
|
1394
1397
|
retrievedAt
|
|
1395
1398
|
});
|
|
1396
1399
|
}
|
|
1400
|
+
if (source === "open_meteo.single_run" && rows.length > 0) {
|
|
1401
|
+
const loMs = Date.parse(`${fromDate}T00:00:00Z`);
|
|
1402
|
+
const hiMs = Date.parse(`${toDate}T00:00:00Z`) + 864e5;
|
|
1403
|
+
return rows.filter((r) => {
|
|
1404
|
+
const v = Date.parse(r.validAt);
|
|
1405
|
+
return v >= loMs && v < hiMs;
|
|
1406
|
+
});
|
|
1407
|
+
}
|
|
1397
1408
|
return rows;
|
|
1398
1409
|
}
|
|
1399
1410
|
|
|
1400
1411
|
// ../core/dist/discovery/index.mjs
|
|
1401
1412
|
var STATIONS2 = [
|
|
1413
|
+
{
|
|
1414
|
+
code: "CYYZ",
|
|
1415
|
+
country: "CA",
|
|
1416
|
+
ghcnh_id: null,
|
|
1417
|
+
icao: "CYYZ",
|
|
1418
|
+
latitude: 43.6777,
|
|
1419
|
+
longitude: -79.6248,
|
|
1420
|
+
name: "Toronto Pearson International",
|
|
1421
|
+
tz: "America/Toronto",
|
|
1422
|
+
venues: [
|
|
1423
|
+
"polymarket"
|
|
1424
|
+
]
|
|
1425
|
+
},
|
|
1402
1426
|
{
|
|
1403
1427
|
code: "EDDB",
|
|
1404
1428
|
country: "DE",
|
|
@@ -1408,9 +1432,7 @@ var STATIONS2 = [
|
|
|
1408
1432
|
longitude: 13.5033,
|
|
1409
1433
|
name: "Berlin Brandenburg",
|
|
1410
1434
|
tz: "Europe/Berlin",
|
|
1411
|
-
venues: [
|
|
1412
|
-
"polymarket"
|
|
1413
|
-
]
|
|
1435
|
+
venues: []
|
|
1414
1436
|
},
|
|
1415
1437
|
{
|
|
1416
1438
|
code: "EDDF",
|
|
@@ -1421,9 +1443,7 @@ var STATIONS2 = [
|
|
|
1421
1443
|
longitude: 8.5622,
|
|
1422
1444
|
name: "Frankfurt am Main",
|
|
1423
1445
|
tz: "Europe/Berlin",
|
|
1424
|
-
venues: [
|
|
1425
|
-
"polymarket"
|
|
1426
|
-
]
|
|
1446
|
+
venues: []
|
|
1427
1447
|
},
|
|
1428
1448
|
{
|
|
1429
1449
|
code: "EDDM",
|
|
@@ -1460,6 +1480,17 @@ var STATIONS2 = [
|
|
|
1460
1480
|
longitude: -0.1903,
|
|
1461
1481
|
name: "London Gatwick",
|
|
1462
1482
|
tz: "Europe/London",
|
|
1483
|
+
venues: []
|
|
1484
|
+
},
|
|
1485
|
+
{
|
|
1486
|
+
code: "EGLC",
|
|
1487
|
+
country: "GB",
|
|
1488
|
+
ghcnh_id: null,
|
|
1489
|
+
icao: "EGLC",
|
|
1490
|
+
latitude: 51.5053,
|
|
1491
|
+
longitude: 0.0553,
|
|
1492
|
+
name: "London City",
|
|
1493
|
+
tz: "Europe/London",
|
|
1463
1494
|
venues: [
|
|
1464
1495
|
"polymarket"
|
|
1465
1496
|
]
|
|
@@ -1473,9 +1504,7 @@ var STATIONS2 = [
|
|
|
1473
1504
|
longitude: -0.4619,
|
|
1474
1505
|
name: "London Heathrow",
|
|
1475
1506
|
tz: "Europe/London",
|
|
1476
|
-
venues: [
|
|
1477
|
-
"polymarket"
|
|
1478
|
-
]
|
|
1507
|
+
venues: []
|
|
1479
1508
|
},
|
|
1480
1509
|
{
|
|
1481
1510
|
code: "EHAM",
|
|
@@ -1499,9 +1528,7 @@ var STATIONS2 = [
|
|
|
1499
1528
|
longitude: 12.6561,
|
|
1500
1529
|
name: "Copenhagen Kastrup",
|
|
1501
1530
|
tz: "Europe/Copenhagen",
|
|
1502
|
-
venues: [
|
|
1503
|
-
"polymarket"
|
|
1504
|
-
]
|
|
1531
|
+
venues: []
|
|
1505
1532
|
},
|
|
1506
1533
|
{
|
|
1507
1534
|
code: "EPWA",
|
|
@@ -1525,6 +1552,17 @@ var STATIONS2 = [
|
|
|
1525
1552
|
longitude: 17.9186,
|
|
1526
1553
|
name: "Stockholm Arlanda",
|
|
1527
1554
|
tz: "Europe/Stockholm",
|
|
1555
|
+
venues: []
|
|
1556
|
+
},
|
|
1557
|
+
{
|
|
1558
|
+
code: "FACT",
|
|
1559
|
+
country: "ZA",
|
|
1560
|
+
ghcnh_id: null,
|
|
1561
|
+
icao: "FACT",
|
|
1562
|
+
latitude: -33.9648,
|
|
1563
|
+
longitude: 18.6017,
|
|
1564
|
+
name: "Cape Town International",
|
|
1565
|
+
tz: "Africa/Johannesburg",
|
|
1528
1566
|
venues: [
|
|
1529
1567
|
"polymarket"
|
|
1530
1568
|
]
|
|
@@ -1557,6 +1595,19 @@ var STATIONS2 = [
|
|
|
1557
1595
|
"polymarket"
|
|
1558
1596
|
]
|
|
1559
1597
|
},
|
|
1598
|
+
{
|
|
1599
|
+
code: "BKF",
|
|
1600
|
+
country: "US",
|
|
1601
|
+
ghcnh_id: "USW00093067",
|
|
1602
|
+
icao: "KBKF",
|
|
1603
|
+
latitude: 39.7019,
|
|
1604
|
+
longitude: -104.7517,
|
|
1605
|
+
name: "Buckley Space Force Base (Denver)",
|
|
1606
|
+
tz: "America/Denver",
|
|
1607
|
+
venues: [
|
|
1608
|
+
"polymarket"
|
|
1609
|
+
]
|
|
1610
|
+
},
|
|
1560
1611
|
{
|
|
1561
1612
|
code: "BNA",
|
|
1562
1613
|
country: "US",
|
|
@@ -1580,8 +1631,7 @@ var STATIONS2 = [
|
|
|
1580
1631
|
name: "Boston Logan International",
|
|
1581
1632
|
tz: "America/New_York",
|
|
1582
1633
|
venues: [
|
|
1583
|
-
"kalshi"
|
|
1584
|
-
"polymarket"
|
|
1634
|
+
"kalshi"
|
|
1585
1635
|
]
|
|
1586
1636
|
},
|
|
1587
1637
|
{
|
|
@@ -1597,6 +1647,19 @@ var STATIONS2 = [
|
|
|
1597
1647
|
"kalshi"
|
|
1598
1648
|
]
|
|
1599
1649
|
},
|
|
1650
|
+
{
|
|
1651
|
+
code: "DAL",
|
|
1652
|
+
country: "US",
|
|
1653
|
+
ghcnh_id: "USW00013960",
|
|
1654
|
+
icao: "KDAL",
|
|
1655
|
+
latitude: 32.8481,
|
|
1656
|
+
longitude: -96.8512,
|
|
1657
|
+
name: "Dallas Love Field",
|
|
1658
|
+
tz: "America/Chicago",
|
|
1659
|
+
venues: [
|
|
1660
|
+
"polymarket"
|
|
1661
|
+
]
|
|
1662
|
+
},
|
|
1600
1663
|
{
|
|
1601
1664
|
code: "DCA",
|
|
1602
1665
|
country: "US",
|
|
@@ -1607,8 +1670,7 @@ var STATIONS2 = [
|
|
|
1607
1670
|
name: "Washington Reagan National",
|
|
1608
1671
|
tz: "America/New_York",
|
|
1609
1672
|
venues: [
|
|
1610
|
-
"kalshi"
|
|
1611
|
-
"polymarket"
|
|
1673
|
+
"kalshi"
|
|
1612
1674
|
]
|
|
1613
1675
|
},
|
|
1614
1676
|
{
|
|
@@ -1621,8 +1683,7 @@ var STATIONS2 = [
|
|
|
1621
1683
|
name: "Denver International",
|
|
1622
1684
|
tz: "America/Denver",
|
|
1623
1685
|
venues: [
|
|
1624
|
-
"kalshi"
|
|
1625
|
-
"polymarket"
|
|
1686
|
+
"kalshi"
|
|
1626
1687
|
]
|
|
1627
1688
|
},
|
|
1628
1689
|
{
|
|
@@ -1635,8 +1696,7 @@ var STATIONS2 = [
|
|
|
1635
1696
|
name: "Dallas-Fort Worth International",
|
|
1636
1697
|
tz: "America/Chicago",
|
|
1637
1698
|
venues: [
|
|
1638
|
-
"kalshi"
|
|
1639
|
-
"polymarket"
|
|
1699
|
+
"kalshi"
|
|
1640
1700
|
]
|
|
1641
1701
|
},
|
|
1642
1702
|
{
|
|
@@ -1649,8 +1709,7 @@ var STATIONS2 = [
|
|
|
1649
1709
|
name: "Detroit Metropolitan Wayne County",
|
|
1650
1710
|
tz: "America/New_York",
|
|
1651
1711
|
venues: [
|
|
1652
|
-
"kalshi"
|
|
1653
|
-
"polymarket"
|
|
1712
|
+
"kalshi"
|
|
1654
1713
|
]
|
|
1655
1714
|
},
|
|
1656
1715
|
{
|
|
@@ -1662,7 +1721,9 @@ var STATIONS2 = [
|
|
|
1662
1721
|
longitude: -95.2789,
|
|
1663
1722
|
name: "Houston Hobby",
|
|
1664
1723
|
tz: "America/Chicago",
|
|
1665
|
-
venues: [
|
|
1724
|
+
venues: [
|
|
1725
|
+
"polymarket"
|
|
1726
|
+
]
|
|
1666
1727
|
},
|
|
1667
1728
|
{
|
|
1668
1729
|
code: "IAH",
|
|
@@ -1674,8 +1735,7 @@ var STATIONS2 = [
|
|
|
1674
1735
|
name: "Houston George Bush Intercontinental",
|
|
1675
1736
|
tz: "America/Chicago",
|
|
1676
1737
|
venues: [
|
|
1677
|
-
"kalshi"
|
|
1678
|
-
"polymarket"
|
|
1738
|
+
"kalshi"
|
|
1679
1739
|
]
|
|
1680
1740
|
},
|
|
1681
1741
|
{
|
|
@@ -1705,6 +1765,19 @@ var STATIONS2 = [
|
|
|
1705
1765
|
"polymarket"
|
|
1706
1766
|
]
|
|
1707
1767
|
},
|
|
1768
|
+
{
|
|
1769
|
+
code: "LGA",
|
|
1770
|
+
country: "US",
|
|
1771
|
+
ghcnh_id: "USW00014732",
|
|
1772
|
+
icao: "KLGA",
|
|
1773
|
+
latitude: 40.7772,
|
|
1774
|
+
longitude: -73.8726,
|
|
1775
|
+
name: "New York LaGuardia",
|
|
1776
|
+
tz: "America/New_York",
|
|
1777
|
+
venues: [
|
|
1778
|
+
"polymarket"
|
|
1779
|
+
]
|
|
1780
|
+
},
|
|
1708
1781
|
{
|
|
1709
1782
|
code: "MDW",
|
|
1710
1783
|
country: "US",
|
|
@@ -1742,8 +1815,7 @@ var STATIONS2 = [
|
|
|
1742
1815
|
name: "Minneapolis-St Paul International",
|
|
1743
1816
|
tz: "America/Chicago",
|
|
1744
1817
|
venues: [
|
|
1745
|
-
"kalshi"
|
|
1746
|
-
"polymarket"
|
|
1818
|
+
"kalshi"
|
|
1747
1819
|
]
|
|
1748
1820
|
},
|
|
1749
1821
|
{
|
|
@@ -1781,6 +1853,19 @@ var STATIONS2 = [
|
|
|
1781
1853
|
tz: "America/Chicago",
|
|
1782
1854
|
venues: []
|
|
1783
1855
|
},
|
|
1856
|
+
{
|
|
1857
|
+
code: "ORD",
|
|
1858
|
+
country: "US",
|
|
1859
|
+
ghcnh_id: "USW00094846",
|
|
1860
|
+
icao: "KORD",
|
|
1861
|
+
latitude: 41.9742,
|
|
1862
|
+
longitude: -87.9073,
|
|
1863
|
+
name: "Chicago O'Hare International",
|
|
1864
|
+
tz: "America/Chicago",
|
|
1865
|
+
venues: [
|
|
1866
|
+
"polymarket"
|
|
1867
|
+
]
|
|
1868
|
+
},
|
|
1784
1869
|
{
|
|
1785
1870
|
code: "PHL",
|
|
1786
1871
|
country: "US",
|
|
@@ -1791,8 +1876,7 @@ var STATIONS2 = [
|
|
|
1791
1876
|
name: "Philadelphia International",
|
|
1792
1877
|
tz: "America/New_York",
|
|
1793
1878
|
venues: [
|
|
1794
|
-
"kalshi"
|
|
1795
|
-
"polymarket"
|
|
1879
|
+
"kalshi"
|
|
1796
1880
|
]
|
|
1797
1881
|
},
|
|
1798
1882
|
{
|
|
@@ -1805,8 +1889,7 @@ var STATIONS2 = [
|
|
|
1805
1889
|
name: "Phoenix Sky Harbor International",
|
|
1806
1890
|
tz: "America/Phoenix",
|
|
1807
1891
|
venues: [
|
|
1808
|
-
"kalshi"
|
|
1809
|
-
"polymarket"
|
|
1892
|
+
"kalshi"
|
|
1810
1893
|
]
|
|
1811
1894
|
},
|
|
1812
1895
|
{
|
|
@@ -1870,9 +1953,7 @@ var STATIONS2 = [
|
|
|
1870
1953
|
longitude: 2.0833,
|
|
1871
1954
|
name: "Barcelona El Prat",
|
|
1872
1955
|
tz: "Europe/Madrid",
|
|
1873
|
-
venues: [
|
|
1874
|
-
"polymarket"
|
|
1875
|
-
]
|
|
1956
|
+
venues: []
|
|
1876
1957
|
},
|
|
1877
1958
|
{
|
|
1878
1959
|
code: "LEMD",
|
|
@@ -1909,9 +1990,7 @@ var STATIONS2 = [
|
|
|
1909
1990
|
longitude: 2.5479,
|
|
1910
1991
|
name: "Paris Charles de Gaulle",
|
|
1911
1992
|
tz: "Europe/Paris",
|
|
1912
|
-
venues: [
|
|
1913
|
-
"polymarket"
|
|
1914
|
-
]
|
|
1993
|
+
venues: []
|
|
1915
1994
|
},
|
|
1916
1995
|
{
|
|
1917
1996
|
code: "LFPO",
|
|
@@ -1922,9 +2001,7 @@ var STATIONS2 = [
|
|
|
1922
2001
|
longitude: 2.3794,
|
|
1923
2002
|
name: "Paris Orly",
|
|
1924
2003
|
tz: "Europe/Paris",
|
|
1925
|
-
venues: [
|
|
1926
|
-
"polymarket"
|
|
1927
|
-
]
|
|
2004
|
+
venues: []
|
|
1928
2005
|
},
|
|
1929
2006
|
{
|
|
1930
2007
|
code: "LIMC",
|
|
@@ -1948,6 +2025,17 @@ var STATIONS2 = [
|
|
|
1948
2025
|
longitude: 12.2389,
|
|
1949
2026
|
name: "Rome Fiumicino",
|
|
1950
2027
|
tz: "Europe/Rome",
|
|
2028
|
+
venues: []
|
|
2029
|
+
},
|
|
2030
|
+
{
|
|
2031
|
+
code: "LLBG",
|
|
2032
|
+
country: "IL",
|
|
2033
|
+
ghcnh_id: null,
|
|
2034
|
+
icao: "LLBG",
|
|
2035
|
+
latitude: 32.0114,
|
|
2036
|
+
longitude: 34.8867,
|
|
2037
|
+
name: "Tel Aviv Ben Gurion",
|
|
2038
|
+
tz: "Asia/Jerusalem",
|
|
1951
2039
|
venues: [
|
|
1952
2040
|
"polymarket"
|
|
1953
2041
|
]
|
|
@@ -1961,9 +2049,7 @@ var STATIONS2 = [
|
|
|
1961
2049
|
longitude: 16.5697,
|
|
1962
2050
|
name: "Vienna International",
|
|
1963
2051
|
tz: "Europe/Vienna",
|
|
1964
|
-
venues: [
|
|
1965
|
-
"polymarket"
|
|
1966
|
-
]
|
|
2052
|
+
venues: []
|
|
1967
2053
|
},
|
|
1968
2054
|
{
|
|
1969
2055
|
code: "LSZH",
|
|
@@ -1974,6 +2060,56 @@ var STATIONS2 = [
|
|
|
1974
2060
|
longitude: 8.5492,
|
|
1975
2061
|
name: "Zurich",
|
|
1976
2062
|
tz: "Europe/Zurich",
|
|
2063
|
+
venues: []
|
|
2064
|
+
},
|
|
2065
|
+
{
|
|
2066
|
+
code: "LTAC",
|
|
2067
|
+
country: "TR",
|
|
2068
|
+
ghcnh_id: null,
|
|
2069
|
+
icao: "LTAC",
|
|
2070
|
+
latitude: 40.1281,
|
|
2071
|
+
longitude: 32.9951,
|
|
2072
|
+
name: "Ankara Esenboga",
|
|
2073
|
+
tz: "Europe/Istanbul",
|
|
2074
|
+
venues: [
|
|
2075
|
+
"polymarket"
|
|
2076
|
+
]
|
|
2077
|
+
},
|
|
2078
|
+
{
|
|
2079
|
+
code: "LTFM",
|
|
2080
|
+
country: "TR",
|
|
2081
|
+
ghcnh_id: null,
|
|
2082
|
+
icao: "LTFM",
|
|
2083
|
+
latitude: 41.2753,
|
|
2084
|
+
longitude: 28.7519,
|
|
2085
|
+
name: "Istanbul Airport",
|
|
2086
|
+
tz: "Europe/Istanbul",
|
|
2087
|
+
venues: [
|
|
2088
|
+
"polymarket"
|
|
2089
|
+
]
|
|
2090
|
+
},
|
|
2091
|
+
{
|
|
2092
|
+
code: "MMMX",
|
|
2093
|
+
country: "MX",
|
|
2094
|
+
ghcnh_id: null,
|
|
2095
|
+
icao: "MMMX",
|
|
2096
|
+
latitude: 19.4363,
|
|
2097
|
+
longitude: -99.0721,
|
|
2098
|
+
name: "Mexico City Benito Juarez International",
|
|
2099
|
+
tz: "America/Mexico_City",
|
|
2100
|
+
venues: [
|
|
2101
|
+
"polymarket"
|
|
2102
|
+
]
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
code: "MPMG",
|
|
2106
|
+
country: "PA",
|
|
2107
|
+
ghcnh_id: null,
|
|
2108
|
+
icao: "MPMG",
|
|
2109
|
+
latitude: 8.9733,
|
|
2110
|
+
longitude: -79.5556,
|
|
2111
|
+
name: "Panama City Marcos A. Gelabert (Albrook)",
|
|
2112
|
+
tz: "America/Panama",
|
|
1977
2113
|
venues: [
|
|
1978
2114
|
"polymarket"
|
|
1979
2115
|
]
|
|
@@ -1987,9 +2123,7 @@ var STATIONS2 = [
|
|
|
1987
2123
|
longitude: 174.7917,
|
|
1988
2124
|
name: "Auckland",
|
|
1989
2125
|
tz: "Pacific/Auckland",
|
|
1990
|
-
venues: [
|
|
1991
|
-
"polymarket"
|
|
1992
|
-
]
|
|
2126
|
+
venues: []
|
|
1993
2127
|
},
|
|
1994
2128
|
{
|
|
1995
2129
|
code: "NZWN",
|
|
@@ -2004,6 +2138,19 @@ var STATIONS2 = [
|
|
|
2004
2138
|
"polymarket"
|
|
2005
2139
|
]
|
|
2006
2140
|
},
|
|
2141
|
+
{
|
|
2142
|
+
code: "OEJN",
|
|
2143
|
+
country: "SA",
|
|
2144
|
+
ghcnh_id: null,
|
|
2145
|
+
icao: "OEJN",
|
|
2146
|
+
latitude: 21.6796,
|
|
2147
|
+
longitude: 39.1565,
|
|
2148
|
+
name: "Jeddah King Abdulaziz International",
|
|
2149
|
+
tz: "Asia/Riyadh",
|
|
2150
|
+
venues: [
|
|
2151
|
+
"polymarket"
|
|
2152
|
+
]
|
|
2153
|
+
},
|
|
2007
2154
|
{
|
|
2008
2155
|
code: "OERK",
|
|
2009
2156
|
country: "SA",
|
|
@@ -2013,9 +2160,7 @@ var STATIONS2 = [
|
|
|
2013
2160
|
longitude: 46.6988,
|
|
2014
2161
|
name: "Riyadh King Khalid International",
|
|
2015
2162
|
tz: "Asia/Riyadh",
|
|
2016
|
-
venues: [
|
|
2017
|
-
"polymarket"
|
|
2018
|
-
]
|
|
2163
|
+
venues: []
|
|
2019
2164
|
},
|
|
2020
2165
|
{
|
|
2021
2166
|
code: "OMDB",
|
|
@@ -2026,6 +2171,17 @@ var STATIONS2 = [
|
|
|
2026
2171
|
longitude: 55.3657,
|
|
2027
2172
|
name: "Dubai International",
|
|
2028
2173
|
tz: "Asia/Dubai",
|
|
2174
|
+
venues: []
|
|
2175
|
+
},
|
|
2176
|
+
{
|
|
2177
|
+
code: "OPKC",
|
|
2178
|
+
country: "PK",
|
|
2179
|
+
ghcnh_id: null,
|
|
2180
|
+
icao: "OPKC",
|
|
2181
|
+
latitude: 24.9065,
|
|
2182
|
+
longitude: 67.1608,
|
|
2183
|
+
name: "Karachi Jinnah International",
|
|
2184
|
+
tz: "Asia/Karachi",
|
|
2029
2185
|
venues: [
|
|
2030
2186
|
"polymarket"
|
|
2031
2187
|
]
|
|
@@ -2039,6 +2195,17 @@ var STATIONS2 = [
|
|
|
2039
2195
|
longitude: 51.608,
|
|
2040
2196
|
name: "Doha Hamad International",
|
|
2041
2197
|
tz: "Asia/Qatar",
|
|
2198
|
+
venues: []
|
|
2199
|
+
},
|
|
2200
|
+
{
|
|
2201
|
+
code: "RCSS",
|
|
2202
|
+
country: "TW",
|
|
2203
|
+
ghcnh_id: null,
|
|
2204
|
+
icao: "RCSS",
|
|
2205
|
+
latitude: 25.0694,
|
|
2206
|
+
longitude: 121.5519,
|
|
2207
|
+
name: "Taipei Songshan",
|
|
2208
|
+
tz: "Asia/Taipei",
|
|
2042
2209
|
venues: [
|
|
2043
2210
|
"polymarket"
|
|
2044
2211
|
]
|
|
@@ -2052,9 +2219,7 @@ var STATIONS2 = [
|
|
|
2052
2219
|
longitude: 121.2328,
|
|
2053
2220
|
name: "Taipei Taoyuan",
|
|
2054
2221
|
tz: "Asia/Taipei",
|
|
2055
|
-
venues: [
|
|
2056
|
-
"polymarket"
|
|
2057
|
-
]
|
|
2222
|
+
venues: []
|
|
2058
2223
|
},
|
|
2059
2224
|
{
|
|
2060
2225
|
code: "RJAA",
|
|
@@ -2065,9 +2230,7 @@ var STATIONS2 = [
|
|
|
2065
2230
|
longitude: 140.3864,
|
|
2066
2231
|
name: "Tokyo Narita",
|
|
2067
2232
|
tz: "Asia/Tokyo",
|
|
2068
|
-
venues: [
|
|
2069
|
-
"polymarket"
|
|
2070
|
-
]
|
|
2233
|
+
venues: []
|
|
2071
2234
|
},
|
|
2072
2235
|
{
|
|
2073
2236
|
code: "RJTT",
|
|
@@ -2082,6 +2245,19 @@ var STATIONS2 = [
|
|
|
2082
2245
|
"polymarket"
|
|
2083
2246
|
]
|
|
2084
2247
|
},
|
|
2248
|
+
{
|
|
2249
|
+
code: "RKPK",
|
|
2250
|
+
country: "KR",
|
|
2251
|
+
ghcnh_id: null,
|
|
2252
|
+
icao: "RKPK",
|
|
2253
|
+
latitude: 35.1795,
|
|
2254
|
+
longitude: 128.9382,
|
|
2255
|
+
name: "Busan Gimhae International",
|
|
2256
|
+
tz: "Asia/Seoul",
|
|
2257
|
+
venues: [
|
|
2258
|
+
"polymarket"
|
|
2259
|
+
]
|
|
2260
|
+
},
|
|
2085
2261
|
{
|
|
2086
2262
|
code: "RKSI",
|
|
2087
2263
|
country: "KR",
|
|
@@ -2095,6 +2271,19 @@ var STATIONS2 = [
|
|
|
2095
2271
|
"polymarket"
|
|
2096
2272
|
]
|
|
2097
2273
|
},
|
|
2274
|
+
{
|
|
2275
|
+
code: "RPLL",
|
|
2276
|
+
country: "PH",
|
|
2277
|
+
ghcnh_id: null,
|
|
2278
|
+
icao: "RPLL",
|
|
2279
|
+
latitude: 14.5086,
|
|
2280
|
+
longitude: 121.0197,
|
|
2281
|
+
name: "Manila Ninoy Aquino International",
|
|
2282
|
+
tz: "Asia/Manila",
|
|
2283
|
+
venues: [
|
|
2284
|
+
"polymarket"
|
|
2285
|
+
]
|
|
2286
|
+
},
|
|
2098
2287
|
{
|
|
2099
2288
|
code: "SAEZ",
|
|
2100
2289
|
country: "AR",
|
|
@@ -2130,6 +2319,17 @@ var STATIONS2 = [
|
|
|
2130
2319
|
longitude: 37.4147,
|
|
2131
2320
|
name: "Moscow Sheremetyevo",
|
|
2132
2321
|
tz: "Europe/Moscow",
|
|
2322
|
+
venues: []
|
|
2323
|
+
},
|
|
2324
|
+
{
|
|
2325
|
+
code: "UUWW",
|
|
2326
|
+
country: "RU",
|
|
2327
|
+
ghcnh_id: null,
|
|
2328
|
+
icao: "UUWW",
|
|
2329
|
+
latitude: 55.5915,
|
|
2330
|
+
longitude: 37.2615,
|
|
2331
|
+
name: "Moscow Vnukovo",
|
|
2332
|
+
tz: "Europe/Moscow",
|
|
2133
2333
|
venues: [
|
|
2134
2334
|
"polymarket"
|
|
2135
2335
|
]
|
|
@@ -2143,9 +2343,7 @@ var STATIONS2 = [
|
|
|
2143
2343
|
longitude: 72.8679,
|
|
2144
2344
|
name: "Mumbai Chhatrapati Shivaji",
|
|
2145
2345
|
tz: "Asia/Kolkata",
|
|
2146
|
-
venues: [
|
|
2147
|
-
"polymarket"
|
|
2148
|
-
]
|
|
2346
|
+
venues: []
|
|
2149
2347
|
},
|
|
2150
2348
|
{
|
|
2151
2349
|
code: "VHHH",
|
|
@@ -2156,9 +2354,7 @@ var STATIONS2 = [
|
|
|
2156
2354
|
longitude: 113.9185,
|
|
2157
2355
|
name: "Hong Kong International",
|
|
2158
2356
|
tz: "Asia/Hong_Kong",
|
|
2159
|
-
venues: [
|
|
2160
|
-
"polymarket"
|
|
2161
|
-
]
|
|
2357
|
+
venues: []
|
|
2162
2358
|
},
|
|
2163
2359
|
{
|
|
2164
2360
|
code: "VIDP",
|
|
@@ -2169,6 +2365,17 @@ var STATIONS2 = [
|
|
|
2169
2365
|
longitude: 77.1,
|
|
2170
2366
|
name: "Delhi Indira Gandhi",
|
|
2171
2367
|
tz: "Asia/Kolkata",
|
|
2368
|
+
venues: []
|
|
2369
|
+
},
|
|
2370
|
+
{
|
|
2371
|
+
code: "VILK",
|
|
2372
|
+
country: "IN",
|
|
2373
|
+
ghcnh_id: null,
|
|
2374
|
+
icao: "VILK",
|
|
2375
|
+
latitude: 26.7606,
|
|
2376
|
+
longitude: 80.8893,
|
|
2377
|
+
name: "Lucknow Chaudhary Charan Singh International",
|
|
2378
|
+
tz: "Asia/Kolkata",
|
|
2172
2379
|
venues: [
|
|
2173
2380
|
"polymarket"
|
|
2174
2381
|
]
|
|
@@ -2182,6 +2389,17 @@ var STATIONS2 = [
|
|
|
2182
2389
|
longitude: 100.7501,
|
|
2183
2390
|
name: "Bangkok Suvarnabhumi",
|
|
2184
2391
|
tz: "Asia/Bangkok",
|
|
2392
|
+
venues: []
|
|
2393
|
+
},
|
|
2394
|
+
{
|
|
2395
|
+
code: "WMKK",
|
|
2396
|
+
country: "MY",
|
|
2397
|
+
ghcnh_id: null,
|
|
2398
|
+
icao: "WMKK",
|
|
2399
|
+
latitude: 2.7456,
|
|
2400
|
+
longitude: 101.7099,
|
|
2401
|
+
name: "Kuala Lumpur International",
|
|
2402
|
+
tz: "Asia/Kuala_Lumpur",
|
|
2185
2403
|
venues: [
|
|
2186
2404
|
"polymarket"
|
|
2187
2405
|
]
|
|
@@ -2208,9 +2426,7 @@ var STATIONS2 = [
|
|
|
2208
2426
|
longitude: 153.1175,
|
|
2209
2427
|
name: "Brisbane",
|
|
2210
2428
|
tz: "Australia/Brisbane",
|
|
2211
|
-
venues: [
|
|
2212
|
-
"polymarket"
|
|
2213
|
-
]
|
|
2429
|
+
venues: []
|
|
2214
2430
|
},
|
|
2215
2431
|
{
|
|
2216
2432
|
code: "YMML",
|
|
@@ -2221,9 +2437,7 @@ var STATIONS2 = [
|
|
|
2221
2437
|
longitude: 144.8433,
|
|
2222
2438
|
name: "Melbourne Tullamarine",
|
|
2223
2439
|
tz: "Australia/Melbourne",
|
|
2224
|
-
venues: [
|
|
2225
|
-
"polymarket"
|
|
2226
|
-
]
|
|
2440
|
+
venues: []
|
|
2227
2441
|
},
|
|
2228
2442
|
{
|
|
2229
2443
|
code: "YSSY",
|
|
@@ -2234,9 +2448,7 @@ var STATIONS2 = [
|
|
|
2234
2448
|
longitude: 151.1772,
|
|
2235
2449
|
name: "Sydney Kingsford Smith",
|
|
2236
2450
|
tz: "Australia/Sydney",
|
|
2237
|
-
venues: [
|
|
2238
|
-
"polymarket"
|
|
2239
|
-
]
|
|
2451
|
+
venues: []
|
|
2240
2452
|
},
|
|
2241
2453
|
{
|
|
2242
2454
|
code: "ZBAA",
|
|
@@ -2252,179 +2464,339 @@ var STATIONS2 = [
|
|
|
2252
2464
|
]
|
|
2253
2465
|
},
|
|
2254
2466
|
{
|
|
2255
|
-
code: "
|
|
2467
|
+
code: "ZGGG",
|
|
2256
2468
|
country: "CN",
|
|
2257
2469
|
ghcnh_id: null,
|
|
2258
|
-
icao: "
|
|
2259
|
-
latitude:
|
|
2260
|
-
longitude:
|
|
2261
|
-
name: "
|
|
2470
|
+
icao: "ZGGG",
|
|
2471
|
+
latitude: 23.3924,
|
|
2472
|
+
longitude: 113.2988,
|
|
2473
|
+
name: "Guangzhou Baiyun International",
|
|
2262
2474
|
tz: "Asia/Shanghai",
|
|
2263
2475
|
venues: [
|
|
2264
2476
|
"polymarket"
|
|
2265
2477
|
]
|
|
2266
|
-
}
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
["
|
|
2374
|
-
["
|
|
2375
|
-
["
|
|
2376
|
-
["
|
|
2377
|
-
["
|
|
2378
|
-
["
|
|
2379
|
-
["
|
|
2380
|
-
["
|
|
2381
|
-
["
|
|
2382
|
-
["
|
|
2383
|
-
["
|
|
2384
|
-
["
|
|
2385
|
-
["
|
|
2386
|
-
["
|
|
2387
|
-
["
|
|
2388
|
-
["
|
|
2389
|
-
["
|
|
2390
|
-
["
|
|
2391
|
-
["
|
|
2392
|
-
["
|
|
2393
|
-
["
|
|
2394
|
-
["
|
|
2395
|
-
["
|
|
2396
|
-
["
|
|
2397
|
-
["
|
|
2398
|
-
["
|
|
2399
|
-
["
|
|
2400
|
-
["
|
|
2401
|
-
["
|
|
2402
|
-
["
|
|
2403
|
-
]
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2478
|
+
},
|
|
2479
|
+
{
|
|
2480
|
+
code: "ZGSZ",
|
|
2481
|
+
country: "CN",
|
|
2482
|
+
ghcnh_id: null,
|
|
2483
|
+
icao: "ZGSZ",
|
|
2484
|
+
latitude: 22.6393,
|
|
2485
|
+
longitude: 113.8108,
|
|
2486
|
+
name: "Shenzhen Bao'an International",
|
|
2487
|
+
tz: "Asia/Shanghai",
|
|
2488
|
+
venues: [
|
|
2489
|
+
"polymarket"
|
|
2490
|
+
]
|
|
2491
|
+
},
|
|
2492
|
+
{
|
|
2493
|
+
code: "ZHCC",
|
|
2494
|
+
country: "CN",
|
|
2495
|
+
ghcnh_id: null,
|
|
2496
|
+
icao: "ZHCC",
|
|
2497
|
+
latitude: 34.5197,
|
|
2498
|
+
longitude: 113.8408,
|
|
2499
|
+
name: "Zhengzhou Xinzheng International",
|
|
2500
|
+
tz: "Asia/Shanghai",
|
|
2501
|
+
venues: [
|
|
2502
|
+
"polymarket"
|
|
2503
|
+
]
|
|
2504
|
+
},
|
|
2505
|
+
{
|
|
2506
|
+
code: "ZHHH",
|
|
2507
|
+
country: "CN",
|
|
2508
|
+
ghcnh_id: null,
|
|
2509
|
+
icao: "ZHHH",
|
|
2510
|
+
latitude: 30.7838,
|
|
2511
|
+
longitude: 114.2081,
|
|
2512
|
+
name: "Wuhan Tianhe International",
|
|
2513
|
+
tz: "Asia/Shanghai",
|
|
2514
|
+
venues: [
|
|
2515
|
+
"polymarket"
|
|
2516
|
+
]
|
|
2517
|
+
},
|
|
2518
|
+
{
|
|
2519
|
+
code: "ZSJN",
|
|
2520
|
+
country: "CN",
|
|
2521
|
+
ghcnh_id: null,
|
|
2522
|
+
icao: "ZSJN",
|
|
2523
|
+
latitude: 36.8572,
|
|
2524
|
+
longitude: 117.2161,
|
|
2525
|
+
name: "Jinan Yaoqiang International",
|
|
2526
|
+
tz: "Asia/Shanghai",
|
|
2527
|
+
venues: [
|
|
2528
|
+
"polymarket"
|
|
2529
|
+
]
|
|
2530
|
+
},
|
|
2531
|
+
{
|
|
2532
|
+
code: "ZSPD",
|
|
2533
|
+
country: "CN",
|
|
2534
|
+
ghcnh_id: null,
|
|
2535
|
+
icao: "ZSPD",
|
|
2536
|
+
latitude: 31.1443,
|
|
2537
|
+
longitude: 121.8083,
|
|
2538
|
+
name: "Shanghai Pudong",
|
|
2539
|
+
tz: "Asia/Shanghai",
|
|
2540
|
+
venues: [
|
|
2541
|
+
"polymarket"
|
|
2542
|
+
]
|
|
2543
|
+
},
|
|
2544
|
+
{
|
|
2545
|
+
code: "ZSQD",
|
|
2546
|
+
country: "CN",
|
|
2547
|
+
ghcnh_id: null,
|
|
2548
|
+
icao: "ZSQD",
|
|
2549
|
+
latitude: 36.3614,
|
|
2550
|
+
longitude: 120.0867,
|
|
2551
|
+
name: "Qingdao Jiaodong International",
|
|
2552
|
+
tz: "Asia/Shanghai",
|
|
2553
|
+
venues: [
|
|
2554
|
+
"polymarket"
|
|
2555
|
+
]
|
|
2556
|
+
},
|
|
2557
|
+
{
|
|
2558
|
+
code: "ZUCK",
|
|
2559
|
+
country: "CN",
|
|
2560
|
+
ghcnh_id: null,
|
|
2561
|
+
icao: "ZUCK",
|
|
2562
|
+
latitude: 29.7192,
|
|
2563
|
+
longitude: 106.6417,
|
|
2564
|
+
name: "Chongqing Jiangbei International",
|
|
2565
|
+
tz: "Asia/Shanghai",
|
|
2566
|
+
venues: [
|
|
2567
|
+
"polymarket"
|
|
2568
|
+
]
|
|
2569
|
+
},
|
|
2570
|
+
{
|
|
2571
|
+
code: "ZUUU",
|
|
2572
|
+
country: "CN",
|
|
2573
|
+
ghcnh_id: null,
|
|
2574
|
+
icao: "ZUUU",
|
|
2575
|
+
latitude: 30.5785,
|
|
2576
|
+
longitude: 103.9471,
|
|
2577
|
+
name: "Chengdu Shuangliu International",
|
|
2578
|
+
tz: "Asia/Shanghai",
|
|
2579
|
+
venues: [
|
|
2580
|
+
"polymarket"
|
|
2581
|
+
]
|
|
2582
|
+
}
|
|
2583
|
+
];
|
|
2584
|
+
var STATION_BY_CODE2 = /* @__PURE__ */ new Map([
|
|
2585
|
+
["ATL", STATIONS2[13]],
|
|
2586
|
+
["AUS", STATIONS2[14]],
|
|
2587
|
+
["BKF", STATIONS2[15]],
|
|
2588
|
+
["BNA", STATIONS2[16]],
|
|
2589
|
+
["BOS", STATIONS2[17]],
|
|
2590
|
+
["CVG", STATIONS2[18]],
|
|
2591
|
+
["CYYZ", STATIONS2[0]],
|
|
2592
|
+
["DAL", STATIONS2[19]],
|
|
2593
|
+
["DCA", STATIONS2[20]],
|
|
2594
|
+
["DEN", STATIONS2[21]],
|
|
2595
|
+
["DFW", STATIONS2[22]],
|
|
2596
|
+
["DTW", STATIONS2[23]],
|
|
2597
|
+
["EDDB", STATIONS2[1]],
|
|
2598
|
+
["EDDF", STATIONS2[2]],
|
|
2599
|
+
["EDDM", STATIONS2[3]],
|
|
2600
|
+
["EFHK", STATIONS2[4]],
|
|
2601
|
+
["EGKK", STATIONS2[5]],
|
|
2602
|
+
["EGLC", STATIONS2[6]],
|
|
2603
|
+
["EGLL", STATIONS2[7]],
|
|
2604
|
+
["EHAM", STATIONS2[8]],
|
|
2605
|
+
["EKCH", STATIONS2[9]],
|
|
2606
|
+
["EPWA", STATIONS2[10]],
|
|
2607
|
+
["ESSA", STATIONS2[11]],
|
|
2608
|
+
["FACT", STATIONS2[12]],
|
|
2609
|
+
["HOU", STATIONS2[24]],
|
|
2610
|
+
["IAH", STATIONS2[25]],
|
|
2611
|
+
["LAS", STATIONS2[26]],
|
|
2612
|
+
["LAX", STATIONS2[27]],
|
|
2613
|
+
["LEBL", STATIONS2[42]],
|
|
2614
|
+
["LEMD", STATIONS2[43]],
|
|
2615
|
+
["LFPB", STATIONS2[44]],
|
|
2616
|
+
["LFPG", STATIONS2[45]],
|
|
2617
|
+
["LFPO", STATIONS2[46]],
|
|
2618
|
+
["LGA", STATIONS2[28]],
|
|
2619
|
+
["LIMC", STATIONS2[47]],
|
|
2620
|
+
["LIRF", STATIONS2[48]],
|
|
2621
|
+
["LLBG", STATIONS2[49]],
|
|
2622
|
+
["LOWW", STATIONS2[50]],
|
|
2623
|
+
["LSZH", STATIONS2[51]],
|
|
2624
|
+
["LTAC", STATIONS2[52]],
|
|
2625
|
+
["LTFM", STATIONS2[53]],
|
|
2626
|
+
["MDW", STATIONS2[29]],
|
|
2627
|
+
["MIA", STATIONS2[30]],
|
|
2628
|
+
["MMMX", STATIONS2[54]],
|
|
2629
|
+
["MPMG", STATIONS2[55]],
|
|
2630
|
+
["MSP", STATIONS2[31]],
|
|
2631
|
+
["MSY", STATIONS2[32]],
|
|
2632
|
+
["NYC", STATIONS2[33]],
|
|
2633
|
+
["NZAA", STATIONS2[56]],
|
|
2634
|
+
["NZWN", STATIONS2[57]],
|
|
2635
|
+
["OEJN", STATIONS2[58]],
|
|
2636
|
+
["OERK", STATIONS2[59]],
|
|
2637
|
+
["OKC", STATIONS2[34]],
|
|
2638
|
+
["OMDB", STATIONS2[60]],
|
|
2639
|
+
["OPKC", STATIONS2[61]],
|
|
2640
|
+
["ORD", STATIONS2[35]],
|
|
2641
|
+
["OTHH", STATIONS2[62]],
|
|
2642
|
+
["PHL", STATIONS2[36]],
|
|
2643
|
+
["PHX", STATIONS2[37]],
|
|
2644
|
+
["RCSS", STATIONS2[63]],
|
|
2645
|
+
["RCTP", STATIONS2[64]],
|
|
2646
|
+
["RJAA", STATIONS2[65]],
|
|
2647
|
+
["RJTT", STATIONS2[66]],
|
|
2648
|
+
["RKPK", STATIONS2[67]],
|
|
2649
|
+
["RKSI", STATIONS2[68]],
|
|
2650
|
+
["RPLL", STATIONS2[69]],
|
|
2651
|
+
["SAEZ", STATIONS2[70]],
|
|
2652
|
+
["SAT", STATIONS2[38]],
|
|
2653
|
+
["SBGR", STATIONS2[71]],
|
|
2654
|
+
["SEA", STATIONS2[39]],
|
|
2655
|
+
["SFO", STATIONS2[40]],
|
|
2656
|
+
["SLC", STATIONS2[41]],
|
|
2657
|
+
["UUEE", STATIONS2[72]],
|
|
2658
|
+
["UUWW", STATIONS2[73]],
|
|
2659
|
+
["VABB", STATIONS2[74]],
|
|
2660
|
+
["VHHH", STATIONS2[75]],
|
|
2661
|
+
["VIDP", STATIONS2[76]],
|
|
2662
|
+
["VILK", STATIONS2[77]],
|
|
2663
|
+
["VTBS", STATIONS2[78]],
|
|
2664
|
+
["WMKK", STATIONS2[79]],
|
|
2665
|
+
["WSSS", STATIONS2[80]],
|
|
2666
|
+
["YBBN", STATIONS2[81]],
|
|
2667
|
+
["YMML", STATIONS2[82]],
|
|
2668
|
+
["YSSY", STATIONS2[83]],
|
|
2669
|
+
["ZBAA", STATIONS2[84]],
|
|
2670
|
+
["ZGGG", STATIONS2[85]],
|
|
2671
|
+
["ZGSZ", STATIONS2[86]],
|
|
2672
|
+
["ZHCC", STATIONS2[87]],
|
|
2673
|
+
["ZHHH", STATIONS2[88]],
|
|
2674
|
+
["ZSJN", STATIONS2[89]],
|
|
2675
|
+
["ZSPD", STATIONS2[90]],
|
|
2676
|
+
["ZSQD", STATIONS2[91]],
|
|
2677
|
+
["ZUCK", STATIONS2[92]],
|
|
2678
|
+
["ZUUU", STATIONS2[93]]
|
|
2679
|
+
]);
|
|
2680
|
+
var STATION_BY_ICAO2 = /* @__PURE__ */ new Map([
|
|
2681
|
+
["CYYZ", STATIONS2[0]],
|
|
2682
|
+
["EDDB", STATIONS2[1]],
|
|
2683
|
+
["EDDF", STATIONS2[2]],
|
|
2684
|
+
["EDDM", STATIONS2[3]],
|
|
2685
|
+
["EFHK", STATIONS2[4]],
|
|
2686
|
+
["EGKK", STATIONS2[5]],
|
|
2687
|
+
["EGLC", STATIONS2[6]],
|
|
2688
|
+
["EGLL", STATIONS2[7]],
|
|
2689
|
+
["EHAM", STATIONS2[8]],
|
|
2690
|
+
["EKCH", STATIONS2[9]],
|
|
2691
|
+
["EPWA", STATIONS2[10]],
|
|
2692
|
+
["ESSA", STATIONS2[11]],
|
|
2693
|
+
["FACT", STATIONS2[12]],
|
|
2694
|
+
["KATL", STATIONS2[13]],
|
|
2695
|
+
["KAUS", STATIONS2[14]],
|
|
2696
|
+
["KBKF", STATIONS2[15]],
|
|
2697
|
+
["KBNA", STATIONS2[16]],
|
|
2698
|
+
["KBOS", STATIONS2[17]],
|
|
2699
|
+
["KCVG", STATIONS2[18]],
|
|
2700
|
+
["KDAL", STATIONS2[19]],
|
|
2701
|
+
["KDCA", STATIONS2[20]],
|
|
2702
|
+
["KDEN", STATIONS2[21]],
|
|
2703
|
+
["KDFW", STATIONS2[22]],
|
|
2704
|
+
["KDTW", STATIONS2[23]],
|
|
2705
|
+
["KHOU", STATIONS2[24]],
|
|
2706
|
+
["KIAH", STATIONS2[25]],
|
|
2707
|
+
["KLAS", STATIONS2[26]],
|
|
2708
|
+
["KLAX", STATIONS2[27]],
|
|
2709
|
+
["KLGA", STATIONS2[28]],
|
|
2710
|
+
["KMDW", STATIONS2[29]],
|
|
2711
|
+
["KMIA", STATIONS2[30]],
|
|
2712
|
+
["KMSP", STATIONS2[31]],
|
|
2713
|
+
["KMSY", STATIONS2[32]],
|
|
2714
|
+
["KNYC", STATIONS2[33]],
|
|
2715
|
+
["KOKC", STATIONS2[34]],
|
|
2716
|
+
["KORD", STATIONS2[35]],
|
|
2717
|
+
["KPHL", STATIONS2[36]],
|
|
2718
|
+
["KPHX", STATIONS2[37]],
|
|
2719
|
+
["KSAT", STATIONS2[38]],
|
|
2720
|
+
["KSEA", STATIONS2[39]],
|
|
2721
|
+
["KSFO", STATIONS2[40]],
|
|
2722
|
+
["KSLC", STATIONS2[41]],
|
|
2723
|
+
["LEBL", STATIONS2[42]],
|
|
2724
|
+
["LEMD", STATIONS2[43]],
|
|
2725
|
+
["LFPB", STATIONS2[44]],
|
|
2726
|
+
["LFPG", STATIONS2[45]],
|
|
2727
|
+
["LFPO", STATIONS2[46]],
|
|
2728
|
+
["LIMC", STATIONS2[47]],
|
|
2729
|
+
["LIRF", STATIONS2[48]],
|
|
2730
|
+
["LLBG", STATIONS2[49]],
|
|
2731
|
+
["LOWW", STATIONS2[50]],
|
|
2732
|
+
["LSZH", STATIONS2[51]],
|
|
2733
|
+
["LTAC", STATIONS2[52]],
|
|
2734
|
+
["LTFM", STATIONS2[53]],
|
|
2735
|
+
["MMMX", STATIONS2[54]],
|
|
2736
|
+
["MPMG", STATIONS2[55]],
|
|
2737
|
+
["NZAA", STATIONS2[56]],
|
|
2738
|
+
["NZWN", STATIONS2[57]],
|
|
2739
|
+
["OEJN", STATIONS2[58]],
|
|
2740
|
+
["OERK", STATIONS2[59]],
|
|
2741
|
+
["OMDB", STATIONS2[60]],
|
|
2742
|
+
["OPKC", STATIONS2[61]],
|
|
2743
|
+
["OTHH", STATIONS2[62]],
|
|
2744
|
+
["RCSS", STATIONS2[63]],
|
|
2745
|
+
["RCTP", STATIONS2[64]],
|
|
2746
|
+
["RJAA", STATIONS2[65]],
|
|
2747
|
+
["RJTT", STATIONS2[66]],
|
|
2748
|
+
["RKPK", STATIONS2[67]],
|
|
2749
|
+
["RKSI", STATIONS2[68]],
|
|
2750
|
+
["RPLL", STATIONS2[69]],
|
|
2751
|
+
["SAEZ", STATIONS2[70]],
|
|
2752
|
+
["SBGR", STATIONS2[71]],
|
|
2753
|
+
["UUEE", STATIONS2[72]],
|
|
2754
|
+
["UUWW", STATIONS2[73]],
|
|
2755
|
+
["VABB", STATIONS2[74]],
|
|
2756
|
+
["VHHH", STATIONS2[75]],
|
|
2757
|
+
["VIDP", STATIONS2[76]],
|
|
2758
|
+
["VILK", STATIONS2[77]],
|
|
2759
|
+
["VTBS", STATIONS2[78]],
|
|
2760
|
+
["WMKK", STATIONS2[79]],
|
|
2761
|
+
["WSSS", STATIONS2[80]],
|
|
2762
|
+
["YBBN", STATIONS2[81]],
|
|
2763
|
+
["YMML", STATIONS2[82]],
|
|
2764
|
+
["YSSY", STATIONS2[83]],
|
|
2765
|
+
["ZBAA", STATIONS2[84]],
|
|
2766
|
+
["ZGGG", STATIONS2[85]],
|
|
2767
|
+
["ZGSZ", STATIONS2[86]],
|
|
2768
|
+
["ZHCC", STATIONS2[87]],
|
|
2769
|
+
["ZHHH", STATIONS2[88]],
|
|
2770
|
+
["ZSJN", STATIONS2[89]],
|
|
2771
|
+
["ZSPD", STATIONS2[90]],
|
|
2772
|
+
["ZSQD", STATIONS2[91]],
|
|
2773
|
+
["ZUCK", STATIONS2[92]],
|
|
2774
|
+
["ZUUU", STATIONS2[93]]
|
|
2775
|
+
]);
|
|
2776
|
+
var LOW_COVERAGE_THRESHOLD = 12;
|
|
2777
|
+
var PARTS_CACHE = /* @__PURE__ */ new Map();
|
|
2778
|
+
function getDateFormatter(tz) {
|
|
2779
|
+
let f = PARTS_CACHE.get(tz);
|
|
2780
|
+
if (f === void 0) {
|
|
2781
|
+
f = new Intl.DateTimeFormat("en-US", {
|
|
2782
|
+
timeZone: tz,
|
|
2783
|
+
year: "numeric",
|
|
2784
|
+
month: "2-digit",
|
|
2785
|
+
day: "2-digit"
|
|
2786
|
+
});
|
|
2787
|
+
PARTS_CACHE.set(tz, f);
|
|
2788
|
+
}
|
|
2789
|
+
return f;
|
|
2790
|
+
}
|
|
2791
|
+
function localDateFor(instant, tz) {
|
|
2792
|
+
const parts = getDateFormatter(tz).formatToParts(instant);
|
|
2793
|
+
let y = "";
|
|
2794
|
+
let m = "";
|
|
2795
|
+
let d = "";
|
|
2796
|
+
for (const p of parts) {
|
|
2797
|
+
if (p.type === "year") y = p.value;
|
|
2798
|
+
else if (p.type === "month") m = p.value;
|
|
2799
|
+
else if (p.type === "day") d = p.value;
|
|
2428
2800
|
}
|
|
2429
2801
|
return `${y}-${m}-${d}`;
|
|
2430
2802
|
}
|
|
@@ -3139,92 +3511,92 @@ var POLYMARKET_CITY_STATIONS = {
|
|
|
3139
3511
|
amsterdam: {
|
|
3140
3512
|
default: "EHAM"
|
|
3141
3513
|
},
|
|
3514
|
+
ankara: {
|
|
3515
|
+
default: "LTAC"
|
|
3516
|
+
},
|
|
3142
3517
|
atlanta: {
|
|
3143
3518
|
default: "KATL"
|
|
3144
3519
|
},
|
|
3145
|
-
auckland: {
|
|
3146
|
-
default: "NZAA"
|
|
3147
|
-
},
|
|
3148
3520
|
austin: {
|
|
3149
3521
|
default: "KAUS"
|
|
3150
3522
|
},
|
|
3151
|
-
bangkok: {
|
|
3152
|
-
default: "VTBS"
|
|
3153
|
-
},
|
|
3154
|
-
barcelona: {
|
|
3155
|
-
default: "LEBL"
|
|
3156
|
-
},
|
|
3157
3523
|
beijing: {
|
|
3158
3524
|
default: "ZBAA"
|
|
3159
3525
|
},
|
|
3160
|
-
|
|
3161
|
-
default: "
|
|
3526
|
+
buenos_aires: {
|
|
3527
|
+
default: "SAEZ"
|
|
3162
3528
|
},
|
|
3163
|
-
|
|
3164
|
-
default: "
|
|
3529
|
+
busan: {
|
|
3530
|
+
default: "RKPK"
|
|
3165
3531
|
},
|
|
3166
|
-
|
|
3167
|
-
default: "
|
|
3532
|
+
cape_town: {
|
|
3533
|
+
default: "FACT"
|
|
3168
3534
|
},
|
|
3169
|
-
|
|
3170
|
-
default: "
|
|
3535
|
+
chengdu: {
|
|
3536
|
+
default: "ZUUU"
|
|
3171
3537
|
},
|
|
3172
3538
|
chicago: {
|
|
3173
3539
|
default: "KORD",
|
|
3174
3540
|
high: "KORD",
|
|
3175
3541
|
low: "KORD"
|
|
3176
3542
|
},
|
|
3177
|
-
|
|
3178
|
-
default: "
|
|
3543
|
+
chongqing: {
|
|
3544
|
+
default: "ZUCK"
|
|
3179
3545
|
},
|
|
3180
3546
|
dallas: {
|
|
3181
|
-
default: "
|
|
3182
|
-
},
|
|
3183
|
-
delhi: {
|
|
3184
|
-
default: "VIDP"
|
|
3547
|
+
default: "KDAL"
|
|
3185
3548
|
},
|
|
3186
3549
|
denver: {
|
|
3187
|
-
default: "
|
|
3188
|
-
},
|
|
3189
|
-
detroit: {
|
|
3190
|
-
default: "KDTW"
|
|
3191
|
-
},
|
|
3192
|
-
doha: {
|
|
3193
|
-
default: "OTHH"
|
|
3194
|
-
},
|
|
3195
|
-
dubai: {
|
|
3196
|
-
default: "OMDB"
|
|
3550
|
+
default: "KBKF"
|
|
3197
3551
|
},
|
|
3198
|
-
|
|
3199
|
-
default: "
|
|
3552
|
+
guangzhou: {
|
|
3553
|
+
default: "ZGGG"
|
|
3200
3554
|
},
|
|
3201
3555
|
helsinki: {
|
|
3202
3556
|
default: "EFHK"
|
|
3203
3557
|
},
|
|
3204
3558
|
hong_kong: {
|
|
3205
|
-
default: "
|
|
3206
|
-
high: "
|
|
3207
|
-
low: "
|
|
3559
|
+
default: "HKO",
|
|
3560
|
+
high: "HKO",
|
|
3561
|
+
low: "HKO"
|
|
3208
3562
|
},
|
|
3209
3563
|
houston: {
|
|
3210
|
-
default: "
|
|
3564
|
+
default: "KHOU"
|
|
3211
3565
|
},
|
|
3212
|
-
|
|
3213
|
-
default: "
|
|
3566
|
+
istanbul: {
|
|
3567
|
+
default: "LTFM"
|
|
3568
|
+
},
|
|
3569
|
+
jeddah: {
|
|
3570
|
+
default: "OEJN"
|
|
3571
|
+
},
|
|
3572
|
+
jinan: {
|
|
3573
|
+
default: "ZSJN"
|
|
3214
3574
|
},
|
|
3215
|
-
|
|
3216
|
-
default: "
|
|
3575
|
+
karachi: {
|
|
3576
|
+
default: "OPKC"
|
|
3577
|
+
},
|
|
3578
|
+
kuala_lumpur: {
|
|
3579
|
+
default: "WMKK"
|
|
3580
|
+
},
|
|
3581
|
+
london: {
|
|
3582
|
+
default: "EGLC"
|
|
3217
3583
|
},
|
|
3218
3584
|
los_angeles: {
|
|
3219
3585
|
default: "KLAX",
|
|
3220
3586
|
high: "KLAX",
|
|
3221
3587
|
low: "KLAX"
|
|
3222
3588
|
},
|
|
3589
|
+
lucknow: {
|
|
3590
|
+
default: "VILK"
|
|
3591
|
+
},
|
|
3223
3592
|
madrid: {
|
|
3224
3593
|
default: "LEMD"
|
|
3225
3594
|
},
|
|
3226
|
-
|
|
3227
|
-
default: "
|
|
3595
|
+
manila: {
|
|
3596
|
+
default: "RPLL"
|
|
3597
|
+
},
|
|
3598
|
+
mexico_city: {
|
|
3599
|
+
default: "MMMX"
|
|
3228
3600
|
},
|
|
3229
3601
|
miami: {
|
|
3230
3602
|
default: "KMIA"
|
|
@@ -3232,14 +3604,8 @@ var POLYMARKET_CITY_STATIONS = {
|
|
|
3232
3604
|
milan: {
|
|
3233
3605
|
default: "LIMC"
|
|
3234
3606
|
},
|
|
3235
|
-
minneapolis: {
|
|
3236
|
-
default: "KMSP"
|
|
3237
|
-
},
|
|
3238
3607
|
moscow: {
|
|
3239
|
-
default: "
|
|
3240
|
-
},
|
|
3241
|
-
mumbai: {
|
|
3242
|
-
default: "VABB"
|
|
3608
|
+
default: "UUWW"
|
|
3243
3609
|
},
|
|
3244
3610
|
munich: {
|
|
3245
3611
|
default: "EDDM"
|
|
@@ -3249,25 +3615,14 @@ var POLYMARKET_CITY_STATIONS = {
|
|
|
3249
3615
|
high: "KLGA",
|
|
3250
3616
|
low: "KLGA"
|
|
3251
3617
|
},
|
|
3252
|
-
|
|
3253
|
-
default: "
|
|
3254
|
-
high: "LFPG",
|
|
3255
|
-
low: "LFPB"
|
|
3256
|
-
},
|
|
3257
|
-
paris_orly: {
|
|
3258
|
-
default: "LFPO"
|
|
3259
|
-
},
|
|
3260
|
-
philadelphia: {
|
|
3261
|
-
default: "KPHL"
|
|
3618
|
+
panama_city: {
|
|
3619
|
+
default: "MPMG"
|
|
3262
3620
|
},
|
|
3263
|
-
|
|
3264
|
-
default: "
|
|
3265
|
-
},
|
|
3266
|
-
riyadh: {
|
|
3267
|
-
default: "OERK"
|
|
3621
|
+
paris: {
|
|
3622
|
+
default: "LFPB"
|
|
3268
3623
|
},
|
|
3269
|
-
|
|
3270
|
-
default: "
|
|
3624
|
+
qingdao: {
|
|
3625
|
+
default: "ZSQD"
|
|
3271
3626
|
},
|
|
3272
3627
|
san_francisco: {
|
|
3273
3628
|
default: "KSFO"
|
|
@@ -3284,40 +3639,37 @@ var POLYMARKET_CITY_STATIONS = {
|
|
|
3284
3639
|
shanghai: {
|
|
3285
3640
|
default: "ZSPD"
|
|
3286
3641
|
},
|
|
3642
|
+
shenzhen: {
|
|
3643
|
+
default: "ZGSZ"
|
|
3644
|
+
},
|
|
3287
3645
|
singapore: {
|
|
3288
3646
|
default: "WSSS"
|
|
3289
3647
|
},
|
|
3290
|
-
stockholm: {
|
|
3291
|
-
default: "ESSA"
|
|
3292
|
-
},
|
|
3293
|
-
sydney: {
|
|
3294
|
-
default: "YSSY"
|
|
3295
|
-
},
|
|
3296
3648
|
taipei: {
|
|
3297
|
-
default: "
|
|
3649
|
+
default: "RCSS"
|
|
3650
|
+
},
|
|
3651
|
+
tel_aviv: {
|
|
3652
|
+
default: "LLBG"
|
|
3298
3653
|
},
|
|
3299
3654
|
tokyo: {
|
|
3300
3655
|
default: "RJTT",
|
|
3301
3656
|
high: "RJTT",
|
|
3302
3657
|
low: "RJTT"
|
|
3303
3658
|
},
|
|
3304
|
-
|
|
3305
|
-
default: "
|
|
3306
|
-
},
|
|
3307
|
-
vienna: {
|
|
3308
|
-
default: "LOWW"
|
|
3659
|
+
toronto: {
|
|
3660
|
+
default: "CYYZ"
|
|
3309
3661
|
},
|
|
3310
3662
|
warsaw: {
|
|
3311
3663
|
default: "EPWA"
|
|
3312
3664
|
},
|
|
3313
|
-
washington_dc: {
|
|
3314
|
-
default: "KDCA"
|
|
3315
|
-
},
|
|
3316
3665
|
wellington: {
|
|
3317
3666
|
default: "NZWN"
|
|
3318
3667
|
},
|
|
3319
|
-
|
|
3320
|
-
default: "
|
|
3668
|
+
wuhan: {
|
|
3669
|
+
default: "ZHHH"
|
|
3670
|
+
},
|
|
3671
|
+
zhengzhou: {
|
|
3672
|
+
default: "ZHCC"
|
|
3321
3673
|
}
|
|
3322
3674
|
};
|
|
3323
3675
|
|
|
@@ -3705,7 +4057,7 @@ replaceTraps((oldTraps) => ({
|
|
|
3705
4057
|
}
|
|
3706
4058
|
}));
|
|
3707
4059
|
|
|
3708
|
-
// ../core/dist/internal/chunk-
|
|
4060
|
+
// ../core/dist/internal/chunk-MLNV6B3L.mjs
|
|
3709
4061
|
function lockKeyFor(key) {
|
|
3710
4062
|
return `mostlyright:cache:lock:${key}`;
|
|
3711
4063
|
}
|
|
@@ -3921,6 +4273,19 @@ function versionedCacheStore(inner, version4) {
|
|
|
3921
4273
|
return new VersionedCacheStore(inner, version4);
|
|
3922
4274
|
}
|
|
3923
4275
|
var STATIONS3 = [
|
|
4276
|
+
{
|
|
4277
|
+
code: "CYYZ",
|
|
4278
|
+
country: "CA",
|
|
4279
|
+
ghcnh_id: null,
|
|
4280
|
+
icao: "CYYZ",
|
|
4281
|
+
latitude: 43.6777,
|
|
4282
|
+
longitude: -79.6248,
|
|
4283
|
+
name: "Toronto Pearson International",
|
|
4284
|
+
tz: "America/Toronto",
|
|
4285
|
+
venues: [
|
|
4286
|
+
"polymarket"
|
|
4287
|
+
]
|
|
4288
|
+
},
|
|
3924
4289
|
{
|
|
3925
4290
|
code: "EDDB",
|
|
3926
4291
|
country: "DE",
|
|
@@ -3930,9 +4295,7 @@ var STATIONS3 = [
|
|
|
3930
4295
|
longitude: 13.5033,
|
|
3931
4296
|
name: "Berlin Brandenburg",
|
|
3932
4297
|
tz: "Europe/Berlin",
|
|
3933
|
-
venues: [
|
|
3934
|
-
"polymarket"
|
|
3935
|
-
]
|
|
4298
|
+
venues: []
|
|
3936
4299
|
},
|
|
3937
4300
|
{
|
|
3938
4301
|
code: "EDDF",
|
|
@@ -3943,9 +4306,7 @@ var STATIONS3 = [
|
|
|
3943
4306
|
longitude: 8.5622,
|
|
3944
4307
|
name: "Frankfurt am Main",
|
|
3945
4308
|
tz: "Europe/Berlin",
|
|
3946
|
-
venues: [
|
|
3947
|
-
"polymarket"
|
|
3948
|
-
]
|
|
4309
|
+
venues: []
|
|
3949
4310
|
},
|
|
3950
4311
|
{
|
|
3951
4312
|
code: "EDDM",
|
|
@@ -3982,6 +4343,17 @@ var STATIONS3 = [
|
|
|
3982
4343
|
longitude: -0.1903,
|
|
3983
4344
|
name: "London Gatwick",
|
|
3984
4345
|
tz: "Europe/London",
|
|
4346
|
+
venues: []
|
|
4347
|
+
},
|
|
4348
|
+
{
|
|
4349
|
+
code: "EGLC",
|
|
4350
|
+
country: "GB",
|
|
4351
|
+
ghcnh_id: null,
|
|
4352
|
+
icao: "EGLC",
|
|
4353
|
+
latitude: 51.5053,
|
|
4354
|
+
longitude: 0.0553,
|
|
4355
|
+
name: "London City",
|
|
4356
|
+
tz: "Europe/London",
|
|
3985
4357
|
venues: [
|
|
3986
4358
|
"polymarket"
|
|
3987
4359
|
]
|
|
@@ -3995,9 +4367,7 @@ var STATIONS3 = [
|
|
|
3995
4367
|
longitude: -0.4619,
|
|
3996
4368
|
name: "London Heathrow",
|
|
3997
4369
|
tz: "Europe/London",
|
|
3998
|
-
venues: [
|
|
3999
|
-
"polymarket"
|
|
4000
|
-
]
|
|
4370
|
+
venues: []
|
|
4001
4371
|
},
|
|
4002
4372
|
{
|
|
4003
4373
|
code: "EHAM",
|
|
@@ -4021,9 +4391,7 @@ var STATIONS3 = [
|
|
|
4021
4391
|
longitude: 12.6561,
|
|
4022
4392
|
name: "Copenhagen Kastrup",
|
|
4023
4393
|
tz: "Europe/Copenhagen",
|
|
4024
|
-
venues: [
|
|
4025
|
-
"polymarket"
|
|
4026
|
-
]
|
|
4394
|
+
venues: []
|
|
4027
4395
|
},
|
|
4028
4396
|
{
|
|
4029
4397
|
code: "EPWA",
|
|
@@ -4047,6 +4415,17 @@ var STATIONS3 = [
|
|
|
4047
4415
|
longitude: 17.9186,
|
|
4048
4416
|
name: "Stockholm Arlanda",
|
|
4049
4417
|
tz: "Europe/Stockholm",
|
|
4418
|
+
venues: []
|
|
4419
|
+
},
|
|
4420
|
+
{
|
|
4421
|
+
code: "FACT",
|
|
4422
|
+
country: "ZA",
|
|
4423
|
+
ghcnh_id: null,
|
|
4424
|
+
icao: "FACT",
|
|
4425
|
+
latitude: -33.9648,
|
|
4426
|
+
longitude: 18.6017,
|
|
4427
|
+
name: "Cape Town International",
|
|
4428
|
+
tz: "Africa/Johannesburg",
|
|
4050
4429
|
venues: [
|
|
4051
4430
|
"polymarket"
|
|
4052
4431
|
]
|
|
@@ -4079,6 +4458,19 @@ var STATIONS3 = [
|
|
|
4079
4458
|
"polymarket"
|
|
4080
4459
|
]
|
|
4081
4460
|
},
|
|
4461
|
+
{
|
|
4462
|
+
code: "BKF",
|
|
4463
|
+
country: "US",
|
|
4464
|
+
ghcnh_id: "USW00093067",
|
|
4465
|
+
icao: "KBKF",
|
|
4466
|
+
latitude: 39.7019,
|
|
4467
|
+
longitude: -104.7517,
|
|
4468
|
+
name: "Buckley Space Force Base (Denver)",
|
|
4469
|
+
tz: "America/Denver",
|
|
4470
|
+
venues: [
|
|
4471
|
+
"polymarket"
|
|
4472
|
+
]
|
|
4473
|
+
},
|
|
4082
4474
|
{
|
|
4083
4475
|
code: "BNA",
|
|
4084
4476
|
country: "US",
|
|
@@ -4102,8 +4494,7 @@ var STATIONS3 = [
|
|
|
4102
4494
|
name: "Boston Logan International",
|
|
4103
4495
|
tz: "America/New_York",
|
|
4104
4496
|
venues: [
|
|
4105
|
-
"kalshi"
|
|
4106
|
-
"polymarket"
|
|
4497
|
+
"kalshi"
|
|
4107
4498
|
]
|
|
4108
4499
|
},
|
|
4109
4500
|
{
|
|
@@ -4119,6 +4510,19 @@ var STATIONS3 = [
|
|
|
4119
4510
|
"kalshi"
|
|
4120
4511
|
]
|
|
4121
4512
|
},
|
|
4513
|
+
{
|
|
4514
|
+
code: "DAL",
|
|
4515
|
+
country: "US",
|
|
4516
|
+
ghcnh_id: "USW00013960",
|
|
4517
|
+
icao: "KDAL",
|
|
4518
|
+
latitude: 32.8481,
|
|
4519
|
+
longitude: -96.8512,
|
|
4520
|
+
name: "Dallas Love Field",
|
|
4521
|
+
tz: "America/Chicago",
|
|
4522
|
+
venues: [
|
|
4523
|
+
"polymarket"
|
|
4524
|
+
]
|
|
4525
|
+
},
|
|
4122
4526
|
{
|
|
4123
4527
|
code: "DCA",
|
|
4124
4528
|
country: "US",
|
|
@@ -4129,8 +4533,7 @@ var STATIONS3 = [
|
|
|
4129
4533
|
name: "Washington Reagan National",
|
|
4130
4534
|
tz: "America/New_York",
|
|
4131
4535
|
venues: [
|
|
4132
|
-
"kalshi"
|
|
4133
|
-
"polymarket"
|
|
4536
|
+
"kalshi"
|
|
4134
4537
|
]
|
|
4135
4538
|
},
|
|
4136
4539
|
{
|
|
@@ -4143,8 +4546,7 @@ var STATIONS3 = [
|
|
|
4143
4546
|
name: "Denver International",
|
|
4144
4547
|
tz: "America/Denver",
|
|
4145
4548
|
venues: [
|
|
4146
|
-
"kalshi"
|
|
4147
|
-
"polymarket"
|
|
4549
|
+
"kalshi"
|
|
4148
4550
|
]
|
|
4149
4551
|
},
|
|
4150
4552
|
{
|
|
@@ -4157,8 +4559,7 @@ var STATIONS3 = [
|
|
|
4157
4559
|
name: "Dallas-Fort Worth International",
|
|
4158
4560
|
tz: "America/Chicago",
|
|
4159
4561
|
venues: [
|
|
4160
|
-
"kalshi"
|
|
4161
|
-
"polymarket"
|
|
4562
|
+
"kalshi"
|
|
4162
4563
|
]
|
|
4163
4564
|
},
|
|
4164
4565
|
{
|
|
@@ -4171,8 +4572,7 @@ var STATIONS3 = [
|
|
|
4171
4572
|
name: "Detroit Metropolitan Wayne County",
|
|
4172
4573
|
tz: "America/New_York",
|
|
4173
4574
|
venues: [
|
|
4174
|
-
"kalshi"
|
|
4175
|
-
"polymarket"
|
|
4575
|
+
"kalshi"
|
|
4176
4576
|
]
|
|
4177
4577
|
},
|
|
4178
4578
|
{
|
|
@@ -4184,7 +4584,9 @@ var STATIONS3 = [
|
|
|
4184
4584
|
longitude: -95.2789,
|
|
4185
4585
|
name: "Houston Hobby",
|
|
4186
4586
|
tz: "America/Chicago",
|
|
4187
|
-
venues: [
|
|
4587
|
+
venues: [
|
|
4588
|
+
"polymarket"
|
|
4589
|
+
]
|
|
4188
4590
|
},
|
|
4189
4591
|
{
|
|
4190
4592
|
code: "IAH",
|
|
@@ -4196,8 +4598,7 @@ var STATIONS3 = [
|
|
|
4196
4598
|
name: "Houston George Bush Intercontinental",
|
|
4197
4599
|
tz: "America/Chicago",
|
|
4198
4600
|
venues: [
|
|
4199
|
-
"kalshi"
|
|
4200
|
-
"polymarket"
|
|
4601
|
+
"kalshi"
|
|
4201
4602
|
]
|
|
4202
4603
|
},
|
|
4203
4604
|
{
|
|
@@ -4227,6 +4628,19 @@ var STATIONS3 = [
|
|
|
4227
4628
|
"polymarket"
|
|
4228
4629
|
]
|
|
4229
4630
|
},
|
|
4631
|
+
{
|
|
4632
|
+
code: "LGA",
|
|
4633
|
+
country: "US",
|
|
4634
|
+
ghcnh_id: "USW00014732",
|
|
4635
|
+
icao: "KLGA",
|
|
4636
|
+
latitude: 40.7772,
|
|
4637
|
+
longitude: -73.8726,
|
|
4638
|
+
name: "New York LaGuardia",
|
|
4639
|
+
tz: "America/New_York",
|
|
4640
|
+
venues: [
|
|
4641
|
+
"polymarket"
|
|
4642
|
+
]
|
|
4643
|
+
},
|
|
4230
4644
|
{
|
|
4231
4645
|
code: "MDW",
|
|
4232
4646
|
country: "US",
|
|
@@ -4264,8 +4678,7 @@ var STATIONS3 = [
|
|
|
4264
4678
|
name: "Minneapolis-St Paul International",
|
|
4265
4679
|
tz: "America/Chicago",
|
|
4266
4680
|
venues: [
|
|
4267
|
-
"kalshi"
|
|
4268
|
-
"polymarket"
|
|
4681
|
+
"kalshi"
|
|
4269
4682
|
]
|
|
4270
4683
|
},
|
|
4271
4684
|
{
|
|
@@ -4303,6 +4716,19 @@ var STATIONS3 = [
|
|
|
4303
4716
|
tz: "America/Chicago",
|
|
4304
4717
|
venues: []
|
|
4305
4718
|
},
|
|
4719
|
+
{
|
|
4720
|
+
code: "ORD",
|
|
4721
|
+
country: "US",
|
|
4722
|
+
ghcnh_id: "USW00094846",
|
|
4723
|
+
icao: "KORD",
|
|
4724
|
+
latitude: 41.9742,
|
|
4725
|
+
longitude: -87.9073,
|
|
4726
|
+
name: "Chicago O'Hare International",
|
|
4727
|
+
tz: "America/Chicago",
|
|
4728
|
+
venues: [
|
|
4729
|
+
"polymarket"
|
|
4730
|
+
]
|
|
4731
|
+
},
|
|
4306
4732
|
{
|
|
4307
4733
|
code: "PHL",
|
|
4308
4734
|
country: "US",
|
|
@@ -4313,8 +4739,7 @@ var STATIONS3 = [
|
|
|
4313
4739
|
name: "Philadelphia International",
|
|
4314
4740
|
tz: "America/New_York",
|
|
4315
4741
|
venues: [
|
|
4316
|
-
"kalshi"
|
|
4317
|
-
"polymarket"
|
|
4742
|
+
"kalshi"
|
|
4318
4743
|
]
|
|
4319
4744
|
},
|
|
4320
4745
|
{
|
|
@@ -4327,8 +4752,7 @@ var STATIONS3 = [
|
|
|
4327
4752
|
name: "Phoenix Sky Harbor International",
|
|
4328
4753
|
tz: "America/Phoenix",
|
|
4329
4754
|
venues: [
|
|
4330
|
-
"kalshi"
|
|
4331
|
-
"polymarket"
|
|
4755
|
+
"kalshi"
|
|
4332
4756
|
]
|
|
4333
4757
|
},
|
|
4334
4758
|
{
|
|
@@ -4392,9 +4816,7 @@ var STATIONS3 = [
|
|
|
4392
4816
|
longitude: 2.0833,
|
|
4393
4817
|
name: "Barcelona El Prat",
|
|
4394
4818
|
tz: "Europe/Madrid",
|
|
4395
|
-
venues: [
|
|
4396
|
-
"polymarket"
|
|
4397
|
-
]
|
|
4819
|
+
venues: []
|
|
4398
4820
|
},
|
|
4399
4821
|
{
|
|
4400
4822
|
code: "LEMD",
|
|
@@ -4431,9 +4853,7 @@ var STATIONS3 = [
|
|
|
4431
4853
|
longitude: 2.5479,
|
|
4432
4854
|
name: "Paris Charles de Gaulle",
|
|
4433
4855
|
tz: "Europe/Paris",
|
|
4434
|
-
venues: [
|
|
4435
|
-
"polymarket"
|
|
4436
|
-
]
|
|
4856
|
+
venues: []
|
|
4437
4857
|
},
|
|
4438
4858
|
{
|
|
4439
4859
|
code: "LFPO",
|
|
@@ -4444,9 +4864,7 @@ var STATIONS3 = [
|
|
|
4444
4864
|
longitude: 2.3794,
|
|
4445
4865
|
name: "Paris Orly",
|
|
4446
4866
|
tz: "Europe/Paris",
|
|
4447
|
-
venues: [
|
|
4448
|
-
"polymarket"
|
|
4449
|
-
]
|
|
4867
|
+
venues: []
|
|
4450
4868
|
},
|
|
4451
4869
|
{
|
|
4452
4870
|
code: "LIMC",
|
|
@@ -4470,6 +4888,17 @@ var STATIONS3 = [
|
|
|
4470
4888
|
longitude: 12.2389,
|
|
4471
4889
|
name: "Rome Fiumicino",
|
|
4472
4890
|
tz: "Europe/Rome",
|
|
4891
|
+
venues: []
|
|
4892
|
+
},
|
|
4893
|
+
{
|
|
4894
|
+
code: "LLBG",
|
|
4895
|
+
country: "IL",
|
|
4896
|
+
ghcnh_id: null,
|
|
4897
|
+
icao: "LLBG",
|
|
4898
|
+
latitude: 32.0114,
|
|
4899
|
+
longitude: 34.8867,
|
|
4900
|
+
name: "Tel Aviv Ben Gurion",
|
|
4901
|
+
tz: "Asia/Jerusalem",
|
|
4473
4902
|
venues: [
|
|
4474
4903
|
"polymarket"
|
|
4475
4904
|
]
|
|
@@ -4483,9 +4912,7 @@ var STATIONS3 = [
|
|
|
4483
4912
|
longitude: 16.5697,
|
|
4484
4913
|
name: "Vienna International",
|
|
4485
4914
|
tz: "Europe/Vienna",
|
|
4486
|
-
venues: [
|
|
4487
|
-
"polymarket"
|
|
4488
|
-
]
|
|
4915
|
+
venues: []
|
|
4489
4916
|
},
|
|
4490
4917
|
{
|
|
4491
4918
|
code: "LSZH",
|
|
@@ -4496,6 +4923,56 @@ var STATIONS3 = [
|
|
|
4496
4923
|
longitude: 8.5492,
|
|
4497
4924
|
name: "Zurich",
|
|
4498
4925
|
tz: "Europe/Zurich",
|
|
4926
|
+
venues: []
|
|
4927
|
+
},
|
|
4928
|
+
{
|
|
4929
|
+
code: "LTAC",
|
|
4930
|
+
country: "TR",
|
|
4931
|
+
ghcnh_id: null,
|
|
4932
|
+
icao: "LTAC",
|
|
4933
|
+
latitude: 40.1281,
|
|
4934
|
+
longitude: 32.9951,
|
|
4935
|
+
name: "Ankara Esenboga",
|
|
4936
|
+
tz: "Europe/Istanbul",
|
|
4937
|
+
venues: [
|
|
4938
|
+
"polymarket"
|
|
4939
|
+
]
|
|
4940
|
+
},
|
|
4941
|
+
{
|
|
4942
|
+
code: "LTFM",
|
|
4943
|
+
country: "TR",
|
|
4944
|
+
ghcnh_id: null,
|
|
4945
|
+
icao: "LTFM",
|
|
4946
|
+
latitude: 41.2753,
|
|
4947
|
+
longitude: 28.7519,
|
|
4948
|
+
name: "Istanbul Airport",
|
|
4949
|
+
tz: "Europe/Istanbul",
|
|
4950
|
+
venues: [
|
|
4951
|
+
"polymarket"
|
|
4952
|
+
]
|
|
4953
|
+
},
|
|
4954
|
+
{
|
|
4955
|
+
code: "MMMX",
|
|
4956
|
+
country: "MX",
|
|
4957
|
+
ghcnh_id: null,
|
|
4958
|
+
icao: "MMMX",
|
|
4959
|
+
latitude: 19.4363,
|
|
4960
|
+
longitude: -99.0721,
|
|
4961
|
+
name: "Mexico City Benito Juarez International",
|
|
4962
|
+
tz: "America/Mexico_City",
|
|
4963
|
+
venues: [
|
|
4964
|
+
"polymarket"
|
|
4965
|
+
]
|
|
4966
|
+
},
|
|
4967
|
+
{
|
|
4968
|
+
code: "MPMG",
|
|
4969
|
+
country: "PA",
|
|
4970
|
+
ghcnh_id: null,
|
|
4971
|
+
icao: "MPMG",
|
|
4972
|
+
latitude: 8.9733,
|
|
4973
|
+
longitude: -79.5556,
|
|
4974
|
+
name: "Panama City Marcos A. Gelabert (Albrook)",
|
|
4975
|
+
tz: "America/Panama",
|
|
4499
4976
|
venues: [
|
|
4500
4977
|
"polymarket"
|
|
4501
4978
|
]
|
|
@@ -4509,9 +4986,7 @@ var STATIONS3 = [
|
|
|
4509
4986
|
longitude: 174.7917,
|
|
4510
4987
|
name: "Auckland",
|
|
4511
4988
|
tz: "Pacific/Auckland",
|
|
4512
|
-
venues: [
|
|
4513
|
-
"polymarket"
|
|
4514
|
-
]
|
|
4989
|
+
venues: []
|
|
4515
4990
|
},
|
|
4516
4991
|
{
|
|
4517
4992
|
code: "NZWN",
|
|
@@ -4526,6 +5001,19 @@ var STATIONS3 = [
|
|
|
4526
5001
|
"polymarket"
|
|
4527
5002
|
]
|
|
4528
5003
|
},
|
|
5004
|
+
{
|
|
5005
|
+
code: "OEJN",
|
|
5006
|
+
country: "SA",
|
|
5007
|
+
ghcnh_id: null,
|
|
5008
|
+
icao: "OEJN",
|
|
5009
|
+
latitude: 21.6796,
|
|
5010
|
+
longitude: 39.1565,
|
|
5011
|
+
name: "Jeddah King Abdulaziz International",
|
|
5012
|
+
tz: "Asia/Riyadh",
|
|
5013
|
+
venues: [
|
|
5014
|
+
"polymarket"
|
|
5015
|
+
]
|
|
5016
|
+
},
|
|
4529
5017
|
{
|
|
4530
5018
|
code: "OERK",
|
|
4531
5019
|
country: "SA",
|
|
@@ -4535,9 +5023,7 @@ var STATIONS3 = [
|
|
|
4535
5023
|
longitude: 46.6988,
|
|
4536
5024
|
name: "Riyadh King Khalid International",
|
|
4537
5025
|
tz: "Asia/Riyadh",
|
|
4538
|
-
venues: [
|
|
4539
|
-
"polymarket"
|
|
4540
|
-
]
|
|
5026
|
+
venues: []
|
|
4541
5027
|
},
|
|
4542
5028
|
{
|
|
4543
5029
|
code: "OMDB",
|
|
@@ -4548,6 +5034,17 @@ var STATIONS3 = [
|
|
|
4548
5034
|
longitude: 55.3657,
|
|
4549
5035
|
name: "Dubai International",
|
|
4550
5036
|
tz: "Asia/Dubai",
|
|
5037
|
+
venues: []
|
|
5038
|
+
},
|
|
5039
|
+
{
|
|
5040
|
+
code: "OPKC",
|
|
5041
|
+
country: "PK",
|
|
5042
|
+
ghcnh_id: null,
|
|
5043
|
+
icao: "OPKC",
|
|
5044
|
+
latitude: 24.9065,
|
|
5045
|
+
longitude: 67.1608,
|
|
5046
|
+
name: "Karachi Jinnah International",
|
|
5047
|
+
tz: "Asia/Karachi",
|
|
4551
5048
|
venues: [
|
|
4552
5049
|
"polymarket"
|
|
4553
5050
|
]
|
|
@@ -4561,6 +5058,17 @@ var STATIONS3 = [
|
|
|
4561
5058
|
longitude: 51.608,
|
|
4562
5059
|
name: "Doha Hamad International",
|
|
4563
5060
|
tz: "Asia/Qatar",
|
|
5061
|
+
venues: []
|
|
5062
|
+
},
|
|
5063
|
+
{
|
|
5064
|
+
code: "RCSS",
|
|
5065
|
+
country: "TW",
|
|
5066
|
+
ghcnh_id: null,
|
|
5067
|
+
icao: "RCSS",
|
|
5068
|
+
latitude: 25.0694,
|
|
5069
|
+
longitude: 121.5519,
|
|
5070
|
+
name: "Taipei Songshan",
|
|
5071
|
+
tz: "Asia/Taipei",
|
|
4564
5072
|
venues: [
|
|
4565
5073
|
"polymarket"
|
|
4566
5074
|
]
|
|
@@ -4574,9 +5082,7 @@ var STATIONS3 = [
|
|
|
4574
5082
|
longitude: 121.2328,
|
|
4575
5083
|
name: "Taipei Taoyuan",
|
|
4576
5084
|
tz: "Asia/Taipei",
|
|
4577
|
-
venues: [
|
|
4578
|
-
"polymarket"
|
|
4579
|
-
]
|
|
5085
|
+
venues: []
|
|
4580
5086
|
},
|
|
4581
5087
|
{
|
|
4582
5088
|
code: "RJAA",
|
|
@@ -4587,9 +5093,7 @@ var STATIONS3 = [
|
|
|
4587
5093
|
longitude: 140.3864,
|
|
4588
5094
|
name: "Tokyo Narita",
|
|
4589
5095
|
tz: "Asia/Tokyo",
|
|
4590
|
-
venues: [
|
|
4591
|
-
"polymarket"
|
|
4592
|
-
]
|
|
5096
|
+
venues: []
|
|
4593
5097
|
},
|
|
4594
5098
|
{
|
|
4595
5099
|
code: "RJTT",
|
|
@@ -4604,6 +5108,19 @@ var STATIONS3 = [
|
|
|
4604
5108
|
"polymarket"
|
|
4605
5109
|
]
|
|
4606
5110
|
},
|
|
5111
|
+
{
|
|
5112
|
+
code: "RKPK",
|
|
5113
|
+
country: "KR",
|
|
5114
|
+
ghcnh_id: null,
|
|
5115
|
+
icao: "RKPK",
|
|
5116
|
+
latitude: 35.1795,
|
|
5117
|
+
longitude: 128.9382,
|
|
5118
|
+
name: "Busan Gimhae International",
|
|
5119
|
+
tz: "Asia/Seoul",
|
|
5120
|
+
venues: [
|
|
5121
|
+
"polymarket"
|
|
5122
|
+
]
|
|
5123
|
+
},
|
|
4607
5124
|
{
|
|
4608
5125
|
code: "RKSI",
|
|
4609
5126
|
country: "KR",
|
|
@@ -4617,6 +5134,19 @@ var STATIONS3 = [
|
|
|
4617
5134
|
"polymarket"
|
|
4618
5135
|
]
|
|
4619
5136
|
},
|
|
5137
|
+
{
|
|
5138
|
+
code: "RPLL",
|
|
5139
|
+
country: "PH",
|
|
5140
|
+
ghcnh_id: null,
|
|
5141
|
+
icao: "RPLL",
|
|
5142
|
+
latitude: 14.5086,
|
|
5143
|
+
longitude: 121.0197,
|
|
5144
|
+
name: "Manila Ninoy Aquino International",
|
|
5145
|
+
tz: "Asia/Manila",
|
|
5146
|
+
venues: [
|
|
5147
|
+
"polymarket"
|
|
5148
|
+
]
|
|
5149
|
+
},
|
|
4620
5150
|
{
|
|
4621
5151
|
code: "SAEZ",
|
|
4622
5152
|
country: "AR",
|
|
@@ -4652,6 +5182,17 @@ var STATIONS3 = [
|
|
|
4652
5182
|
longitude: 37.4147,
|
|
4653
5183
|
name: "Moscow Sheremetyevo",
|
|
4654
5184
|
tz: "Europe/Moscow",
|
|
5185
|
+
venues: []
|
|
5186
|
+
},
|
|
5187
|
+
{
|
|
5188
|
+
code: "UUWW",
|
|
5189
|
+
country: "RU",
|
|
5190
|
+
ghcnh_id: null,
|
|
5191
|
+
icao: "UUWW",
|
|
5192
|
+
latitude: 55.5915,
|
|
5193
|
+
longitude: 37.2615,
|
|
5194
|
+
name: "Moscow Vnukovo",
|
|
5195
|
+
tz: "Europe/Moscow",
|
|
4655
5196
|
venues: [
|
|
4656
5197
|
"polymarket"
|
|
4657
5198
|
]
|
|
@@ -4665,9 +5206,7 @@ var STATIONS3 = [
|
|
|
4665
5206
|
longitude: 72.8679,
|
|
4666
5207
|
name: "Mumbai Chhatrapati Shivaji",
|
|
4667
5208
|
tz: "Asia/Kolkata",
|
|
4668
|
-
venues: [
|
|
4669
|
-
"polymarket"
|
|
4670
|
-
]
|
|
5209
|
+
venues: []
|
|
4671
5210
|
},
|
|
4672
5211
|
{
|
|
4673
5212
|
code: "VHHH",
|
|
@@ -4678,9 +5217,7 @@ var STATIONS3 = [
|
|
|
4678
5217
|
longitude: 113.9185,
|
|
4679
5218
|
name: "Hong Kong International",
|
|
4680
5219
|
tz: "Asia/Hong_Kong",
|
|
4681
|
-
venues: [
|
|
4682
|
-
"polymarket"
|
|
4683
|
-
]
|
|
5220
|
+
venues: []
|
|
4684
5221
|
},
|
|
4685
5222
|
{
|
|
4686
5223
|
code: "VIDP",
|
|
@@ -4691,6 +5228,17 @@ var STATIONS3 = [
|
|
|
4691
5228
|
longitude: 77.1,
|
|
4692
5229
|
name: "Delhi Indira Gandhi",
|
|
4693
5230
|
tz: "Asia/Kolkata",
|
|
5231
|
+
venues: []
|
|
5232
|
+
},
|
|
5233
|
+
{
|
|
5234
|
+
code: "VILK",
|
|
5235
|
+
country: "IN",
|
|
5236
|
+
ghcnh_id: null,
|
|
5237
|
+
icao: "VILK",
|
|
5238
|
+
latitude: 26.7606,
|
|
5239
|
+
longitude: 80.8893,
|
|
5240
|
+
name: "Lucknow Chaudhary Charan Singh International",
|
|
5241
|
+
tz: "Asia/Kolkata",
|
|
4694
5242
|
venues: [
|
|
4695
5243
|
"polymarket"
|
|
4696
5244
|
]
|
|
@@ -4704,6 +5252,17 @@ var STATIONS3 = [
|
|
|
4704
5252
|
longitude: 100.7501,
|
|
4705
5253
|
name: "Bangkok Suvarnabhumi",
|
|
4706
5254
|
tz: "Asia/Bangkok",
|
|
5255
|
+
venues: []
|
|
5256
|
+
},
|
|
5257
|
+
{
|
|
5258
|
+
code: "WMKK",
|
|
5259
|
+
country: "MY",
|
|
5260
|
+
ghcnh_id: null,
|
|
5261
|
+
icao: "WMKK",
|
|
5262
|
+
latitude: 2.7456,
|
|
5263
|
+
longitude: 101.7099,
|
|
5264
|
+
name: "Kuala Lumpur International",
|
|
5265
|
+
tz: "Asia/Kuala_Lumpur",
|
|
4707
5266
|
venues: [
|
|
4708
5267
|
"polymarket"
|
|
4709
5268
|
]
|
|
@@ -4730,9 +5289,7 @@ var STATIONS3 = [
|
|
|
4730
5289
|
longitude: 153.1175,
|
|
4731
5290
|
name: "Brisbane",
|
|
4732
5291
|
tz: "Australia/Brisbane",
|
|
4733
|
-
venues: [
|
|
4734
|
-
"polymarket"
|
|
4735
|
-
]
|
|
5292
|
+
venues: []
|
|
4736
5293
|
},
|
|
4737
5294
|
{
|
|
4738
5295
|
code: "YMML",
|
|
@@ -4743,9 +5300,7 @@ var STATIONS3 = [
|
|
|
4743
5300
|
longitude: 144.8433,
|
|
4744
5301
|
name: "Melbourne Tullamarine",
|
|
4745
5302
|
tz: "Australia/Melbourne",
|
|
4746
|
-
venues: [
|
|
4747
|
-
"polymarket"
|
|
4748
|
-
]
|
|
5303
|
+
venues: []
|
|
4749
5304
|
},
|
|
4750
5305
|
{
|
|
4751
5306
|
code: "YSSY",
|
|
@@ -4756,9 +5311,7 @@ var STATIONS3 = [
|
|
|
4756
5311
|
longitude: 151.1772,
|
|
4757
5312
|
name: "Sydney Kingsford Smith",
|
|
4758
5313
|
tz: "Australia/Sydney",
|
|
4759
|
-
venues: [
|
|
4760
|
-
"polymarket"
|
|
4761
|
-
]
|
|
5314
|
+
venues: []
|
|
4762
5315
|
},
|
|
4763
5316
|
{
|
|
4764
5317
|
code: "ZBAA",
|
|
@@ -4773,6 +5326,71 @@ var STATIONS3 = [
|
|
|
4773
5326
|
"polymarket"
|
|
4774
5327
|
]
|
|
4775
5328
|
},
|
|
5329
|
+
{
|
|
5330
|
+
code: "ZGGG",
|
|
5331
|
+
country: "CN",
|
|
5332
|
+
ghcnh_id: null,
|
|
5333
|
+
icao: "ZGGG",
|
|
5334
|
+
latitude: 23.3924,
|
|
5335
|
+
longitude: 113.2988,
|
|
5336
|
+
name: "Guangzhou Baiyun International",
|
|
5337
|
+
tz: "Asia/Shanghai",
|
|
5338
|
+
venues: [
|
|
5339
|
+
"polymarket"
|
|
5340
|
+
]
|
|
5341
|
+
},
|
|
5342
|
+
{
|
|
5343
|
+
code: "ZGSZ",
|
|
5344
|
+
country: "CN",
|
|
5345
|
+
ghcnh_id: null,
|
|
5346
|
+
icao: "ZGSZ",
|
|
5347
|
+
latitude: 22.6393,
|
|
5348
|
+
longitude: 113.8108,
|
|
5349
|
+
name: "Shenzhen Bao'an International",
|
|
5350
|
+
tz: "Asia/Shanghai",
|
|
5351
|
+
venues: [
|
|
5352
|
+
"polymarket"
|
|
5353
|
+
]
|
|
5354
|
+
},
|
|
5355
|
+
{
|
|
5356
|
+
code: "ZHCC",
|
|
5357
|
+
country: "CN",
|
|
5358
|
+
ghcnh_id: null,
|
|
5359
|
+
icao: "ZHCC",
|
|
5360
|
+
latitude: 34.5197,
|
|
5361
|
+
longitude: 113.8408,
|
|
5362
|
+
name: "Zhengzhou Xinzheng International",
|
|
5363
|
+
tz: "Asia/Shanghai",
|
|
5364
|
+
venues: [
|
|
5365
|
+
"polymarket"
|
|
5366
|
+
]
|
|
5367
|
+
},
|
|
5368
|
+
{
|
|
5369
|
+
code: "ZHHH",
|
|
5370
|
+
country: "CN",
|
|
5371
|
+
ghcnh_id: null,
|
|
5372
|
+
icao: "ZHHH",
|
|
5373
|
+
latitude: 30.7838,
|
|
5374
|
+
longitude: 114.2081,
|
|
5375
|
+
name: "Wuhan Tianhe International",
|
|
5376
|
+
tz: "Asia/Shanghai",
|
|
5377
|
+
venues: [
|
|
5378
|
+
"polymarket"
|
|
5379
|
+
]
|
|
5380
|
+
},
|
|
5381
|
+
{
|
|
5382
|
+
code: "ZSJN",
|
|
5383
|
+
country: "CN",
|
|
5384
|
+
ghcnh_id: null,
|
|
5385
|
+
icao: "ZSJN",
|
|
5386
|
+
latitude: 36.8572,
|
|
5387
|
+
longitude: 117.2161,
|
|
5388
|
+
name: "Jinan Yaoqiang International",
|
|
5389
|
+
tz: "Asia/Shanghai",
|
|
5390
|
+
venues: [
|
|
5391
|
+
"polymarket"
|
|
5392
|
+
]
|
|
5393
|
+
},
|
|
4776
5394
|
{
|
|
4777
5395
|
code: "ZSPD",
|
|
4778
5396
|
country: "CN",
|
|
@@ -4785,143 +5403,238 @@ var STATIONS3 = [
|
|
|
4785
5403
|
venues: [
|
|
4786
5404
|
"polymarket"
|
|
4787
5405
|
]
|
|
5406
|
+
},
|
|
5407
|
+
{
|
|
5408
|
+
code: "ZSQD",
|
|
5409
|
+
country: "CN",
|
|
5410
|
+
ghcnh_id: null,
|
|
5411
|
+
icao: "ZSQD",
|
|
5412
|
+
latitude: 36.3614,
|
|
5413
|
+
longitude: 120.0867,
|
|
5414
|
+
name: "Qingdao Jiaodong International",
|
|
5415
|
+
tz: "Asia/Shanghai",
|
|
5416
|
+
venues: [
|
|
5417
|
+
"polymarket"
|
|
5418
|
+
]
|
|
5419
|
+
},
|
|
5420
|
+
{
|
|
5421
|
+
code: "ZUCK",
|
|
5422
|
+
country: "CN",
|
|
5423
|
+
ghcnh_id: null,
|
|
5424
|
+
icao: "ZUCK",
|
|
5425
|
+
latitude: 29.7192,
|
|
5426
|
+
longitude: 106.6417,
|
|
5427
|
+
name: "Chongqing Jiangbei International",
|
|
5428
|
+
tz: "Asia/Shanghai",
|
|
5429
|
+
venues: [
|
|
5430
|
+
"polymarket"
|
|
5431
|
+
]
|
|
5432
|
+
},
|
|
5433
|
+
{
|
|
5434
|
+
code: "ZUUU",
|
|
5435
|
+
country: "CN",
|
|
5436
|
+
ghcnh_id: null,
|
|
5437
|
+
icao: "ZUUU",
|
|
5438
|
+
latitude: 30.5785,
|
|
5439
|
+
longitude: 103.9471,
|
|
5440
|
+
name: "Chengdu Shuangliu International",
|
|
5441
|
+
tz: "Asia/Shanghai",
|
|
5442
|
+
venues: [
|
|
5443
|
+
"polymarket"
|
|
5444
|
+
]
|
|
4788
5445
|
}
|
|
4789
5446
|
];
|
|
4790
5447
|
var STATION_BY_CODE3 = /* @__PURE__ */ new Map([
|
|
4791
|
-
["ATL", STATIONS3[
|
|
4792
|
-
["AUS", STATIONS3[
|
|
4793
|
-
["
|
|
4794
|
-
["
|
|
4795
|
-
["
|
|
4796
|
-
["
|
|
4797
|
-
["
|
|
4798
|
-
["
|
|
4799
|
-
["
|
|
4800
|
-
["
|
|
4801
|
-
["
|
|
4802
|
-
["
|
|
4803
|
-
["
|
|
4804
|
-
["
|
|
4805
|
-
["
|
|
4806
|
-
["
|
|
4807
|
-
["
|
|
4808
|
-
["
|
|
4809
|
-
["
|
|
4810
|
-
["
|
|
4811
|
-
["
|
|
4812
|
-
["
|
|
4813
|
-
["
|
|
4814
|
-
["
|
|
4815
|
-
["
|
|
4816
|
-
["
|
|
4817
|
-
["
|
|
4818
|
-
["
|
|
4819
|
-
["
|
|
4820
|
-
["
|
|
4821
|
-
["
|
|
4822
|
-
["
|
|
4823
|
-
["
|
|
4824
|
-
["
|
|
4825
|
-
["
|
|
4826
|
-
["
|
|
4827
|
-
["
|
|
4828
|
-
["
|
|
4829
|
-
["
|
|
4830
|
-
["
|
|
4831
|
-
["
|
|
4832
|
-
["
|
|
4833
|
-
["
|
|
4834
|
-
["
|
|
4835
|
-
["
|
|
4836
|
-
["
|
|
4837
|
-
["
|
|
4838
|
-
["
|
|
4839
|
-
["
|
|
4840
|
-
["
|
|
4841
|
-
["
|
|
4842
|
-
["
|
|
4843
|
-
["
|
|
4844
|
-
["
|
|
4845
|
-
["
|
|
4846
|
-
["
|
|
4847
|
-
["
|
|
4848
|
-
["
|
|
4849
|
-
["
|
|
4850
|
-
["
|
|
4851
|
-
["
|
|
4852
|
-
["
|
|
4853
|
-
["
|
|
4854
|
-
["
|
|
4855
|
-
["
|
|
4856
|
-
["
|
|
5448
|
+
["ATL", STATIONS3[13]],
|
|
5449
|
+
["AUS", STATIONS3[14]],
|
|
5450
|
+
["BKF", STATIONS3[15]],
|
|
5451
|
+
["BNA", STATIONS3[16]],
|
|
5452
|
+
["BOS", STATIONS3[17]],
|
|
5453
|
+
["CVG", STATIONS3[18]],
|
|
5454
|
+
["CYYZ", STATIONS3[0]],
|
|
5455
|
+
["DAL", STATIONS3[19]],
|
|
5456
|
+
["DCA", STATIONS3[20]],
|
|
5457
|
+
["DEN", STATIONS3[21]],
|
|
5458
|
+
["DFW", STATIONS3[22]],
|
|
5459
|
+
["DTW", STATIONS3[23]],
|
|
5460
|
+
["EDDB", STATIONS3[1]],
|
|
5461
|
+
["EDDF", STATIONS3[2]],
|
|
5462
|
+
["EDDM", STATIONS3[3]],
|
|
5463
|
+
["EFHK", STATIONS3[4]],
|
|
5464
|
+
["EGKK", STATIONS3[5]],
|
|
5465
|
+
["EGLC", STATIONS3[6]],
|
|
5466
|
+
["EGLL", STATIONS3[7]],
|
|
5467
|
+
["EHAM", STATIONS3[8]],
|
|
5468
|
+
["EKCH", STATIONS3[9]],
|
|
5469
|
+
["EPWA", STATIONS3[10]],
|
|
5470
|
+
["ESSA", STATIONS3[11]],
|
|
5471
|
+
["FACT", STATIONS3[12]],
|
|
5472
|
+
["HOU", STATIONS3[24]],
|
|
5473
|
+
["IAH", STATIONS3[25]],
|
|
5474
|
+
["LAS", STATIONS3[26]],
|
|
5475
|
+
["LAX", STATIONS3[27]],
|
|
5476
|
+
["LEBL", STATIONS3[42]],
|
|
5477
|
+
["LEMD", STATIONS3[43]],
|
|
5478
|
+
["LFPB", STATIONS3[44]],
|
|
5479
|
+
["LFPG", STATIONS3[45]],
|
|
5480
|
+
["LFPO", STATIONS3[46]],
|
|
5481
|
+
["LGA", STATIONS3[28]],
|
|
5482
|
+
["LIMC", STATIONS3[47]],
|
|
5483
|
+
["LIRF", STATIONS3[48]],
|
|
5484
|
+
["LLBG", STATIONS3[49]],
|
|
5485
|
+
["LOWW", STATIONS3[50]],
|
|
5486
|
+
["LSZH", STATIONS3[51]],
|
|
5487
|
+
["LTAC", STATIONS3[52]],
|
|
5488
|
+
["LTFM", STATIONS3[53]],
|
|
5489
|
+
["MDW", STATIONS3[29]],
|
|
5490
|
+
["MIA", STATIONS3[30]],
|
|
5491
|
+
["MMMX", STATIONS3[54]],
|
|
5492
|
+
["MPMG", STATIONS3[55]],
|
|
5493
|
+
["MSP", STATIONS3[31]],
|
|
5494
|
+
["MSY", STATIONS3[32]],
|
|
5495
|
+
["NYC", STATIONS3[33]],
|
|
5496
|
+
["NZAA", STATIONS3[56]],
|
|
5497
|
+
["NZWN", STATIONS3[57]],
|
|
5498
|
+
["OEJN", STATIONS3[58]],
|
|
5499
|
+
["OERK", STATIONS3[59]],
|
|
5500
|
+
["OKC", STATIONS3[34]],
|
|
5501
|
+
["OMDB", STATIONS3[60]],
|
|
5502
|
+
["OPKC", STATIONS3[61]],
|
|
5503
|
+
["ORD", STATIONS3[35]],
|
|
5504
|
+
["OTHH", STATIONS3[62]],
|
|
5505
|
+
["PHL", STATIONS3[36]],
|
|
5506
|
+
["PHX", STATIONS3[37]],
|
|
5507
|
+
["RCSS", STATIONS3[63]],
|
|
5508
|
+
["RCTP", STATIONS3[64]],
|
|
5509
|
+
["RJAA", STATIONS3[65]],
|
|
5510
|
+
["RJTT", STATIONS3[66]],
|
|
5511
|
+
["RKPK", STATIONS3[67]],
|
|
5512
|
+
["RKSI", STATIONS3[68]],
|
|
5513
|
+
["RPLL", STATIONS3[69]],
|
|
5514
|
+
["SAEZ", STATIONS3[70]],
|
|
5515
|
+
["SAT", STATIONS3[38]],
|
|
5516
|
+
["SBGR", STATIONS3[71]],
|
|
5517
|
+
["SEA", STATIONS3[39]],
|
|
5518
|
+
["SFO", STATIONS3[40]],
|
|
5519
|
+
["SLC", STATIONS3[41]],
|
|
5520
|
+
["UUEE", STATIONS3[72]],
|
|
5521
|
+
["UUWW", STATIONS3[73]],
|
|
5522
|
+
["VABB", STATIONS3[74]],
|
|
5523
|
+
["VHHH", STATIONS3[75]],
|
|
5524
|
+
["VIDP", STATIONS3[76]],
|
|
5525
|
+
["VILK", STATIONS3[77]],
|
|
5526
|
+
["VTBS", STATIONS3[78]],
|
|
5527
|
+
["WMKK", STATIONS3[79]],
|
|
5528
|
+
["WSSS", STATIONS3[80]],
|
|
5529
|
+
["YBBN", STATIONS3[81]],
|
|
5530
|
+
["YMML", STATIONS3[82]],
|
|
5531
|
+
["YSSY", STATIONS3[83]],
|
|
5532
|
+
["ZBAA", STATIONS3[84]],
|
|
5533
|
+
["ZGGG", STATIONS3[85]],
|
|
5534
|
+
["ZGSZ", STATIONS3[86]],
|
|
5535
|
+
["ZHCC", STATIONS3[87]],
|
|
5536
|
+
["ZHHH", STATIONS3[88]],
|
|
5537
|
+
["ZSJN", STATIONS3[89]],
|
|
5538
|
+
["ZSPD", STATIONS3[90]],
|
|
5539
|
+
["ZSQD", STATIONS3[91]],
|
|
5540
|
+
["ZUCK", STATIONS3[92]],
|
|
5541
|
+
["ZUUU", STATIONS3[93]]
|
|
4857
5542
|
]);
|
|
4858
5543
|
var STATION_BY_ICAO3 = /* @__PURE__ */ new Map([
|
|
4859
|
-
["
|
|
4860
|
-
["
|
|
4861
|
-
["
|
|
4862
|
-
["
|
|
4863
|
-
["
|
|
4864
|
-
["
|
|
4865
|
-
["
|
|
4866
|
-
["
|
|
4867
|
-
["
|
|
4868
|
-
["
|
|
4869
|
-
["
|
|
4870
|
-
["
|
|
4871
|
-
["
|
|
4872
|
-
["
|
|
4873
|
-
["
|
|
4874
|
-
["
|
|
4875
|
-
["
|
|
4876
|
-
["
|
|
4877
|
-
["
|
|
4878
|
-
["
|
|
4879
|
-
["
|
|
4880
|
-
["
|
|
4881
|
-
["
|
|
4882
|
-
["
|
|
4883
|
-
["
|
|
4884
|
-
["
|
|
4885
|
-
["
|
|
4886
|
-
["
|
|
4887
|
-
["
|
|
4888
|
-
["
|
|
4889
|
-
["
|
|
4890
|
-
["
|
|
4891
|
-
["
|
|
4892
|
-
["
|
|
4893
|
-
["
|
|
4894
|
-
["
|
|
4895
|
-
["
|
|
4896
|
-
["
|
|
4897
|
-
["
|
|
4898
|
-
["
|
|
4899
|
-
["
|
|
4900
|
-
["
|
|
4901
|
-
["
|
|
4902
|
-
["
|
|
4903
|
-
["
|
|
4904
|
-
["
|
|
4905
|
-
["
|
|
4906
|
-
["
|
|
4907
|
-
["
|
|
4908
|
-
["
|
|
4909
|
-
["
|
|
4910
|
-
["
|
|
4911
|
-
["
|
|
4912
|
-
["
|
|
4913
|
-
["
|
|
4914
|
-
["
|
|
4915
|
-
["
|
|
4916
|
-
["
|
|
4917
|
-
["
|
|
4918
|
-
["
|
|
4919
|
-
["
|
|
4920
|
-
["
|
|
4921
|
-
["
|
|
4922
|
-
["
|
|
4923
|
-
["
|
|
4924
|
-
["
|
|
5544
|
+
["CYYZ", STATIONS3[0]],
|
|
5545
|
+
["EDDB", STATIONS3[1]],
|
|
5546
|
+
["EDDF", STATIONS3[2]],
|
|
5547
|
+
["EDDM", STATIONS3[3]],
|
|
5548
|
+
["EFHK", STATIONS3[4]],
|
|
5549
|
+
["EGKK", STATIONS3[5]],
|
|
5550
|
+
["EGLC", STATIONS3[6]],
|
|
5551
|
+
["EGLL", STATIONS3[7]],
|
|
5552
|
+
["EHAM", STATIONS3[8]],
|
|
5553
|
+
["EKCH", STATIONS3[9]],
|
|
5554
|
+
["EPWA", STATIONS3[10]],
|
|
5555
|
+
["ESSA", STATIONS3[11]],
|
|
5556
|
+
["FACT", STATIONS3[12]],
|
|
5557
|
+
["KATL", STATIONS3[13]],
|
|
5558
|
+
["KAUS", STATIONS3[14]],
|
|
5559
|
+
["KBKF", STATIONS3[15]],
|
|
5560
|
+
["KBNA", STATIONS3[16]],
|
|
5561
|
+
["KBOS", STATIONS3[17]],
|
|
5562
|
+
["KCVG", STATIONS3[18]],
|
|
5563
|
+
["KDAL", STATIONS3[19]],
|
|
5564
|
+
["KDCA", STATIONS3[20]],
|
|
5565
|
+
["KDEN", STATIONS3[21]],
|
|
5566
|
+
["KDFW", STATIONS3[22]],
|
|
5567
|
+
["KDTW", STATIONS3[23]],
|
|
5568
|
+
["KHOU", STATIONS3[24]],
|
|
5569
|
+
["KIAH", STATIONS3[25]],
|
|
5570
|
+
["KLAS", STATIONS3[26]],
|
|
5571
|
+
["KLAX", STATIONS3[27]],
|
|
5572
|
+
["KLGA", STATIONS3[28]],
|
|
5573
|
+
["KMDW", STATIONS3[29]],
|
|
5574
|
+
["KMIA", STATIONS3[30]],
|
|
5575
|
+
["KMSP", STATIONS3[31]],
|
|
5576
|
+
["KMSY", STATIONS3[32]],
|
|
5577
|
+
["KNYC", STATIONS3[33]],
|
|
5578
|
+
["KOKC", STATIONS3[34]],
|
|
5579
|
+
["KORD", STATIONS3[35]],
|
|
5580
|
+
["KPHL", STATIONS3[36]],
|
|
5581
|
+
["KPHX", STATIONS3[37]],
|
|
5582
|
+
["KSAT", STATIONS3[38]],
|
|
5583
|
+
["KSEA", STATIONS3[39]],
|
|
5584
|
+
["KSFO", STATIONS3[40]],
|
|
5585
|
+
["KSLC", STATIONS3[41]],
|
|
5586
|
+
["LEBL", STATIONS3[42]],
|
|
5587
|
+
["LEMD", STATIONS3[43]],
|
|
5588
|
+
["LFPB", STATIONS3[44]],
|
|
5589
|
+
["LFPG", STATIONS3[45]],
|
|
5590
|
+
["LFPO", STATIONS3[46]],
|
|
5591
|
+
["LIMC", STATIONS3[47]],
|
|
5592
|
+
["LIRF", STATIONS3[48]],
|
|
5593
|
+
["LLBG", STATIONS3[49]],
|
|
5594
|
+
["LOWW", STATIONS3[50]],
|
|
5595
|
+
["LSZH", STATIONS3[51]],
|
|
5596
|
+
["LTAC", STATIONS3[52]],
|
|
5597
|
+
["LTFM", STATIONS3[53]],
|
|
5598
|
+
["MMMX", STATIONS3[54]],
|
|
5599
|
+
["MPMG", STATIONS3[55]],
|
|
5600
|
+
["NZAA", STATIONS3[56]],
|
|
5601
|
+
["NZWN", STATIONS3[57]],
|
|
5602
|
+
["OEJN", STATIONS3[58]],
|
|
5603
|
+
["OERK", STATIONS3[59]],
|
|
5604
|
+
["OMDB", STATIONS3[60]],
|
|
5605
|
+
["OPKC", STATIONS3[61]],
|
|
5606
|
+
["OTHH", STATIONS3[62]],
|
|
5607
|
+
["RCSS", STATIONS3[63]],
|
|
5608
|
+
["RCTP", STATIONS3[64]],
|
|
5609
|
+
["RJAA", STATIONS3[65]],
|
|
5610
|
+
["RJTT", STATIONS3[66]],
|
|
5611
|
+
["RKPK", STATIONS3[67]],
|
|
5612
|
+
["RKSI", STATIONS3[68]],
|
|
5613
|
+
["RPLL", STATIONS3[69]],
|
|
5614
|
+
["SAEZ", STATIONS3[70]],
|
|
5615
|
+
["SBGR", STATIONS3[71]],
|
|
5616
|
+
["UUEE", STATIONS3[72]],
|
|
5617
|
+
["UUWW", STATIONS3[73]],
|
|
5618
|
+
["VABB", STATIONS3[74]],
|
|
5619
|
+
["VHHH", STATIONS3[75]],
|
|
5620
|
+
["VIDP", STATIONS3[76]],
|
|
5621
|
+
["VILK", STATIONS3[77]],
|
|
5622
|
+
["VTBS", STATIONS3[78]],
|
|
5623
|
+
["WMKK", STATIONS3[79]],
|
|
5624
|
+
["WSSS", STATIONS3[80]],
|
|
5625
|
+
["YBBN", STATIONS3[81]],
|
|
5626
|
+
["YMML", STATIONS3[82]],
|
|
5627
|
+
["YSSY", STATIONS3[83]],
|
|
5628
|
+
["ZBAA", STATIONS3[84]],
|
|
5629
|
+
["ZGGG", STATIONS3[85]],
|
|
5630
|
+
["ZGSZ", STATIONS3[86]],
|
|
5631
|
+
["ZHCC", STATIONS3[87]],
|
|
5632
|
+
["ZHHH", STATIONS3[88]],
|
|
5633
|
+
["ZSJN", STATIONS3[89]],
|
|
5634
|
+
["ZSPD", STATIONS3[90]],
|
|
5635
|
+
["ZSQD", STATIONS3[91]],
|
|
5636
|
+
["ZUCK", STATIONS3[92]],
|
|
5637
|
+
["ZUUU", STATIONS3[93]]
|
|
4925
5638
|
]);
|
|
4926
5639
|
var _STATION_TZ = Object.freeze({
|
|
4927
5640
|
// Eastern (UTC-5 standard / UTC-4 DST)
|
|
@@ -6205,14 +6918,14 @@ var POLYMARKET_KNOWN_WRONG_STATIONS = Object.freeze({
|
|
|
6205
6918
|
nyc: /* @__PURE__ */ new Set(["KNYC", "KJFK", "KEWR"]),
|
|
6206
6919
|
// Chicago: Polymarket uses KORD. KMDW is the common wrong answer.
|
|
6207
6920
|
chicago: /* @__PURE__ */ new Set(["KMDW"]),
|
|
6208
|
-
// Houston: Polymarket
|
|
6209
|
-
|
|
6210
|
-
|
|
6211
|
-
|
|
6921
|
+
// Houston: Phase 23 moved Polymarket to KHOU. KIAH (Kalshi's station) is
|
|
6922
|
+
// now the cross-venue wrong answer for a Polymarket Houston market.
|
|
6923
|
+
houston: /* @__PURE__ */ new Set(["KIAH"]),
|
|
6924
|
+
// Dallas: Phase 23 moved Polymarket to KDAL. KDFW (Kalshi's station) is
|
|
6925
|
+
// now the cross-venue wrong answer.
|
|
6926
|
+
dallas: /* @__PURE__ */ new Set(["KDFW"]),
|
|
6212
6927
|
// SF: Polymarket uses KSFO. KOAK is the common wrong answer.
|
|
6213
|
-
san_francisco: /* @__PURE__ */ new Set(["KOAK"])
|
|
6214
|
-
// DC: Polymarket uses KDCA. KIAD/KBWI are common wrong answers.
|
|
6215
|
-
washington_dc: /* @__PURE__ */ new Set(["KIAD", "KBWI"])
|
|
6928
|
+
san_francisco: /* @__PURE__ */ new Set(["KOAK"])
|
|
6216
6929
|
});
|
|
6217
6930
|
|
|
6218
6931
|
// src/compose.ts
|