-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdata.py
More file actions
2578 lines (2570 loc) · 77.1 KB
/
data.py
File metadata and controls
2578 lines (2570 loc) · 77.1 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
"""ORION triage target catalogue - the ground-truth dataset for fine-tuning and evaluation.
Each target is a dict with keys ``name``, ``lon``, ``lat``, ``cat`` (HIGH / MEDIUM / LOW),
and ``reason`` (human-written triage justification). The catalogue is split into three
lists by priority:
* `LOW_TARGETS`: featureless natural terrain (oceans, deserts, forests, ice).
* `MEDIUM_TARGETS`: standard human civilization (cities, suburbs, farmland).
* `HIGH_TARGETS`: extreme-scale strategic or geological anomalies.
`ALL_TARGETS` concatenates all three and is consumed by `data_gen` for
dataset generation and splitting.
See the [target morphology breakdown](../../../../guides/studies/) for the full
taxonomy of sub-categories within each priority level.
"""
LOW_TARGETS = [
# --- MORPHOLOGY 1: STANDARD VOIDS - OCEANS & WATER (20 targets) ---
{
"name": "low_ocean_pacific_nemo",
"lon": -123.39,
"lat": -48.87,
"cat": "LOW",
"reason": "Featureless deep blue oceanic expanse with no discernible landmass.",
},
{
"name": "low_ocean_atlantic_mid",
"lon": -30.00,
"lat": 0.00,
"cat": "LOW",
"reason": "Unbroken, uniform dark water surface.",
},
{
"name": "low_ocean_indian_south",
"lon": 90.00,
"lat": -40.00,
"cat": "LOW",
"reason": "Vast empty expanse of open ocean waves.",
},
{
"name": "low_ocean_arctic_ice",
"lon": 150.00,
"lat": 82.00,
"cat": "LOW",
"reason": "Dark oceanic water interspersed with natural, irregular sea ice fracturing.",
},
{
"name": "low_ocean_pacific_equator",
"lon": -140.00,
"lat": 10.00,
"cat": "LOW",
"reason": "Completely blank, featureless water topography.",
},
{
"name": "low_ocean_southern",
"lon": 0.00,
"lat": -55.00,
"cat": "LOW",
"reason": "Uniform dark marine expanse void of geometric structures.",
},
{
"name": "low_ocean_pacific_east",
"lon": -100.00,
"lat": -30.00,
"cat": "LOW",
"reason": "Empty, deep-water pelagic zone.",
},
{
"name": "low_ocean_atlantic_north",
"lon": -40.00,
"lat": 45.00,
"cat": "LOW",
"reason": "Featureless open water showing only natural wave textures.",
},
{
"name": "low_ocean_indian_equator",
"lon": 75.00,
"lat": -5.00,
"cat": "LOW",
"reason": "Uninterrupted tropical marine surface.",
},
{
"name": "low_ocean_philippine_sea",
"lon": 135.00,
"lat": 15.00,
"cat": "LOW",
"reason": "Vast expanse of open ocean devoid of human activity.",
},
{
"name": "low_ocean_tasman",
"lon": 160.00,
"lat": -40.00,
"cat": "LOW",
"reason": "Featureless deep ocean surface.",
},
{
"name": "low_ocean_bering",
"lon": 175.00,
"lat": 58.00,
"cat": "LOW",
"reason": "Empty, dark frigid marine expanse.",
},
{
"name": "low_ocean_sargasso",
"lon": -60.00,
"lat": 28.00,
"cat": "LOW",
"reason": "Uniform water surface completely lacking terrestrial features.",
},
{
"name": "low_ocean_weddell",
"lon": -45.00,
"lat": -72.00,
"cat": "LOW",
"reason": "Open water heavily textured by natural floating pack ice.",
},
{
"name": "low_ocean_barents",
"lon": 40.00,
"lat": 75.00,
"cat": "LOW",
"reason": "Featureless dark polar water.",
},
{
"name": "low_lake_superior_center",
"lon": -87.00,
"lat": 47.50,
"cat": "LOW",
"reason": "Massive unbroken expanse of deep freshwater.",
},
{
"name": "low_lake_baikal_center",
"lon": 108.00,
"lat": 53.50,
"cat": "LOW",
"reason": "Featureless dark water surface of a massive inland lake.",
},
{
"name": "low_lake_victoria_center",
"lon": 33.00,
"lat": -1.00,
"cat": "LOW",
"reason": "Empty, uniform tropical freshwater expanse.",
},
{
"name": "low_ocean_gulf_alaska",
"lon": -145.00,
"lat": 55.00,
"cat": "LOW",
"reason": "Deep, featureless northern oceanic water.",
},
{
"name": "low_ocean_coral_sea",
"lon": 155.00,
"lat": -15.00,
"cat": "LOW",
"reason": "Uniform tropical ocean surface devoid of human navigation.",
},
# --- MORPHOLOGY 2: STANDARD VOIDS - DESERTS, ICE, & CANOPY (20 targets) ---
{
"name": "low_desert_sahara_dunes",
"lon": 11.26,
"lat": 24.32,
"cat": "LOW",
"reason": "Continuous, unbroken arid sand dune geometry.",
},
{
"name": "low_desert_rub_al_khali",
"lon": 51.00,
"lat": 20.00,
"cat": "LOW",
"reason": "Endless, repetitive natural wave patterns of desert sand.",
},
{
"name": "low_desert_atacama",
"lon": -69.50,
"lat": -24.50,
"cat": "LOW",
"reason": "Hyper-arid, featureless rocky plateau.",
},
{
"name": "low_desert_gobi",
"lon": 105.00,
"lat": 43.00,
"cat": "LOW",
"reason": "Barren, textured dirt and rock landscape.",
},
{
"name": "low_desert_outback",
"lon": 130.00,
"lat": -25.00,
"cat": "LOW",
"reason": "Uniform reddish-brown terrestrial expanse.",
},
{
"name": "low_desert_kalahari",
"lon": 22.00,
"lat": -23.00,
"cat": "LOW",
"reason": "Semi-arid sandy savanna showing only natural vegetation scrub.",
},
{
"name": "low_ice_antarctica_dome_c",
"lon": 123.00,
"lat": -75.00,
"cat": "LOW",
"reason": "Vast, uniform high-albedo ice sheet devoid of anomalies.",
},
{
"name": "low_ice_greenland_center",
"lon": -40.00,
"lat": 75.00,
"cat": "LOW",
"reason": "Completely featureless, flat white glacial ice cap.",
},
{
"name": "low_ice_ross_shelf",
"lon": -170.00,
"lat": -80.00,
"cat": "LOW",
"reason": "Endless, uninterrupted frozen shelf geometry.",
},
{
"name": "low_ice_ellesmere",
"lon": -75.00,
"lat": 80.00,
"cat": "LOW",
"reason": "Remote, barren high-arctic snow and ice terrain.",
},
{
"name": "low_ice_marie_byrd",
"lon": -120.00,
"lat": -80.00,
"cat": "LOW",
"reason": "Blank, deep continental snow void.",
},
{
"name": "low_forest_amazon_deep",
"lon": -65.00,
"lat": -5.00,
"cat": "LOW",
"reason": "Dense, uninterrupted fractal canopy of deep tropical vegetation.",
},
{
"name": "low_forest_congo_basin",
"lon": 22.00,
"lat": 0.00,
"cat": "LOW",
"reason": "Continuous, featureless expanse of dense equatorial rainforest.",
},
{
"name": "low_forest_siberian_taiga",
"lon": 110.00,
"lat": 55.00,
"cat": "LOW",
"reason": "Endless, unbroken dark green boreal woodland.",
},
{
"name": "low_forest_canadian_boreal",
"lon": -100.00,
"lat": 55.00,
"cat": "LOW",
"reason": "Uniform pine forest canopy void of roads or clearings.",
},
{
"name": "low_tundra_siberia",
"lon": 100.00,
"lat": 70.00,
"cat": "LOW",
"reason": "Barren, textured rocky permafrost.",
},
{
"name": "low_tundra_nunavut",
"lon": -95.00,
"lat": 65.00,
"cat": "LOW",
"reason": "Empty Canadian shield landscape consisting of rock and scrub.",
},
{
"name": "low_steppe_tibet",
"lon": 88.00,
"lat": 34.00,
"cat": "LOW",
"reason": "High-altitude barren plateau with entirely natural topography.",
},
{
"name": "low_steppe_patagonia",
"lon": -69.00,
"lat": -48.00,
"cat": "LOW",
"reason": "Wind-swept, featureless scrubland void of human structures.",
},
{
"name": "low_steppe_mongolia",
"lon": 105.00,
"lat": 47.00,
"cat": "LOW",
"reason": "Vast, uninterrupted grassy plains devoid of roads or settlements.",
},
# --- MORPHOLOGY 3: HARD LOW - SHARP COASTLINES & BOUNDARIES (20 targets) ---
# Visual Signature: High contrast linear demarcations that look like artificial walls/docks but are just cliffs or beaches.
{
"name": "low_hard_namibia_coast",
"lon": 14.50,
"lat": -23.00,
"cat": "LOW",
"reason": "High-contrast linear boundary between barren desert and ocean.",
},
{
"name": "low_hard_norway_fjord",
"lon": 6.10,
"lat": 59.00,
"cat": "LOW",
"reason": "Sharp, jagged natural rock formations intersecting with deep water channels.",
},
{
"name": "low_hard_nullarbor_cliffs",
"lon": 130.35,
"lat": -31.58,
"cat": "LOW",
"reason": "Massive, perfectly sheer natural limestone cliff line meeting the ocean.",
},
{
"name": "low_hard_na_pali",
"lon": -159.65,
"lat": 22.17,
"cat": "LOW",
"reason": "Highly corrugated, linear natural ridgelines abruptly dropping into water.",
},
{
"name": "low_hard_skeleton_coast",
"lon": 12.50,
"lat": -19.00,
"cat": "LOW",
"reason": "Stark, featureless sandy coastline creating a sharp terrestrial/marine boundary.",
},
{
"name": "low_hard_ilulissat_fjord",
"lon": -49.80,
"lat": 69.16,
"cat": "LOW",
"reason": "Deeply incised natural water channel packed entirely with jagged calving glacial ice.",
},
{
"name": "low_hard_baja_coast",
"lon": -114.00,
"lat": 28.00,
"cat": "LOW",
"reason": "Arid, completely undeveloped linear coastline.",
},
{
"name": "low_hard_moher_cliffs",
"lon": -9.42,
"lat": 52.97,
"cat": "LOW",
"reason": "Dark, continuous sheer natural rock wall dropping vertically into the sea.",
},
{
"name": "low_hard_dover_cliffs",
"lon": 1.35,
"lat": 51.13,
"cat": "LOW",
"reason": "High-albedo natural chalk cliffs creating a sharp, unnatural-looking coastal boundary.",
},
{
"name": "low_hard_big_sur",
"lon": -121.67,
"lat": 36.16,
"cat": "LOW",
"reason": "Rugged, undeveloped linear collision between mountains and ocean.",
},
{
"name": "low_hard_perito_moreno",
"lon": -73.04,
"lat": -50.49,
"cat": "LOW",
"reason": "Perfectly sheer, linear natural ice wall dropping into dark water.",
},
{
"name": "low_hard_sian_kaan",
"lon": -87.60,
"lat": 19.30,
"cat": "LOW",
"reason": "Dense natural coastal vegetation creating a sharp marine boundary.",
},
{
"name": "low_hard_patagonia_fjords",
"lon": -74.00,
"lat": -50.00,
"cat": "LOW",
"reason": "Complex, highly articulated natural rock boundaries against isolated water.",
},
{
"name": "low_hard_kimeridge_bay",
"lon": -2.12,
"lat": 50.61,
"cat": "LOW",
"reason": "Natural, geometric linear rock ledges extending into the sea.",
},
{
"name": "low_hard_zangezur",
"lon": 46.10,
"lat": 39.10,
"cat": "LOW",
"reason": "Sharp, linear natural mountain ridge completely devoid of infrastructure.",
},
{
"name": "low_hard_andes_ridgeline",
"lon": -70.00,
"lat": -32.00,
"cat": "LOW",
"reason": "Massive continuous linear rock spine separating two topographies.",
},
{
"name": "low_hard_rift_valley_escarpment",
"lon": 36.00,
"lat": -0.50,
"cat": "LOW",
"reason": "Pronounced, sheer natural drop-off dividing a barren plain.",
},
{
"name": "low_hard_victoria_falls_gorge",
"lon": 25.85,
"lat": -17.92,
"cat": "LOW",
"reason": "Extremely sharp, zigzagging natural canyon carved into rock.",
},
{
"name": "low_hard_grand_canyon_edge",
"lon": -112.10,
"lat": 36.10,
"cat": "LOW",
"reason": "Massive, abrupt terraced geological drop-off.",
},
{
"name": "low_hard_tepuis",
"lon": -62.00,
"lat": 5.00,
"cat": "LOW",
"reason": "Perfectly flat-topped natural rock mesas with sheer vertical sides.",
},
# --- MORPHOLOGY 4: HARD LOW - GEOLOGICAL ANOMALIES (20 targets) ---
# Visual Signature: Massive circles, cones, and geometric rock formations that mimic mines, dams, or stadiums.
{
"name": "low_hard_richat_structure",
"lon": -11.40,
"lat": 21.12,
"cat": "LOW",
"reason": "Massive, perfectly circular natural concentric geological rings.",
},
{
"name": "low_hard_meteor_crater",
"lon": -111.02,
"lat": 35.02,
"cat": "LOW",
"reason": "Perfectly circular, deep terrestrial impact anomaly with raised rim.",
},
{
"name": "low_hard_mt_fuji_crater",
"lon": 138.72,
"lat": 35.36,
"cat": "LOW",
"reason": "Massive symmetrical natural cone terminating in a central circular depression.",
},
{
"name": "low_hard_uluru",
"lon": 131.03,
"lat": -25.34,
"cat": "LOW",
"reason": "Massive, highly anomalous singular elliptical rock formation in flat desert.",
},
{
"name": "low_hard_brandberg_massif",
"lon": 14.53,
"lat": -21.13,
"cat": "LOW",
"reason": "Gigantic circular mountain rising abruptly from featureless plains.",
},
{
"name": "low_hard_valles_caldera",
"lon": -106.53,
"lat": 35.87,
"cat": "LOW",
"reason": "Enormous circular volcanic depression surrounded by natural ridges.",
},
{
"name": "low_hard_ngorongoro",
"lon": 35.58,
"lat": -3.17,
"cat": "LOW",
"reason": "Massive, perfectly intact circular natural caldera wall.",
},
{
"name": "low_hard_arouane_crater",
"lon": -6.50,
"lat": 18.90,
"cat": "LOW",
"reason": "Circular natural sand depression highly contrasting with surrounding dunes.",
},
{
"name": "low_hard_spider_crater",
"lon": 126.08,
"lat": -16.73,
"cat": "LOW",
"reason": "Highly geometric natural geological spider-web formation.",
},
{
"name": "low_hard_manicouagan",
"lon": -68.70,
"lat": 51.38,
"cat": "LOW",
"reason": "Massive, perfect circular ring lake formed by natural terrestrial impact.",
},
{
"name": "low_hard_gosses_bluff",
"lon": 132.30,
"lat": -23.82,
"cat": "LOW",
"reason": "Striking circular natural rock ring protruding from desert floor.",
},
{
"name": "low_hard_tenoumer_crater",
"lon": -10.40,
"lat": 22.92,
"cat": "LOW",
"reason": "Distinct circular impact geometry interrupting linear desert sand.",
},
{
"name": "low_hard_wolves_crater",
"lon": 19.33,
"lat": -19.20,
"cat": "LOW",
"reason": "Natural, geometrically sharp circular void in remote landscape.",
},
{
"name": "low_hard_pingualuit",
"lon": -73.66,
"lat": 61.27,
"cat": "LOW",
"reason": "Perfectly circular, deep-blue water body contained by a natural rim.",
},
{
"name": "low_hard_brossel_crater",
"lon": 18.00,
"lat": -20.00,
"cat": "LOW",
"reason": "Faint, massive circular geological footprint on barren earth.",
},
{
"name": "low_hard_mt_st_helens",
"lon": -122.18,
"lat": 46.19,
"cat": "LOW",
"reason": "Massive asymmetrical natural blast zone and crater void.",
},
{
"name": "low_hard_krakatoa",
"lon": 105.42,
"lat": -6.10,
"cat": "LOW",
"reason": "Broken circular volcanic archipelago surrounding a central cone.",
},
{
"name": "low_hard_kelimutu",
"lon": 121.82,
"lat": -8.76,
"cat": "LOW",
"reason": "Three perfectly adjacent circular volcanic lakes with highly contrasting natural colors.",
},
{
"name": "low_hard_devils_tower",
"lon": -104.71,
"lat": 44.59,
"cat": "LOW",
"reason": "Hyper-isolated, massive cylindrical natural rock intrusion.",
},
{
"name": "low_hard_wave_rock",
"lon": 118.89,
"lat": -32.39,
"cat": "LOW",
"reason": "Long, perfectly smooth, sweeping natural granite curvature.",
},
# --- MORPHOLOGY 5: HARD LOW - FRACTALS & TEXTURES (20 targets) ---
# Visual Signature: Braided rivers, salt flats, and coral reefs that mimic city streets, agriculture, or airports.
{
"name": "low_hard_salar_de_uyuni",
"lon": -67.50,
"lat": -20.10,
"cat": "LOW",
"reason": "High-albedo, flat geometric polygon fracturing caused by natural salt crusts.",
},
{
"name": "low_hard_dried_riverbed",
"lon": 137.00,
"lat": -28.00,
"cat": "LOW",
"reason": "Branching, dendritic natural erosion patterns mimicking road networks.",
},
{
"name": "low_hard_lena_delta",
"lon": 126.00,
"lat": 73.00,
"cat": "LOW",
"reason": "Highly complex, sprawling fractal networks of natural river channels.",
},
{
"name": "low_hard_great_barrier_reef",
"lon": 149.19,
"lat": -19.75,
"cat": "LOW",
"reason": "Submerged, highly textured geometric organic formations in shallow water.",
},
{
"name": "low_hard_bahamas_banks",
"lon": -76.66,
"lat": 24.38,
"cat": "LOW",
"reason": "Striking linear underwater sand ridges created entirely by natural currents.",
},
{
"name": "low_hard_dakhla_oasis",
"lon": 28.95,
"lat": 25.50,
"cat": "LOW",
"reason": "Highly concentrated patch of natural green vegetation bounded sharply by desert.",
},
{
"name": "low_hard_makgadikgadi_pans",
"lon": 25.50,
"lat": -20.70,
"cat": "LOW",
"reason": "Vast, bright white natural salt flat with irregular jagged edges.",
},
{
"name": "low_hard_lake_eyre",
"lon": 137.30,
"lat": -28.40,
"cat": "LOW",
"reason": "Massive natural dry lake bed exhibiting high-contrast white and brown geometries.",
},
{
"name": "low_hard_okavango_delta",
"lon": 22.50,
"lat": -19.00,
"cat": "LOW",
"reason": "Dense, chaotic fractal patterns of natural marsh and waterways.",
},
{
"name": "low_hard_brahma_putra_braid",
"lon": 94.00,
"lat": 27.50,
"cat": "LOW",
"reason": "Massive, highly intersecting natural sandbars in a wide river system.",
},
{
"name": "low_hard_wadden_sea",
"lon": 8.00,
"lat": 53.80,
"cat": "LOW",
"reason": "Intricate tidal mudflat textures exposed during low tide.",
},
{
"name": "low_hard_yellowstone_prismatic",
"lon": -110.82,
"lat": 44.52,
"cat": "LOW",
"reason": "Highly unnatural-looking concentric rings of bright biological coloring.",
},
{
"name": "low_hard_dallol",
"lon": 40.30,
"lat": 14.24,
"cat": "LOW",
"reason": "Extreme-contrast geometric salt and acid formations in volcanic crater.",
},
{
"name": "low_hard_pamukkale",
"lon": 29.12,
"lat": 37.92,
"cat": "LOW",
"reason": "Tiered, semi-circular bright white natural travertine terraces.",
},
{
"name": "low_hard_huanglong",
"lon": 103.82,
"lat": 32.75,
"cat": "LOW",
"reason": "Dense network of small, adjacent natural geometric calcite pools.",
},
{
"name": "low_hard_bisti_badlands",
"lon": -108.25,
"lat": 36.26,
"cat": "LOW",
"reason": "Highly textured, repeating natural hoodoo rock formations.",
},
{
"name": "low_hard_chocolate_hills",
"lon": 124.16,
"lat": 9.91,
"cat": "LOW",
"reason": "Repetitive, perfectly conical natural grassy mounds.",
},
{
"name": "low_hard_giant_causeway",
"lon": -6.51,
"lat": 55.24,
"cat": "LOW",
"reason": "Dense cluster of perfectly hexagonal natural basalt columns.",
},
{
"name": "low_hard_stone_forest",
"lon": 103.32,
"lat": 24.81,
"cat": "LOW",
"reason": "Tall, tightly packed vertical natural rock pillars resembling buildings.",
},
{
"name": "low_hard_white_sands",
"lon": -106.30,
"lat": 32.80,
"cat": "LOW",
"reason": "Brilliant white undulating dunes mimicking snow or artificial surfaces.",
},
# --- MORPHOLOGY 6: SNOW, WETLANDS, INLAND SEAS, & TRANSITION ZONES (20 targets) ---
{
"name": "low_snow_karakoram_winter",
"lon": 76.51,
"lat": 35.88,
"cat": "LOW",
"reason": "Pristine high-altitude snowfield blanketing rugged peaks with no human structure.",
},
{
"name": "low_snow_alps_jungfrau",
"lon": 7.96,
"lat": 46.54,
"cat": "LOW",
"reason": "Uniform Alpine snow expanse over jagged ridgelines, no civilization.",
},
{
"name": "low_snow_aconcagua_winter",
"lon": -70.01,
"lat": -32.65,
"cat": "LOW",
"reason": "Andes high-altitude snowpack covering steep granite slopes.",
},
{
"name": "low_snow_denali_winter",
"lon": -151.01,
"lat": 63.07,
"cat": "LOW",
"reason": "Continuous Alaska Range snow blanket with no built structure.",
},
{
"name": "low_wetland_sundarbans",
"lon": 89.18,
"lat": 21.95,
"cat": "LOW",
"reason": "Dense fractal mangrove maze of natural waterways with no infrastructure.",
},
{
"name": "low_wetland_pantanal",
"lon": -56.67,
"lat": -16.45,
"cat": "LOW",
"reason": "Vast seasonally flooded grassland with sinuous natural waterways.",
},
{
"name": "low_wetland_everglades",
"lon": -80.76,
"lat": 25.79,
"cat": "LOW",
"reason": "Featureless sawgrass plain dotted with natural tree islands.",
},
{
"name": "low_wetland_mesopotamian",
"lon": 47.00,
"lat": 31.00,
"cat": "LOW",
"reason": "Marshland mosaic of reedbeds and shallow lagoons with no urban form.",
},
{
"name": "low_lake_caspian_center",
"lon": 51.00,
"lat": 41.00,
"cat": "LOW",
"reason": "Featureless inland sea surface, no shoreline visible.",
},
{
"name": "low_lake_dead_sea",
"lon": 35.45,
"lat": 31.50,
"cat": "LOW",
"reason": "Hyper-saline lake with distinctive turquoise mineral edges and no built structures.",
},
{
"name": "low_lake_aral_remnant",
"lon": 60.50,
"lat": 46.10,
"cat": "LOW",
"reason": "Remaining North Aral water body bordered by exposed seabed and salt flats.",
},
{
"name": "low_lake_salton",
"lon": -115.83,
"lat": 33.33,
"cat": "LOW",
"reason": "Isolated saline lake surrounded by barren desert.",
},
{
"name": "low_lake_chad_shrinkage",
"lon": 14.40,
"lat": 13.20,
"cat": "LOW",
"reason": "Heavily reduced freshwater lake transitioning to marsh and bare lakebed.",
},
{
"name": "low_polar_severnaya_zemlya",
"lon": 97.00,
"lat": 79.50,
"cat": "LOW",
"reason": "Russian high Arctic archipelago, glaciated and uninhabited.",
},
{
"name": "low_polar_franz_josef",
"lon": 55.00,
"lat": 81.00,
"cat": "LOW",
"reason": "Remote ice-capped Arctic islands with no human presence.",
},
{
"name": "low_polar_south_georgia",
"lon": -36.50,
"lat": -54.50,
"cat": "LOW",
"reason": "Sub-Antarctic island of glaciers and rugged unpopulated peaks.",
},
{
"name": "low_sahel_central",
"lon": 0.00,
"lat": 15.00,
"cat": "LOW",
"reason": "Semi-arid transition zone of sparse vegetation and ochre soil.",
},
{
"name": "low_sahel_chad_basin",
"lon": 17.00,
"lat": 12.00,
"cat": "LOW",
"reason": "Faded ochre savanna with scattered acacia, no human structure.",
},
{
"name": "low_plume_yangtze",
"lon": 122.50,
"lat": 31.40,
"cat": "LOW",
"reason": "Vast natural sediment discharge fan staining the open ocean.",
},
{
"name": "low_plume_amazon_mouth",
"lon": -49.50,
"lat": -0.50,
"cat": "LOW",
"reason": "Massive river sediment plume diffusing into the open Atlantic.",
},
]
MEDIUM_TARGETS = [
# --- MORPHOLOGY 1: URBAN GRIDS (20 targets) ---
# Visual Signature: Standard dense orthogonal city blocks, commercial high-rises, and tight residential networks.
{
"name": "med_city_chicago",
"lon": -87.65,
"lat": 41.88,
"cat": "MEDIUM",
"reason": "Standard orthogonal urban street grid and high-density commercial buildings.",
},
{
"name": "med_city_paris",
"lon": 2.35,
"lat": 48.85,
"cat": "MEDIUM",
"reason": "Dense, uniform historical urban block geometry and radial avenues.",
},
{
"name": "med_city_barcelona",
"lon": 2.16,
"lat": 41.38,
"cat": "MEDIUM",
"reason": "Highly repetitive, chamfered square residential block patterns.",
},
{
"name": "med_city_tokyo",
"lon": 139.65,
"lat": 35.64,
"cat": "MEDIUM",
"reason": "Extremely dense, irregular low-rise residential and commercial canopy.",
},
{
"name": "med_city_brooklyn",
"lon": -73.94,
"lat": 40.67,
"cat": "MEDIUM",
"reason": "Standard continuous terraced housing and urban neighborhood grids.",
},
{
"name": "med_city_mexico",
"lon": -99.13,
"lat": 19.43,
"cat": "MEDIUM",
"reason": "Sprawling, high-density generic urban infrastructure.",
},
{
"name": "med_city_mumbai",
"lon": 72.87,
"lat": 19.07,
"cat": "MEDIUM",
"reason": "Extremely high-density, irregular urban residential geometry.",
},
{
"name": "med_city_cairo",
"lon": 31.23,
"lat": 30.04,
"cat": "MEDIUM",
"reason": "Dense, uniform flat-roofed residential structures bounded by roads.",
},
{
"name": "med_city_buenos_aires",
"lon": -58.38,
"lat": -34.60,
"cat": "MEDIUM",
"reason": "Standard continuous square-grid urban block layout.",
},
{
"name": "med_city_london",
"lon": -0.12,
"lat": 51.49,
"cat": "MEDIUM",
"reason": "Irregular, dense historical urban street network and mixed residential.",
},
{
"name": "med_city_melbourne",
"lon": 144.96,
"lat": -37.81,
"cat": "MEDIUM",
"reason": "Orthogonal central business district bounded by standard residential sprawl.",
},
{
"name": "med_city_toronto",
"lon": -79.38,
"lat": 43.65,
"cat": "MEDIUM",
"reason": "Dense rectangular grid of commercial and residential high-rises.",
},
{
"name": "med_city_berlin",
"lon": 13.40,
"lat": 52.52,
"cat": "MEDIUM",
"reason": "Standard European mixed-density urban block layout.",
},
{
"name": "med_city_johannesburg",
"lon": 28.04,
"lat": -26.20,
"cat": "MEDIUM",
"reason": "Dense geometric urban grid transitioning into standard residential areas.",
},
{
"name": "med_city_bogota",
"lon": -74.07,
"lat": 4.71,
"cat": "MEDIUM",
"reason": "Sprawling, highly compressed urban block and street geometry.",
},
{
"name": "med_city_seoul",
"lon": 126.97,
"lat": 37.56,
"cat": "MEDIUM",
"reason": "Dense combination of orthogonal and irregular urban city blocks.",
},
{
"name": "med_city_madrid",
"lon": -3.70,
"lat": 40.41,
"cat": "MEDIUM",
"reason": "Dense historic street geometry interlocked with standard residential.",
},
{
"name": "med_city_lagos",
"lon": 3.37,
"lat": 6.52,
"cat": "MEDIUM",
"reason": "Hyper-dense, irregular urban roofing and street networks.",
},
{
"name": "med_city_tehran",