Skip to content

Commit 3a5a9d0

Browse files
committed
Creating TS versions.
1 parent 76f53a1 commit 3a5a9d0

4 files changed

Lines changed: 8275 additions & 3 deletions

File tree

citiesf24.ts

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
type City = {
2+
name: string;
3+
population: number;
4+
island?: string;
5+
};
6+
7+
const cities: City[] = [
8+
{ name: 'Urban Honolulu', population: 351554, island: 'Oahu' },
9+
{ name: 'East Honolulu', population: 50076, island: 'Oahu' },
10+
{ name: 'Hilo', population: 46559, island: 'Hawaii' },
11+
{ name: 'Pearl City', population: 45941, island: 'Oahu' },
12+
{ name: 'Kailua', population: 40402, island: 'Oahu' },
13+
{ name: 'Waipahu', population: 39927, island: 'Oahu' },
14+
{ name: 'Kaneohe', population: 34509, island: 'Oahu' },
15+
{ name: 'Ewa Gentry', population: 28125, island: 'Oahu' },
16+
{ name: 'Mililani Town', population: 27974, island: 'Oahu' },
17+
{ name: 'Kahului', population: 27938, island: 'Maui' },
18+
{ name: 'Kapolei', population: 23248, island: 'Oahu' },
19+
{ name: 'Kihei', population: 22840, island: 'Maui' },
20+
{ name: 'Mililani Mauka', population: 21657, island: 'Oahu' },
21+
{ name: 'Kailua Kona', population: 21460, island: 'Hawaii' },
22+
{ name: 'Makakilo', population: 20862, island: 'Oahu' },
23+
{ name: 'Schofield Barracks', population: 18255, island: 'Oahu' },
24+
{ name: 'Wahiawa', population: 17357, island: 'Oahu' },
25+
{ name: 'Ocean Pointe', population: 16676, island: 'Oahu' },
26+
{ name: 'Wailuku', population: 15670, island: 'Maui' },
27+
{ name: 'Halawa', population: 14990, island: 'Oahu' },
28+
{ name: 'Ewa Beach', population: 14614, island: 'Oahu' },
29+
{ name: 'Royal Kunia', population: 14390, island: 'Oahu' },
30+
{ name: 'Waianae', population: 14152, island: 'Oahu' },
31+
{ name: 'Waimalu', population: 13818, island: 'Oahu' },
32+
{ name: 'Lahaina', population: 13261, island: 'Maui' },
33+
{ name: 'Maili', population: 13245, island: 'Oahu' },
34+
{ name: 'Nanakuli', population: 12587, island: 'Oahu' },
35+
{ name: 'Hawaiian Paradise Park', population: 11942, island: 'Hawaii' },
36+
{ name: 'Kaneohe Base', population: 11829, island: 'Oahu' },
37+
{ name: 'Kaiminani', population: 11557 },
38+
{ name: 'Kapaa', population: 11516, island: 'Kauai' },
39+
{ name: 'Waihee - Waiehu', population: 11059, island: 'Maui' },
40+
{ name: 'Waipio', population: 10989, island: 'Oahu' },
41+
{ name: 'Waimea', population: 10422, island: 'Hawaii' },
42+
{ name: 'Hickam Housing', population: 10022, island: 'Oahu' },
43+
{ name: 'Makaha', population: 9710, island: 'Oahu' },
44+
{ name: 'Aiea', population: 9527, island: 'Oahu' },
45+
{ name: 'Haiku - Pauwela', population: 9347, island: 'Maui' },
46+
{ name: 'Ahuimanu', population: 8943, island: 'Oahu' },
47+
{ name: 'Lihue', population: 8371, island: 'Kauai' },
48+
{ name: 'Makawao', population: 7670, island: 'Maui' },
49+
{ name: 'Waikoloa Village', population: 7519, island: 'Hawaii' },
50+
{ name: 'Kula', population: 7495, island: 'Maui' },
51+
{ name: 'Waikele', population: 7495, island: 'Oahu' },
52+
{ name: 'Pukalani', population: 7315, island: 'Maui' },
53+
{ name: 'Kahaluu - Keauhou', population: 7236, island: 'Oahu' },
54+
{ name: 'Napili - Honokowai', population: 6762, island: 'Maui' },
55+
{ name: 'Ewa Villages', population: 6657, island: 'Oahu' },
56+
{ name: 'Wailua Homesteads', population: 6634, island: 'Kauai' },
57+
{ name: 'Wailea', population: 6546, island: 'Maui' },
58+
{ name: 'Laie', population: 6436, island: 'Oahu' },
59+
{ name: 'West Loch Estate', population: 6239, island: 'Oahu' },
60+
{ name: 'Iroquois Point', population: 5737, island: 'Oahu' },
61+
{ name: 'Waipio Acres', population: 5618, island: 'Oahu' },
62+
{ name: 'Waimanalo', population: 5371, island: 'Oahu' },
63+
{ name: 'Kahaluu', population: 5006, island: 'Oahu' },
64+
{ name: 'Heeia', population: 4777, island: 'Oahu' },
65+
{ name: 'Kalaheo', population: 4776, island: 'Kauai' },
66+
{ name: 'Haleiwa', population: 4651, island: 'Oahu' },
67+
{ name: 'Hanamaulu', population: 4435, island: 'Kauai' },
68+
{ name: 'Pupukea', population: 4416, island: 'Oahu' },
69+
{ name: 'Waimanalo Beach', population: 4389, island: 'Oahu' },
70+
{ name: 'Hawaiian Beaches', population: 4213, island: 'Hawaii' },
71+
{ name: 'Puhi', population: 4154, island: 'Kauai' },
72+
{ name: 'Captain Cook', population: 4087, island: 'Hawaii' },
73+
{ name: 'Waikapu', population: 4002, island: 'Maui' },
74+
{ name: 'Ainaloa', population: 3963, island: 'Hawaii' },
75+
{ name: 'Whitmore Village', population: 3881, island: 'Oahu' },
76+
{ name: 'Hauula', population: 3869, island: 'Oahu' },
77+
{ name: 'Hawaiian Ocean View', population: 3851, island: 'Hawaii' },
78+
{ name: 'East Kapolei', population: 3610, island: 'Oahu' },
79+
{ name: 'Mountain View', population: 3467, island: 'Hawaii' },
80+
{ name: 'Helemano', population: 3404, island: 'Oahu' },
81+
{ name: 'Kilauea', population: 3349, island: 'Kauai' },
82+
{ name: 'Kaunakakai', population: 3263, island: 'Maui' },
83+
{ name: 'Waialua', population: 3222, island: 'Oahu' },
84+
{ name: 'Kurtistown', population: 3115, island: 'Hawaii' },
85+
{ name: 'Hawaiian Acres', population: 3093, island: 'Hawaii' },
86+
{ name: 'Lanai City', population: 3079, island: 'Lanai' },
87+
{ name: 'Kekaha', population: 3014, island: 'Kauai' },
88+
{ name: 'Kalaeloa', population: 2808, island: 'Oahu' },
89+
{ name: 'Anahola', population: 2787, island: 'Kauai' },
90+
{ name: 'Orchidlands Estates', population: 2749, island: 'Hawaii' },
91+
{ name: 'Lawai', population: 2733, island: 'Kauai' },
92+
{ name: 'Holualoa', population: 2710, island: 'Hawaii' },
93+
{ name: 'Keokea', population: 2645, island: 'Maui' },
94+
{ name: 'Wailua', population: 2630, island: 'Kauai' },
95+
{ name: 'Honaunau - Napoopoo', population: 2538, island: 'Hawaii' },
96+
{ name: 'Hanapepe', population: 2456, island: 'Kauai' },
97+
{ name: 'Paia', population: 2410, island: 'Maui' },
98+
{ name: 'Kahuku', population: 2371, island: 'Oahu' },
99+
{ name: 'Wheeler AFB', population: 2353, island: 'Oahu' },
100+
{ name: 'Koloa', population: 2348, island: 'Kauai' },
101+
{ name: 'Eleele', population: 2329, island: 'Kauai' },
102+
{ name: 'Pahala', population: 2210, island: 'Hawaii' },
103+
{ name: 'Kealakekua', population: 2128, island: 'Hawaii' },
104+
{ name: 'Maunawili', population: 2071, island: 'Oahu' },
105+
{ name: 'Kapaau', population: 2044, island: 'Hawaii' },
106+
{ name: 'Kualapuu', population: 2024, island: 'Maui' },
107+
{ name: 'Princeville', population: 1969, island: 'Kauai' },
108+
];

