1+ """
2+ Earth Science Physiographic Features
3+
4+ Physiographic features for earth sample collection sites, based on SESAR (System for Earth Sample Registration) vocabulary
5+
6+ Generated from: earth_science/physiographic_features.yaml
7+ """
8+
9+ from __future__ import annotations
10+
11+ from typing import Dict , Any , Optional
12+ from valuesets .generators .rich_enum import RichEnum
13+
14+ class SESARPhysiographicFeature (RichEnum ):
15+ """
16+ Physiographic feature types as defined by SESAR (System for Earth Sample Registration). These describe the type of physical feature from which a sample was collected.
17+ """
18+ # Enum members
19+ ABYSSAL_FEATURE = "ABYSSAL_FEATURE"
20+ ALLUVIAL_FAN = "ALLUVIAL_FAN"
21+ ANTICLINE = "ANTICLINE"
22+ AQUIFER = "AQUIFER"
23+ ARCH = "ARCH"
24+ ARROYO = "ARROYO"
25+ BADLANDS = "BADLANDS"
26+ BANK = "BANK"
27+ BAR = "BAR"
28+ BASIN = "BASIN"
29+ BAY = "BAY"
30+ BEACH = "BEACH"
31+ BIGHT = "BIGHT"
32+ CANYON = "CANYON"
33+ CAPE = "CAPE"
34+ CAVE = "CAVE"
35+ CHANNEL = "CHANNEL"
36+ CIRQUE = "CIRQUE"
37+ CLIFF = "CLIFF"
38+ CONTINENTAL_DIVIDE = "CONTINENTAL_DIVIDE"
39+ CONTINENTAL_MARGIN = "CONTINENTAL_MARGIN"
40+ CRATER = "CRATER"
41+ DELTA = "DELTA"
42+ DRAINAGE_BASIN = "DRAINAGE_BASIN"
43+ DRUMLIN = "DRUMLIN"
44+ DUNE = "DUNE"
45+ EARTHQUAKE_FEATURE = "EARTHQUAKE_FEATURE"
46+ ESTUARY = "ESTUARY"
47+ FAULT = "FAULT"
48+ FAULT_ZONE = "FAULT_ZONE"
49+ FLAT = "FLAT"
50+ FLOODPLAIN = "FLOODPLAIN"
51+ FOLD = "FOLD"
52+ FRACTURE_ZONE = "FRACTURE_ZONE"
53+ GAP = "GAP"
54+ GULF = "GULF"
55+ GUT = "GUT"
56+ HYDROTHERMAL_VENT = "HYDROTHERMAL_VENT"
57+ ICE_MASS = "ICE_MASS"
58+ ISTHMUS = "ISTHMUS"
59+ KARST_AREA = "KARST_AREA"
60+ LAKE = "LAKE"
61+ LAVA_FIELD = "LAVA_FIELD"
62+ LEDGE = "LEDGE"
63+ MASSIF = "MASSIF"
64+ MESA = "MESA"
65+ MINERAL_DEPOSIT_AREA = "MINERAL_DEPOSIT_AREA"
66+ MORAINE = "MORAINE"
67+ MOUNTAIN = "MOUNTAIN"
68+ MOUNTAIN_RANGE = "MOUNTAIN_RANGE"
69+ MOUNTAIN_SUMMIT = "MOUNTAIN_SUMMIT"
70+ OCEAN_TRENCH = "OCEAN_TRENCH"
71+ OUTCROP = "OUTCROP"
72+ PLAIN = "PLAIN"
73+ PLATEAU = "PLATEAU"
74+ PLAYA = "PLAYA"
75+ REEF = "REEF"
76+ RIDGE = "RIDGE"
77+ RIFT_ZONE = "RIFT_ZONE"
78+ ROADCUT = "ROADCUT"
79+ SEAMOUNT = "SEAMOUNT"
80+ SEA = "SEA"
81+ STREAM = "STREAM"
82+ SUBMARINE_CANYON = "SUBMARINE_CANYON"
83+ SYNCLINE = "SYNCLINE"
84+ THERMAL_FEATURE = "THERMAL_FEATURE"
85+ VALLEY = "VALLEY"
86+ VOLCANO = "VOLCANO"
87+
88+ # Set metadata after class creation
89+ SESARPhysiographicFeature ._metadata = {
90+ "ABYSSAL_FEATURE" : {'description' : 'Deep ocean floor feature' },
91+ "ALLUVIAL_FAN" : {'description' : 'Fan-shaped deposit formed by flowing water' },
92+ "ANTICLINE" : {'description' : 'Upward-folded rock formation' },
93+ "AQUIFER" : {'description' : 'Underground layer of water-bearing rock' },
94+ "ARCH" : {'description' : 'Natural arch formation' , 'annotations' : {'note' : 'natural formation' }},
95+ "ARROYO" : {'description' : 'Steep-sided gully cut by running water' },
96+ "BADLANDS" : {'description' : 'Dry terrain with eroded sedimentary rocks' },
97+ "BANK" : {'description' : 'Raised area of seabed or riverbed' , 'annotations' : {'note' : 'hydrographic' }},
98+ "BAR" : {'description' : 'Elongated landform feature' , 'annotations' : {'note' : 'physiographic' }},
99+ "BASIN" : {'description' : "Depression in the Earth's surface" },
100+ "BAY" : {'description' : 'Body of water partly enclosed by land' },
101+ "BEACH" : {'description' : 'Landform along a body of water' },
102+ "BIGHT" : {'description' : 'Shallow bay or bend in a coastline' },
103+ "CANYON" : {'description' : 'Deep gorge with steep sides' , 'meaning' : 'ENVO:00000169' },
104+ "CAPE" : {'description' : 'Pointed land projection into water' },
105+ "CAVE" : {'description' : 'Natural underground chamber' , 'meaning' : 'ENVO:00000067' },
106+ "CHANNEL" : {'description' : 'Watercourse or strait' },
107+ "CIRQUE" : {'description' : 'Amphitheater-like valley carved by glacial erosion' },
108+ "CLIFF" : {'description' : 'Steep rock face' },
109+ "CONTINENTAL_DIVIDE" : {'description' : 'Drainage divide on a continent' },
110+ "CONTINENTAL_MARGIN" : {'description' : 'Zone between continental shelf and deep ocean' },
111+ "CRATER" : {'description' : 'Bowl-shaped depression' },
112+ "DELTA" : {'description' : 'Landform at river mouth' , 'meaning' : 'ENVO:00000101' },
113+ "DRAINAGE_BASIN" : {'description' : 'Area drained by a river system' },
114+ "DRUMLIN" : {'description' : 'Elongated hill formed by glacial action' },
115+ "DUNE" : {'description' : 'Hill of sand formed by wind or water' },
116+ "EARTHQUAKE_FEATURE" : {'description' : 'Landform created by seismic activity' },
117+ "ESTUARY" : {'description' : 'Partially enclosed coastal body of water' , 'meaning' : 'ENVO:00000045' },
118+ "FAULT" : {'description' : 'Fracture in rock with displacement' },
119+ "FAULT_ZONE" : {'description' : 'Area containing multiple faults' },
120+ "FLAT" : {'description' : 'Level land area' },
121+ "FLOODPLAIN" : {'description' : 'Flat area adjacent to a river' },
122+ "FOLD" : {'description' : 'Bend in rock layers' , 'annotations' : {'note' : 'geologic' }},
123+ "FRACTURE_ZONE" : {'description' : 'Area of crustal fractures' },
124+ "GAP" : {'description' : 'Mountain pass or opening' },
125+ "GULF" : {'description' : 'Large bay' },
126+ "GUT" : {'description' : 'Narrow water passage' },
127+ "HYDROTHERMAL_VENT" : {'description' : 'Fissure releasing geothermally heated water' , 'meaning' : 'ENVO:00000215' },
128+ "ICE_MASS" : {'description' : 'Large accumulation of ice' },
129+ "ISTHMUS" : {'description' : 'Narrow strip of land connecting two larger areas' },
130+ "KARST_AREA" : {'description' : 'Landscape formed by limestone dissolution' },
131+ "LAKE" : {'description' : 'Body of standing water' , 'meaning' : 'ENVO:00000020' },
132+ "LAVA_FIELD" : {'description' : 'Area covered by lava flows' },
133+ "LEDGE" : {'description' : 'Narrow horizontal surface projecting from rock' },
134+ "MASSIF" : {'description' : 'Compact group of mountains' },
135+ "MESA" : {'description' : 'Isolated flat-topped hill' },
136+ "MINERAL_DEPOSIT_AREA" : {'description' : 'Area with concentrated mineral deposits' },
137+ "MORAINE" : {'description' : 'Glacially formed accumulation of debris' },
138+ "MOUNTAIN" : {'description' : 'Large natural elevation' , 'meaning' : 'ENVO:00000081' },
139+ "MOUNTAIN_RANGE" : {'description' : 'Series of connected mountains' , 'meaning' : 'ENVO:00000080' },
140+ "MOUNTAIN_SUMMIT" : {'description' : 'Highest point of a mountain' },
141+ "OCEAN_TRENCH" : {'description' : 'Deep oceanic depression' },
142+ "OUTCROP" : {'description' : 'Exposed rock formation' },
143+ "PLAIN" : {'description' : 'Flat or gently rolling land' },
144+ "PLATEAU" : {'description' : 'Elevated flat area' },
145+ "PLAYA" : {'description' : 'Dried lake bed' },
146+ "REEF" : {'description' : 'Ridge of rock or coral near water surface' , 'meaning' : 'ENVO:01001899' },
147+ "RIDGE" : {'description' : 'Long narrow elevation' },
148+ "RIFT_ZONE" : {'description' : "Area where Earth's crust is pulling apart" },
149+ "ROADCUT" : {'description' : 'Artificial rock exposure along roadway' },
150+ "SEAMOUNT" : {'description' : 'Underwater mountain' , 'meaning' : 'ENVO:00000264' },
151+ "SEA" : {'description' : 'Large body of salt water' },
152+ "STREAM" : {'description' : 'Flowing body of water' },
153+ "SUBMARINE_CANYON" : {'description' : 'Steep-sided valley on seafloor' , 'meaning' : 'ENVO:00000267' },
154+ "SYNCLINE" : {'description' : 'Downward-folded rock formation' },
155+ "THERMAL_FEATURE" : {'description' : 'Geothermal feature' },
156+ "VALLEY" : {'description' : 'Low area between hills or mountains' },
157+ "VOLCANO" : {'description' : "Vent in Earth's crust through which lava erupts" , 'meaning' : 'ENVO:00000247' },
158+ }
159+
160+ __all__ = [
161+ "SESARPhysiographicFeature" ,
162+ ]
0 commit comments