-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
1028 lines (1010 loc) · 48.4 KB
/
index.html
File metadata and controls
1028 lines (1010 loc) · 48.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html data-theme="light">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/pico.min.css" />
<link
rel="stylesheet"
href="./css/app.css?ed82450625d8849c64c4533a3d1dd0cd3c57b283"
/>
</head>
<body>
<main class="container">
<div id="capture">
<hgroup>
<h1>New York <b>ACTUALLY HAS 12 SEASONS</b></h1>
<h2><span id="explainer">Loading...</span></h2>
</hgroup>
<br />
<ul>
<li>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="icon icon-tabler icons-tabler-outline icon-tabler-snowflake"
>
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M10 4l2 1l2 -1" />
<path d="M12 2v6.5l3 1.72" />
<path d="M17.928 6.268l.134 2.232l1.866 1.232" />
<path d="M20.66 7l-5.629 3.25l.01 3.458" />
<path d="M19.928 14.268l-1.866 1.232l-.134 2.232" />
<path d="M20.66 17l-5.629 -3.25l-2.99 1.738" />
<path d="M14 20l-2 -1l-2 1" />
<path d="M12 22v-6.5l-3 -1.72" />
<path
d="M6.072 17.732l-.134 -2.232l-1.866 -1.232"
/>
<path d="M3.34 17l5.629 -3.25l-.01 -3.458" />
<path d="M4.072 9.732l1.866 -1.232l.134 -2.232" />
<path d="M3.34 7l5.629 3.25l2.99 -1.738" />
</svg>
Winter
<span class="you-are-here">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="1 1 25 25"
fill="currentColor"
class="icon icon-tabler icons-tabler-filled icon-tabler-arrow-big-left"
>
<path
stroke="none"
d="M0 0h24v24H0z"
fill="none"
/>
<path
d="M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h7a2 2 0 0 0 2 -2v-4l-.005 -.15a2 2 0 0 0 -1.995 -1.85l-7 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z"
/>
</svg>
You are here
</span>
</li>
<li>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="icon icon-tabler icons-tabler-outline icon-tabler-clover-2"
>
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path
d="M11 11l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95a2.04 2.04 0 0 1 2.912 0l.485 .39l.485 -.39a2.04 2.04 0 0 1 2.912 0a2.104 2.104 0 0 1 0 2.95l-3.397 3.44z"
/>
<path
d="M11 11l-3.397 3.44a2.104 2.104 0 0 0 0 2.95a2.04 2.04 0 0 0 2.912 0l.485 -.39l.485 .39a2.04 2.04 0 0 0 2.912 0a2.104 2.104 0 0 0 0 -2.95l-3.397 -3.44z"
/>
<path
d="M14.44 7.603a2.104 2.104 0 0 1 2.95 0a2.04 2.04 0 0 1 0 2.912l-.39 .485l.39 .485a2.04 2.04 0 0 1 0 2.912a2.104 2.104 0 0 1 -2.95 0"
/>
<path
d="M7.56 7.603a2.104 2.104 0 0 0 -2.95 0a2.04 2.04 0 0 0 0 2.912l.39 .485l-.39 .485a2.04 2.04 0 0 0 0 2.912a2.104 2.104 0 0 0 2.95 0"
/>
<path d="M15 15l6 6" />
</svg>
Fool's Spring
<span class="you-are-here">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="1 1 25 25"
fill="currentColor"
class="icon icon-tabler icons-tabler-filled icon-tabler-arrow-big-left"
>
<path
stroke="none"
d="M0 0h24v24H0z"
fill="none"
/>
<path
d="M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h7a2 2 0 0 0 2 -2v-4l-.005 -.15a2 2 0 0 0 -1.995 -1.85l-7 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z"
/>
</svg>
You are here
</span>
</li>
<li>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="icon icon-tabler icons-tabler-outline icon-tabler-snowflake"
>
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M10 4l2 1l2 -1" />
<path d="M12 2v6.5l3 1.72" />
<path d="M17.928 6.268l.134 2.232l1.866 1.232" />
<path d="M20.66 7l-5.629 3.25l.01 3.458" />
<path d="M19.928 14.268l-1.866 1.232l-.134 2.232" />
<path d="M20.66 17l-5.629 -3.25l-2.99 1.738" />
<path d="M14 20l-2 -1l-2 1" />
<path d="M12 22v-6.5l-3 -1.72" />
<path
d="M6.072 17.732l-.134 -2.232l-1.866 -1.232"
/>
<path d="M3.34 17l5.629 -3.25l-.01 -3.458" />
<path d="M4.072 9.732l1.866 -1.232l.134 -2.232" />
<path d="M3.34 7l5.629 3.25l2.99 -1.738" />
<!-- Add a little "2" in the bottom right corner -->
<text
x="19"
y="23"
font-size="6"
fill="currentColor"
stroke-width="1"
>
2
</text>
</svg>
Second Winter
<span class="you-are-here">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="1 1 25 25"
fill="currentColor"
class="icon icon-tabler icons-tabler-filled icon-tabler-arrow-big-left"
>
<path
stroke="none"
d="M0 0h24v24H0z"
fill="none"
/>
<path
d="M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h7a2 2 0 0 0 2 -2v-4l-.005 -.15a2 2 0 0 0 -1.995 -1.85l-7 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z"
/>
</svg>
You are here
</span>
</li>
<li>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="currentColor"
class="icon icon-tabler icons-tabler-filled icon-tabler-seeding"
>
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path
d="M6 3a7 7 0 0 1 6.95 6.155a6.97 6.97 0 0 1 5.05 -2.155h3a1 1 0 0 1 1 1v1a7 7 0 0 1 -7 7h-2v4a1 1 0 0 1 -2 0v-7h-2a7 7 0 0 1 -7 -7v-2a1 1 0 0 1 1 -1z"
/>
</svg>
Spring of Deception
<span class="you-are-here">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="1 1 25 25"
fill="currentColor"
class="icon icon-tabler icons-tabler-filled icon-tabler-arrow-big-left"
>
<path
stroke="none"
d="M0 0h24v24H0z"
fill="none"
/>
<path
d="M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h7a2 2 0 0 0 2 -2v-4l-.005 -.15a2 2 0 0 0 -1.995 -1.85l-7 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z"
/>
</svg>
You are here
</span>
</li>
<li>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="icon icon-tabler icons-tabler-outline icon-tabler-snowflake"
>
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M10 4l2 1l2 -1" />
<path d="M12 2v6.5l3 1.72" />
<path d="M17.928 6.268l.134 2.232l1.866 1.232" />
<path d="M20.66 7l-5.629 3.25l.01 3.458" />
<path d="M19.928 14.268l-1.866 1.232l-.134 2.232" />
<path d="M20.66 17l-5.629 -3.25l-2.99 1.738" />
<path d="M14 20l-2 -1l-2 1" />
<path d="M12 22v-6.5l-3 -1.72" />
<path
d="M6.072 17.732l-.134 -2.232l-1.866 -1.232"
/>
<path d="M3.34 17l5.629 -3.25l-.01 -3.458" />
<path d="M4.072 9.732l1.866 -1.232l.134 -2.232" />
<path d="M3.34 7l5.629 3.25l2.99 -1.738" />
<!-- Add a little "3" in the bottom right corner -->
<text
x="19"
y="23"
font-size="6"
fill="currentColor"
stroke-width="1"
>
3
</text>
</svg>
Third Winter
<span class="you-are-here">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="1 1 25 25"
fill="currentColor"
class="icon icon-tabler icons-tabler-filled icon-tabler-arrow-big-left"
>
<path
stroke="none"
d="M0 0h24v24H0z"
fill="none"
/>
<path
d="M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h7a2 2 0 0 0 2 -2v-4l-.005 -.15a2 2 0 0 0 -1.995 -1.85l-7 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z"
/>
</svg>
You are here
</span>
</li>
<li>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="icon icon-tabler icons-tabler-outline icon-tabler-tree"
>
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M12 13l-2 -2" />
<path d="M12 12l2 -2" />
<path d="M12 21v-13" />
<path
d="M9.824 16a3 3 0 0 1 -2.743 -3.69a3 3 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a3 3 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z"
/>
</svg>
The Pollening
<span class="you-are-here">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="1 1 25 25"
fill="currentColor"
class="icon icon-tabler icons-tabler-filled icon-tabler-arrow-big-left"
>
<path
stroke="none"
d="M0 0h24v24H0z"
fill="none"
/>
<path
d="M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h7a2 2 0 0 0 2 -2v-4l-.005 -.15a2 2 0 0 0 -1.995 -1.85l-7 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z"
/>
</svg>
You are here
</span>
</li>
<li>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="icon icon-tabler icons-tabler-outline icon-tabler-seeding"
>
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path
d="M12 10a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3"
/>
<path
d="M12 14a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3"
/>
<path d="M12 20l0 -10" />
</svg>
Actual Spring
<span class="you-are-here">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="1 1 25 25"
fill="currentColor"
class="icon icon-tabler icons-tabler-filled icon-tabler-arrow-big-left"
>
<path
stroke="none"
d="M0 0h24v24H0z"
fill="none"
/>
<path
d="M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h7a2 2 0 0 0 2 -2v-4l-.005 -.15a2 2 0 0 0 -1.995 -1.85l-7 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z"
/>
</svg>
You are here
</span>
</li>
<li>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="icon icon-tabler icons-tabler-outline icon-tabler-sun-high"
>
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path
d="M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"
/>
<path d="M6.343 17.657l-1.414 1.414" />
<path d="M6.343 6.343l-1.414 -1.414" />
<path d="M17.657 6.343l1.414 -1.414" />
<path d="M17.657 17.657l1.414 1.414" />
<path d="M4 12h-2" />
<path d="M12 4v-2" />
<path d="M20 12h2" />
<path d="M12 20v2" />
</svg>
Summer
<span class="you-are-here">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="1 1 25 25"
fill="currentColor"
class="icon icon-tabler icons-tabler-filled icon-tabler-arrow-big-left"
>
<path
stroke="none"
d="M0 0h24v24H0z"
fill="none"
/>
<path
d="M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h7a2 2 0 0 0 2 -2v-4l-.005 -.15a2 2 0 0 0 -1.995 -1.85l-7 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z"
/>
</svg>
You are here
</span>
</li>
<li>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="icon icon-tabler icons-tabler-outline icon-tabler-flame"
>
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path
d="M12 12c2 -2.96 0 -7 -1 -8c0 3.038 -1.773 4.741 -3 6c-1.226 1.26 -2 3.24 -2 5a6 6 0 1 0 12 0c0 -1.532 -1.056 -3.94 -2 -5c-1.786 3 -2.791 3 -4 2z"
/>
</svg>
Hell's Front Porch
<span class="you-are-here">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="1 1 25 25"
fill="currentColor"
class="icon icon-tabler icons-tabler-filled icon-tabler-arrow-big-left"
>
<path
stroke="none"
d="M0 0h24v24H0z"
fill="none"
/>
<path
d="M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h7a2 2 0 0 0 2 -2v-4l-.005 -.15a2 2 0 0 0 -1.995 -1.85l-7 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z"
/>
</svg>
You are here
</span>
</li>
<li>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="currentColor"
class="icon icon-tabler icon-tabler-leaf-2"
>
<path d="M0 0h24v24H0z" fill="none" />
<path d="M5 21c.5 -4.5 2.5 -8 7 -10" />
<path
d="M7.5 15q -3.5 0 -4.5 -6a8.4 8.4 0 0 1 3.438 .402 12 12 0 0 1 -.052 -.793c0 -3.606 3.204 -5.609 3.204 -5.609s2.003 1.252 2.842 3.557q 2.568 -1.557 6.568 -1.557q .396 3.775 -1.557 6.568c2.305 .839 3.557 2.842 3.557 2.842s-3 2.59 -7 2.59c0 1 0 1 .5 3q -6 0 -7 -5"
/>
</svg>
False Fall
<span class="you-are-here">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="1 1 25 25"
fill="currentColor"
class="icon icon-tabler icons-tabler-filled icon-tabler-arrow-big-left"
>
<path
stroke="none"
d="M0 0h24v24H0z"
fill="none"
/>
<path
d="M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h7a2 2 0 0 0 2 -2v-4l-.005 -.15a2 2 0 0 0 -1.995 -1.85l-7 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z"
/>
</svg>
You are here
</span>
</li>
<li>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="icon icon-tabler icons-tabler-outline icon-tabler-sun-high"
>
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path
d="M14.828 14.828a4 4 0 1 0 -5.656 -5.656a4 4 0 0 0 5.656 5.656z"
/>
<path d="M6.343 17.657l-1.414 1.414" />
<path d="M6.343 6.343l-1.414 -1.414" />
<path d="M17.657 6.343l1.414 -1.414" />
<path d="M17.657 17.657l1.414 1.414" />
<path d="M4 12h-2" />
<path d="M12 4v-2" />
<path d="M20 12h2" />
<path d="M12 20v2" />
<!-- Add a little "2" in the bottom right corner -->
<text
x="20"
y="23"
font-size="6"
fill="currentColor"
stroke-width="1"
>
2
</text>
</svg>
Second Summer
<span class="you-are-here">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="1 1 25 25"
fill="currentColor"
class="icon icon-tabler icons-tabler-filled icon-tabler-arrow-big-left"
>
<path
stroke="none"
d="M0 0h24v24H0z"
fill="none"
/>
<path
d="M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h7a2 2 0 0 0 2 -2v-4l-.005 -.15a2 2 0 0 0 -1.995 -1.85l-7 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z"
/>
</svg>
You are here
</span>
</li>
<li>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="icon icon-tabler icons-tabler-outline icon-tabler-leaf-2"
>
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M5 21c.5 -4.5 2.5 -8 7 -10" />
<path
d="M7.5 15q -3.5 0 -4.5 -6a8.4 8.4 0 0 1 3.438 .402a12 12 0 0 1 -.052 -.793c0 -3.606 3.204 -5.609 3.204 -5.609s2.003 1.252 2.842 3.557q 2.568 -1.557 6.568 -1.557q .396 3.775 -1.557 6.568c2.305 .839 3.557 2.842 3.557 2.842s-3 2.59 -7 2.59c0 1 0 1 .5 3q -6 0 -7 -5"
/>
</svg>
Actual Fall
<span class="you-are-here">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="1 1 25 25"
fill="currentColor"
class="icon icon-tabler icons-tabler-filled icon-tabler-arrow-big-left"
>
<path
stroke="none"
d="M0 0h24v24H0z"
fill="none"
/>
<path
d="M9.586 4l-6.586 6.586a2 2 0 0 0 0 2.828l6.586 6.586a2 2 0 0 0 2.18 .434l.145 -.068a2 2 0 0 0 1.089 -1.78v-2.586h7a2 2 0 0 0 2 -2v-4l-.005 -.15a2 2 0 0 0 -1.995 -1.85l-7 -.001v-2.585a2 2 0 0 0 -3.414 -1.414z"
/>
</svg>
You are here
</span>
</li>
</ul>
<!-- only unhidden for the screenshot -->
<div id="url" style="display: none">12seasons.nyc</div>
</div>
<br />
<div>
<!-- display:none the button until we've confirmed their browser can do shares. -->
<a
id="share-btn"
href="#"
class="secondary"
target="_blank"
style="display: none"
>
<small>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="icon icon-tabler icons-tabler-outline icon-tabler-share-2"
>
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path
d="M8 9h-1a2 2 0 0 0 -2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-8a2 2 0 0 0 -2 -2h-1"
/>
<path d="M12 14v-11" />
<path d="M9 6l3 -3l3 3" />
</svg>
Share image
</small>
</a>
</div>
<div>
<a
id="download-btn"
href="#"
class="secondary"
target="_blank"
style="display: none"
>
<small>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="icon icon-tabler icons-tabler-outline icon-tabler-download"
>
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path
d="M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2"
/>
<path d="M7 11l5 5l5 -5" />
<path d="M12 4l0 12" />
</svg>
Download image
</small>
</a>
</div>
<details>
<summary>
<u>
<small>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="icon icon-tabler icons-tabler-outline icon-tabler-book-2"
>
<path
stroke="none"
d="M0 0h24v24H0z"
fill="none"
/>
<path
d="M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z"
/>
<path d="M19 16h-12a2 2 0 0 0 -2 2" />
<path d="M9 8h6" />
</svg>
About this page
</small>
</u>
</summary>
<p>
This web page is inspired by
<a class="secondary" href="https://i.imgur.com/qT4WqjG.jpg"
>this meme</a
>.
</p>
<img
src="https://i.imgur.com/qT4WqjG.jpg"
alt="A list of 12 seasons of new york with an arrow pointed to 'The Pollening'"
/>
<p>
While the meme is simple, this page... not so much. It might
even be a bit over-engineered.
</p>
<h2>How this Works</h2>
<p>
The goal of this page is to capture, not the
<i>astrological</i> or <i>meteorological</i> seasons of New
York, but the <i>experiential</i> seasons of a New Yorker. A
creature who lives their life largely outside the
traditional comforts of climate-controlled cars.
</p>
<p>
For instance, if it's unseasonably warm in late winter, the
New Yorker's brain knows it's not spring, yet they might be
tricked into donning a light jacket, only to be corrected
later that evening by the city's unforgiving weather.
</p>
<p>
This is a classic case of experiencing <b>Fool's Spring</b>.
</p>
<p>
This web page <b>dynamically updates</b> based on the
<b>day of the year</b>, the <b>time of day</b>, and the
<b>current temperature in NYC</b>.
</p>
<p>
It uses both live data and 53 years of historical data from
<a href="https://openweathermap.org/" class="secondary"
>OpenWeatherMap.org</a
>.
</p>
<h2>Methodology</h2>
<p>
I mapped the meme's seasons to a two-dimensional grid, using
the astrological sub-season and the relative temperature for
that time of year.
</p>
<p>This is more art than science.</p>
<h4>Winter</h4>
<table class="seasons">
<thead>
<tr>
<td></td>
<th>Early</th>
<th>Mid</th>
<th>Late</th>
</tr>
</thead>
<tbody>
<tr>
<th>Cold</th>
<td colspan="2" rowspan="2">Winter</td>
<td rowspan="2">Second<br />Winter</td>
</tr>
<tr>
<th>Mid</th>
</tr>
<tr>
<th>Warm</th>
<td colspan="3">Fool's Spring</td>
</tr>
</tbody>
</table>
<h4>Spring</h4>
<table class="seasons">
<thead>
<tr>
<td></td>
<th>Early</th>
<th>Mid</th>
<th>Late</th>
</tr>
</thead>
<tbody>
<tr>
<th>Cold</th>
<td colspan="3">Third Winter</td>
</tr>
<tr>
<th>Mid</th>
<td rowspan="2">Spring of<br />Deception</td>
<td colspan="2">Actual Spring</td>
</tr>
<tr>
<th>Warm</th>
<td colspan="2">The Pollening</td>
</tr>
</tbody>
</table>
<h4>Summer</h4>
<table class="seasons">
<thead>
<tr>
<td></td>
<th>Early</th>
<th>Mid</th>
<th>Late</th>
</tr>
</thead>
<tbody>
<tr>
<th>Cold</th>
<td colspan="2" rowspan="2">Summer</td>
<td rowspan="2">False Fall</td>
</tr>
<tr>
<th>Mid</th>
</tr>
<tr>
<th>Warm</th>
<td colspan="3">Hell's Front Porch</td>
</tr>
</tbody>
</table>
<h4>Fall</h4>
<table class="seasons">
<thead>
<tr>
<td></td>
<th>Early</th>
<th>Mid</th>
<th>Late</th>
</tr>
</thead>
<tbody>
<tr>
<th>Cold</th>
<td colspan="3">Winter</td>
</tr>
<tr>
<th>Mid</th>
<td colspan="3">Actual Fall</td>
</tr>
<tr>
<th>Warm</th>
<td colspan="3">Second Summer</td>
</tr>
</tbody>
</table>
<p>Next, I needed to define these axes.</p>
<h3>Sub-Seasons</h3>
<p>
For the early, mid, and late, I divided the seasons into
three roughly equal segments using their astrological
definitions.
</p>
<table>
<thead>
<tr>
<td></td>
<th>Span</th>
<th>Start</th>
<th>End</th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="3">Winter</th>
<th>Early</th>
<td>Dec 21</td>
<td>Jan 20</td>
</tr>
<tr>
<th>Mid</th>
<td>Jan 20</td>
<td>Feb 19</td>
</tr>
<tr>
<th>Late</th>
<td>Feb 19</td>
<td>Mar 20</td>
</tr>
<tr>
<th rowspan="3">Spring</th>
<th>Early</th>
<td>Mar 20</td>
<td>Apr 19</td>
</tr>
<tr>
<th>Mid</th>
<td>Apr 19</td>
<td>May 22</td>
</tr>
<tr>
<th>Late</th>
<td>May 22</td>
<td>Jun 21</td>
</tr>
<tr>
<th rowspan="3">Summer</th>
<th>Early</th>
<td>Jun 21</td>
<td>Jul 21</td>
</tr>
<tr>
<th>Mid</th>
<td>Jul 21</td>
<td>Aug 22</td>
</tr>
<tr>
<th>Late</th>
<td>Aug 22</td>
<td>Sep 22</td>
</tr>
<tr>
<th rowspan="3">Fall</th>
<th>Early</th>
<td>Sep 22</td>
<td>Oct 22</td>
</tr>
<tr>
<th>Mid</th>
<td>Oct 22</td>
<td>Nov 21</td>
</tr>
<tr>
<th>Late</th>
<td>Nov 21</td>
<td>Dec 21</td>
</tr>
</tbody>
</table>
<p>
<small
><i
>Ranges are inclusive start and exclusive end.</i
></small
>
</p>
<h3>Historical Temperature Distributions</h3>
<p>
Next, I established a weather baseline for NYC by analyzing
temperature data based on the day of the year and the hour
of the day. I collected hourly temperature data for NYC from
January 1, 1979, to January 1, 2023, and calculated the mean
and standard deviation for every hour across the entire
year.
</p>
<p>
If you're interested in exploring this data, it's available
in the repo
<a class="secondary" href="https://github.com/x/nyc-seasons"
>here</a
>.
</p>
<pre>
import pandas as pd
weather_df = pd.read_csv("nyc_weather.csv")
weather_df["dt_datetime"] = pd.to_datetime(weather_df.dt_iso.str.replace(" UTC", ""))
weather_df["day_hour"] = weather_df.dt_datetime.dt.strftime("%j-%H")
weather_df = weather_df.groupby(by="day_hour").aggregate({"feels_like": ["mean", "std"]})
hour_temps_df = df.groupby(by="day_hour").aggregate({"feels_like": ["mean", "std"]})["feels_like"]
import json
hour_temps_json = json.dumps(hour_temps_df.to_dict("index"))</pre
>
<p>
From this baseline, we define a "hot" day as any day where
the temperature is 1.5 standard deviations above the mean,
and a "cold" day as one that falls 1.5 standard deviations
below the mean.
</p>
<p>
With this baseline for what is "normal," we can now
dynamically compare the current temperature to our
historical data. Every time the page loads, we call
<a href="https://openweathermap.org/" class="secondary"
>OpenWeatherMap.org</a
>
to get the current temperature for Times Square. This live
reading is then compared against our historical distribution
to determine if it’s unusually hot or cold.
</p>
<h3>June 2023 - Fire Season Update</h3>
<p>
After the events of June 7th, 2023, I've updated the page to
reflect the new reality. When the air quality index is 3 or
worse in the summer/spring/fall, the season is now 'Hell's
Front Porch'.
</p>
<h3>Deciding the Season</h3>
<p>
Using these features, we update the arrow based on the logic