co2f24.ts

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
type Co2 = {
2+
year: number;
3+
mean: number;
4+
unc: number;
5+
};
6+
7+
8+
const co2: Co2[] = [
9+
{"year": 1959, "mean": 315.98, "unc": 0.12},
10+
{"year": 1960, "mean": 316.91, "unc": 0.12},
11+
{"year": 1961, "mean": 317.64, "unc": 0.12},
12+
{"year": 1962, "mean": 318.45, "unc": 0.12},
13+
{"year": 1963, "mean": 318.99, "unc": 0.12},
14+
{"year": 1964, "mean": 319.62, "unc": 0.12},
15+
{"year": 1965, "mean": 320.04, "unc": 0.12},
16+
{"year": 1966, "mean": 321.37, "unc": 0.12},
17+
{"year": 1967, "mean": 322.18, "unc": 0.12},
18+
{"year": 1968, "mean": 323.05, "unc": 0.12},
19+
{"year": 1969, "mean": 324.62, "unc": 0.12},
20+
{"year": 1970, "mean": 325.68, "unc": 0.12},
21+
{"year": 1971, "mean": 326.32, "unc": 0.12},
22+
{"year": 1972, "mean": 327.46, "unc": 0.12},
23+
{"year": 1973, "mean": 329.68, "unc": 0.12},
24+
{"year": 1974, "mean": 330.19, "unc": 0.12},
25+
{"year": 1975, "mean": 331.12, "unc": 0.12},
26+
{"year": 1976, "mean": 332.03, "unc": 0.12},
27+
{"year": 1977, "mean": 333.84, "unc": 0.12},
28+
{"year": 1978, "mean": 335.41, "unc": 0.12},
29+
{"year": 1979, "mean": 336.84, "unc": 0.12},
30+
{"year": 1980, "mean": 338.76, "unc": 0.12},
31+
{"year": 1981, "mean": 340.12, "unc": 0.12},
32+
{"year": 1982, "mean": 341.48, "unc": 0.12},
33+
{"year": 1983, "mean": 343.15, "unc": 0.12},
34+
{"year": 1984, "mean": 344.85, "unc": 0.12},
35+
{"year": 1985, "mean": 346.35, "unc": 0.12},
36+
{"year": 1986, "mean": 347.61, "unc": 0.12},
37+
{"year": 1987, "mean": 349.31, "unc": 0.12},
38+
{"year": 1988, "mean": 351.69, "unc": 0.12},
39+
{"year": 1989, "mean": 353.2, "unc": 0.12},
40+
{"year": 1990, "mean": 354.45, "unc": 0.12},
41+
{"year": 1991, "mean": 355.7, "unc": 0.12},
42+
{"year": 1992, "mean": 356.54, "unc": 0.12},
43+
{"year": 1993, "mean": 357.21, "unc": 0.12},
44+
{"year": 1994, "mean": 358.96, "unc": 0.12},
45+
{"year": 1995, "mean": 360.97, "unc": 0.12},
46+
{"year": 1996, "mean": 362.74, "unc": 0.12},
47+
{"year": 1997, "mean": 363.88, "unc": 0.12},
48+
{"year": 1998, "mean": 366.84, "unc": 0.12},
49+
{"year": 1999, "mean": 368.54, "unc": 0.12},
50+
{"year": 2000, "mean": 369.71, "unc": 0.12},
51+
{"year": 2001, "mean": 371.32, "unc": 0.12},
52+
{"year": 2002, "mean": 373.45, "unc": 0.12},
53+
{"year": 2003, "mean": 375.98, "unc": 0.12},
54+
{"year": 2004, "mean": 377.7, "unc": 0.12},
55+
{"year": 2005, "mean": 379.98, "unc": 0.12},
56+
{"year": 2006, "mean": 382.09, "unc": 0.12},
57+
{"year": 2007, "mean": 384.03, "unc": 0.12},
58+
{"year": 2008, "mean": 385.83, "unc": 0.12},
59+
{"year": 2009, "mean": 387.64, "unc": 0.12},
60+
{"year": 2010, "mean": 390.1, "unc": 0.12},
61+
{"year": 2011, "mean": 391.85, "unc": 0.12},
62+
{"year": 2012, "mean": 394.06, "unc": 0.12},
63+
{"year": 2013, "mean": 396.74, "unc": 0.12},
64+
{"year": 2014, "mean": 398.87, "unc": 0.12},
65+
{"year": 2015, "mean": 401.01, "unc": 0.12},
66+
{"year": 2016, "mean": 404.41, "unc": 0.12},
67+
{"year": 2017, "mean": 406.76, "unc": 0.12},
68+
{"year": 2018, "mean": 408.72, "unc": 0.12},
69+
{"year": 2019, "mean": 411.66, "unc": 0.12},
70+
{"year": 2020, "mean": 414.24, "unc": 0.12},
71+
{"year": 2021, "mean": 416.45, "unc": 0.12},
72+
{"year": 2022, "mean": 418.95, "unc": 0.12}
73+
];
74+
75+
export default co2;

greenjobs.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
var greenjobs = [
1+
const greenjobs = [
22
{
3-
"Employer Name":"808- ELECTRIC AND TELECOM LLC",
3+
"EmployerName":"808- ELECTRIC AND TELECOM LLC",
44
"Address":"16-206 Wiliama Pl Unit B\nKeaau, HI 96749\n(19.637427491648623, -155.0442574592578)",
55
"County":"Hawaii",
66
"Contact":"Douglas Oki",
@@ -8072,4 +8072,4 @@ var greenjobs = [
80728072
"Job Title":"Painter",
80738073
"Job Description":"Installs paint & wall coverings- LEED project-approved materials"
80748074
}
8075-
];
8075+
];

0 commit comments

Comments
 (0)