valuesets 0.3.1__py3-none-any.whl
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.
Potentially problematic release.
This version of valuesets might be problematic. Click here for more details.
- valuesets/__init__.py +7 -0
- valuesets/_version.py +8 -0
- valuesets/datamodel/valuesets.py +13796 -0
- valuesets/datamodel/valuesets_dataclass.py +24503 -0
- valuesets/datamodel/valuesets_pydantic.py +13796 -0
- valuesets/enums/__init__.py +590 -0
- valuesets/enums/academic/__init__.py +1 -0
- valuesets/enums/academic/research.py +559 -0
- valuesets/enums/analytical_chemistry/__init__.py +1 -0
- valuesets/enums/analytical_chemistry/mass_spectrometry.py +198 -0
- valuesets/enums/bio/__init__.py +1 -0
- valuesets/enums/bio/biological_colors.py +238 -0
- valuesets/enums/bio/cell_cycle.py +180 -0
- valuesets/enums/bio/currency_chemicals.py +52 -0
- valuesets/enums/bio/developmental_stages.py +103 -0
- valuesets/enums/bio/genome_features.py +182 -0
- valuesets/enums/bio/genomics.py +91 -0
- valuesets/enums/bio/go_aspect.py +32 -0
- valuesets/enums/bio/go_causality.py +58 -0
- valuesets/enums/bio/go_evidence.py +129 -0
- valuesets/enums/bio/human_developmental_stages.py +62 -0
- valuesets/enums/bio/insdc_geographic_locations.py +591 -0
- valuesets/enums/bio/insdc_missing_values.py +49 -0
- valuesets/enums/bio/lipid_categories.py +67 -0
- valuesets/enums/bio/mouse_developmental_stages.py +62 -0
- valuesets/enums/bio/plant_biology.py +86 -0
- valuesets/enums/bio/plant_developmental_stages.py +54 -0
- valuesets/enums/bio/plant_sex.py +81 -0
- valuesets/enums/bio/protein_evidence.py +61 -0
- valuesets/enums/bio/proteomics_standards.py +123 -0
- valuesets/enums/bio/psi_mi.py +306 -0
- valuesets/enums/bio/relationship_to_oxygen.py +37 -0
- valuesets/enums/bio/sequence_alphabets.py +449 -0
- valuesets/enums/bio/sequence_chemistry.py +357 -0
- valuesets/enums/bio/sequencing_platforms.py +302 -0
- valuesets/enums/bio/structural_biology.py +320 -0
- valuesets/enums/bio/taxonomy.py +238 -0
- valuesets/enums/bio/trophic_levels.py +85 -0
- valuesets/enums/bio/uniprot_species.py +344 -0
- valuesets/enums/bio/viral_genome_types.py +47 -0
- valuesets/enums/bioprocessing/__init__.py +1 -0
- valuesets/enums/bioprocessing/scale_up.py +249 -0
- valuesets/enums/business/__init__.py +1 -0
- valuesets/enums/business/human_resources.py +275 -0
- valuesets/enums/business/industry_classifications.py +181 -0
- valuesets/enums/business/management_operations.py +228 -0
- valuesets/enums/business/organizational_structures.py +236 -0
- valuesets/enums/business/quality_management.py +181 -0
- valuesets/enums/business/supply_chain.py +232 -0
- valuesets/enums/chemistry/__init__.py +1 -0
- valuesets/enums/chemistry/chemical_entities.py +315 -0
- valuesets/enums/chemistry/reaction_directionality.py +65 -0
- valuesets/enums/chemistry/reactions.py +256 -0
- valuesets/enums/clinical/__init__.py +1 -0
- valuesets/enums/clinical/nih_demographics.py +177 -0
- valuesets/enums/clinical/phenopackets.py +254 -0
- valuesets/enums/common_value_sets.py +8791 -0
- valuesets/enums/computing/__init__.py +1 -0
- valuesets/enums/computing/file_formats.py +294 -0
- valuesets/enums/computing/maturity_levels.py +196 -0
- valuesets/enums/computing/mime_types.py +227 -0
- valuesets/enums/confidence_levels.py +168 -0
- valuesets/enums/contributor.py +30 -0
- valuesets/enums/core.py +42 -0
- valuesets/enums/data/__init__.py +1 -0
- valuesets/enums/data/data_absent_reason.py +53 -0
- valuesets/enums/data_science/__init__.py +1 -0
- valuesets/enums/data_science/binary_classification.py +87 -0
- valuesets/enums/data_science/emotion_classification.py +66 -0
- valuesets/enums/data_science/priority_severity.py +73 -0
- valuesets/enums/data_science/quality_control.py +46 -0
- valuesets/enums/data_science/sentiment_analysis.py +50 -0
- valuesets/enums/data_science/text_classification.py +97 -0
- valuesets/enums/demographics.py +206 -0
- valuesets/enums/ecological_interactions.py +151 -0
- valuesets/enums/energy/__init__.py +1 -0
- valuesets/enums/energy/energy.py +343 -0
- valuesets/enums/energy/fossil_fuels.py +29 -0
- valuesets/enums/energy/nuclear/__init__.py +1 -0
- valuesets/enums/energy/nuclear/nuclear_facilities.py +195 -0
- valuesets/enums/energy/nuclear/nuclear_fuel_cycle.py +96 -0
- valuesets/enums/energy/nuclear/nuclear_fuels.py +175 -0
- valuesets/enums/energy/nuclear/nuclear_operations.py +191 -0
- valuesets/enums/energy/nuclear/nuclear_regulatory.py +188 -0
- valuesets/enums/energy/nuclear/nuclear_safety.py +164 -0
- valuesets/enums/energy/nuclear/nuclear_waste.py +158 -0
- valuesets/enums/energy/nuclear/reactor_types.py +163 -0
- valuesets/enums/environmental_health/__init__.py +1 -0
- valuesets/enums/environmental_health/exposures.py +265 -0
- valuesets/enums/geography/__init__.py +1 -0
- valuesets/enums/geography/geographic_codes.py +741 -0
- valuesets/enums/health/__init__.py +12 -0
- valuesets/enums/health/vaccination.py +98 -0
- valuesets/enums/health.py +36 -0
- valuesets/enums/health_base.py +36 -0
- valuesets/enums/healthcare.py +45 -0
- valuesets/enums/industry/__init__.py +1 -0
- valuesets/enums/industry/extractive_industry.py +94 -0
- valuesets/enums/industry/mining.py +388 -0
- valuesets/enums/industry/safety_colors.py +201 -0
- valuesets/enums/investigation.py +27 -0
- valuesets/enums/materials_science/__init__.py +1 -0
- valuesets/enums/materials_science/characterization_methods.py +112 -0
- valuesets/enums/materials_science/crystal_structures.py +76 -0
- valuesets/enums/materials_science/material_properties.py +119 -0
- valuesets/enums/materials_science/material_types.py +104 -0
- valuesets/enums/materials_science/pigments_dyes.py +198 -0
- valuesets/enums/materials_science/synthesis_methods.py +109 -0
- valuesets/enums/medical/__init__.py +1 -0
- valuesets/enums/medical/clinical.py +277 -0
- valuesets/enums/medical/neuroimaging.py +119 -0
- valuesets/enums/mining_processing.py +302 -0
- valuesets/enums/physics/__init__.py +1 -0
- valuesets/enums/physics/states_of_matter.py +46 -0
- valuesets/enums/social/__init__.py +1 -0
- valuesets/enums/social/person_status.py +29 -0
- valuesets/enums/spatial/__init__.py +1 -0
- valuesets/enums/spatial/spatial_qualifiers.py +246 -0
- valuesets/enums/statistics/__init__.py +5 -0
- valuesets/enums/statistics/prediction_outcomes.py +31 -0
- valuesets/enums/statistics.py +31 -0
- valuesets/enums/time/__init__.py +1 -0
- valuesets/enums/time/temporal.py +254 -0
- valuesets/enums/units/__init__.py +1 -0
- valuesets/enums/units/measurements.py +310 -0
- valuesets/enums/visual/__init__.py +1 -0
- valuesets/enums/visual/colors.py +376 -0
- valuesets/generators/__init__.py +19 -0
- valuesets/generators/auto_slot_injector.py +280 -0
- valuesets/generators/enhanced_pydantic_generator.py +100 -0
- valuesets/generators/enum_slot_generator.py +201 -0
- valuesets/generators/modular_rich_generator.py +353 -0
- valuesets/generators/prefix_standardizer.py +198 -0
- valuesets/generators/rich_enum.py +127 -0
- valuesets/generators/rich_pydantic_generator.py +310 -0
- valuesets/generators/smart_slot_syncer.py +428 -0
- valuesets/generators/sssom_generator.py +394 -0
- valuesets/merged/merged_hierarchy.yaml +21649 -0
- valuesets/schema/README.md +3 -0
- valuesets/schema/academic/research.yaml +911 -0
- valuesets/schema/analytical_chemistry/mass_spectrometry.yaml +206 -0
- valuesets/schema/bio/bio_entities.yaml +364 -0
- valuesets/schema/bio/biological_colors.yaml +434 -0
- valuesets/schema/bio/cell_cycle.yaml +309 -0
- valuesets/schema/bio/currency_chemicals.yaml +70 -0
- valuesets/schema/bio/developmental_stages.yaml +226 -0
- valuesets/schema/bio/genome_features.yaml +342 -0
- valuesets/schema/bio/genomics.yaml +101 -0
- valuesets/schema/bio/go_aspect.yaml +39 -0
- valuesets/schema/bio/go_causality.yaml +119 -0
- valuesets/schema/bio/go_evidence.yaml +215 -0
- valuesets/schema/bio/insdc_geographic_locations.yaml +911 -0
- valuesets/schema/bio/insdc_missing_values.yaml +85 -0
- valuesets/schema/bio/lipid_categories.yaml +72 -0
- valuesets/schema/bio/plant_biology.yaml +125 -0
- valuesets/schema/bio/plant_developmental_stages.yaml +77 -0
- valuesets/schema/bio/plant_sex.yaml +108 -0
- valuesets/schema/bio/protein_evidence.yaml +63 -0
- valuesets/schema/bio/proteomics_standards.yaml +116 -0
- valuesets/schema/bio/psi_mi.yaml +400 -0
- valuesets/schema/bio/relationship_to_oxygen.yaml +46 -0
- valuesets/schema/bio/sequence_alphabets.yaml +1168 -0
- valuesets/schema/bio/sequence_chemistry.yaml +477 -0
- valuesets/schema/bio/sequencing_platforms.yaml +515 -0
- valuesets/schema/bio/structural_biology.yaml +428 -0
- valuesets/schema/bio/taxonomy.yaml +453 -0
- valuesets/schema/bio/trophic_levels.yaml +118 -0
- valuesets/schema/bio/uniprot_species.yaml +1209 -0
- valuesets/schema/bio/viral_genome_types.yaml +99 -0
- valuesets/schema/bioprocessing/scale_up.yaml +458 -0
- valuesets/schema/business/human_resources.yaml +752 -0
- valuesets/schema/business/industry_classifications.yaml +448 -0
- valuesets/schema/business/management_operations.yaml +602 -0
- valuesets/schema/business/organizational_structures.yaml +645 -0
- valuesets/schema/business/quality_management.yaml +502 -0
- valuesets/schema/business/supply_chain.yaml +688 -0
- valuesets/schema/chemistry/chemical_entities.yaml +639 -0
- valuesets/schema/chemistry/reaction_directionality.yaml +60 -0
- valuesets/schema/chemistry/reactions.yaml +442 -0
- valuesets/schema/clinical/nih_demographics.yaml +285 -0
- valuesets/schema/clinical/phenopackets.yaml +429 -0
- valuesets/schema/computing/file_formats.yaml +631 -0
- valuesets/schema/computing/maturity_levels.yaml +229 -0
- valuesets/schema/computing/mime_types.yaml +266 -0
- valuesets/schema/confidence_levels.yaml +206 -0
- valuesets/schema/contributor.yaml +30 -0
- valuesets/schema/core.yaml +55 -0
- valuesets/schema/data/data_absent_reason.yaml +82 -0
- valuesets/schema/data_science/binary_classification.yaml +125 -0
- valuesets/schema/data_science/emotion_classification.yaml +109 -0
- valuesets/schema/data_science/priority_severity.yaml +122 -0
- valuesets/schema/data_science/quality_control.yaml +68 -0
- valuesets/schema/data_science/sentiment_analysis.yaml +81 -0
- valuesets/schema/data_science/text_classification.yaml +135 -0
- valuesets/schema/demographics.yaml +238 -0
- valuesets/schema/ecological_interactions.yaml +298 -0
- valuesets/schema/energy/energy.yaml +595 -0
- valuesets/schema/energy/fossil_fuels.yaml +28 -0
- valuesets/schema/energy/nuclear/nuclear_facilities.yaml +463 -0
- valuesets/schema/energy/nuclear/nuclear_fuel_cycle.yaml +82 -0
- valuesets/schema/energy/nuclear/nuclear_fuels.yaml +421 -0
- valuesets/schema/energy/nuclear/nuclear_operations.yaml +480 -0
- valuesets/schema/energy/nuclear/nuclear_regulatory.yaml +200 -0
- valuesets/schema/energy/nuclear/nuclear_safety.yaml +352 -0
- valuesets/schema/energy/nuclear/nuclear_waste.yaml +332 -0
- valuesets/schema/energy/nuclear/reactor_types.yaml +394 -0
- valuesets/schema/environmental_health/exposures.yaml +355 -0
- valuesets/schema/generated_slots.yaml +1828 -0
- valuesets/schema/geography/geographic_codes.yaml +1018 -0
- valuesets/schema/health/vaccination.yaml +102 -0
- valuesets/schema/health.yaml +38 -0
- valuesets/schema/healthcare.yaml +53 -0
- valuesets/schema/industry/extractive_industry.yaml +89 -0
- valuesets/schema/industry/mining.yaml +888 -0
- valuesets/schema/industry/safety_colors.yaml +375 -0
- valuesets/schema/investigation.yaml +64 -0
- valuesets/schema/materials_science/characterization_methods.yaml +193 -0
- valuesets/schema/materials_science/crystal_structures.yaml +138 -0
- valuesets/schema/materials_science/material_properties.yaml +135 -0
- valuesets/schema/materials_science/material_types.yaml +151 -0
- valuesets/schema/materials_science/pigments_dyes.yaml +465 -0
- valuesets/schema/materials_science/synthesis_methods.yaml +186 -0
- valuesets/schema/medical/clinical.yaml +610 -0
- valuesets/schema/medical/neuroimaging.yaml +325 -0
- valuesets/schema/mining_processing.yaml +295 -0
- valuesets/schema/physics/states_of_matter.yaml +46 -0
- valuesets/schema/slot_mixins.yaml +143 -0
- valuesets/schema/social/person_status.yaml +28 -0
- valuesets/schema/spatial/spatial_qualifiers.yaml +466 -0
- valuesets/schema/statistics/prediction_outcomes.yaml +26 -0
- valuesets/schema/statistics.yaml +34 -0
- valuesets/schema/time/temporal.yaml +435 -0
- valuesets/schema/types.yaml +15 -0
- valuesets/schema/units/measurements.yaml +675 -0
- valuesets/schema/valuesets.yaml +100 -0
- valuesets/schema/visual/colors.yaml +778 -0
- valuesets/utils/__init__.py +6 -0
- valuesets/utils/comparison.py +102 -0
- valuesets/utils/expand_dynamic_enums.py +414 -0
- valuesets/utils/mapping_utils.py +236 -0
- valuesets/validators/__init__.py +11 -0
- valuesets/validators/enum_evaluator.py +669 -0
- valuesets/validators/oak_config.yaml +70 -0
- valuesets/validators/validate_with_ols.py +241 -0
- valuesets-0.3.1.dist-info/METADATA +395 -0
- valuesets-0.3.1.dist-info/RECORD +248 -0
- valuesets-0.3.1.dist-info/WHEEL +4 -0
- valuesets-0.3.1.dist-info/licenses/LICENSE +201 -0
|
@@ -0,0 +1,325 @@
|
|
|
1
|
+
name: neuroimaging
|
|
2
|
+
title: Neuroimaging Value Sets
|
|
3
|
+
description: 'Value sets for neuroimaging including MRI modalities, fMRI paradigms, acquisition parameters, and image analysis methods.'
|
|
4
|
+
id: https://w3id.org/valuesets/medical/neuroimaging
|
|
5
|
+
imports:
|
|
6
|
+
- linkml:types
|
|
7
|
+
prefixes:
|
|
8
|
+
linkml: https://w3id.org/linkml/
|
|
9
|
+
NCIT: http://purl.obolibrary.org/obo/NCIT_
|
|
10
|
+
DICOM: http://dicom.nema.org/dcm/
|
|
11
|
+
MMO: http://purl.obolibrary.org/obo/MMO_
|
|
12
|
+
mesh: http://id.nlm.nih.gov/mesh/
|
|
13
|
+
EDAM: http://edamontology.org/
|
|
14
|
+
CHMO: http://purl.obolibrary.org/obo/CHMO_
|
|
15
|
+
STATO: http://purl.obolibrary.org/obo/STATO_
|
|
16
|
+
valuesets: https://w3id.org/valuesets/
|
|
17
|
+
default_prefix: valuesets
|
|
18
|
+
|
|
19
|
+
slots:
|
|
20
|
+
mri_modality:
|
|
21
|
+
description: MRI imaging modality type
|
|
22
|
+
range: MRIModalityEnum
|
|
23
|
+
mri_sequence_type:
|
|
24
|
+
description: MRI pulse sequence type
|
|
25
|
+
range: MRISequenceTypeEnum
|
|
26
|
+
mri_contrast_type:
|
|
27
|
+
description: MRI contrast mechanism
|
|
28
|
+
range: MRIContrastTypeEnum
|
|
29
|
+
fmri_paradigm_type:
|
|
30
|
+
description: fMRI experimental paradigm type
|
|
31
|
+
range: FMRIParadigmTypeEnum
|
|
32
|
+
|
|
33
|
+
enums:
|
|
34
|
+
MRIModalityEnum:
|
|
35
|
+
description: MRI imaging modalities and techniques
|
|
36
|
+
permissible_values:
|
|
37
|
+
STRUCTURAL_T1:
|
|
38
|
+
title: T1-weighted structural MRI
|
|
39
|
+
description: High-resolution anatomical imaging with T1 contrast
|
|
40
|
+
meaning: NCIT:C116455
|
|
41
|
+
aliases:
|
|
42
|
+
- High Field Strength Magnetic Resonance Imaging
|
|
43
|
+
annotations:
|
|
44
|
+
contrast_mechanism: T1 relaxation
|
|
45
|
+
typical_use: anatomical reference, volumetric analysis
|
|
46
|
+
tissue_contrast: good gray/white matter contrast
|
|
47
|
+
STRUCTURAL_T2:
|
|
48
|
+
title: T2-weighted structural MRI
|
|
49
|
+
description: Structural imaging with T2 contrast
|
|
50
|
+
meaning: NCIT:C116456
|
|
51
|
+
aliases:
|
|
52
|
+
- Low Field Strength Magnetic Resonance Imaging
|
|
53
|
+
annotations:
|
|
54
|
+
contrast_mechanism: T2 relaxation
|
|
55
|
+
typical_use: pathology detection, CSF visualization
|
|
56
|
+
tissue_contrast: good fluid contrast
|
|
57
|
+
FLAIR:
|
|
58
|
+
title: Fluid-attenuated inversion recovery
|
|
59
|
+
description: T2-weighted sequence with CSF signal suppressed
|
|
60
|
+
meaning: NCIT:C82392
|
|
61
|
+
annotations:
|
|
62
|
+
contrast_mechanism: T2 with fluid suppression
|
|
63
|
+
typical_use: lesion detection, periventricular pathology
|
|
64
|
+
advantage: suppresses CSF signal
|
|
65
|
+
BOLD_FMRI:
|
|
66
|
+
title: Blood oxygen level dependent fMRI
|
|
67
|
+
description: Functional MRI based on blood oxygenation changes
|
|
68
|
+
meaning: NCIT:C17958
|
|
69
|
+
aliases:
|
|
70
|
+
- Functional Magnetic Resonance Imaging
|
|
71
|
+
annotations:
|
|
72
|
+
contrast_mechanism: BOLD signal
|
|
73
|
+
typical_use: brain activation mapping
|
|
74
|
+
temporal_resolution: seconds
|
|
75
|
+
ASL:
|
|
76
|
+
title: Arterial spin labeling
|
|
77
|
+
description: Perfusion imaging using magnetically labeled blood
|
|
78
|
+
meaning: NCIT:C116450
|
|
79
|
+
aliases:
|
|
80
|
+
- Arterial Spin Labeling Magnetic Resonance Imaging
|
|
81
|
+
annotations:
|
|
82
|
+
contrast_mechanism: arterial blood labeling
|
|
83
|
+
typical_use: cerebral blood flow measurement
|
|
84
|
+
advantage: no contrast agent required
|
|
85
|
+
DWI:
|
|
86
|
+
title: Diffusion-weighted imaging
|
|
87
|
+
description: Imaging sensitive to water molecule diffusion
|
|
88
|
+
meaning: mesh:D038524
|
|
89
|
+
annotations:
|
|
90
|
+
contrast_mechanism: water diffusion
|
|
91
|
+
typical_use: stroke detection, fiber tracking
|
|
92
|
+
parameter: apparent diffusion coefficient
|
|
93
|
+
DTI:
|
|
94
|
+
title: Diffusion tensor imaging
|
|
95
|
+
description: Advanced diffusion imaging with directional information
|
|
96
|
+
meaning: NCIT:C64862
|
|
97
|
+
annotations:
|
|
98
|
+
contrast_mechanism: directional diffusion
|
|
99
|
+
typical_use: white matter tractography
|
|
100
|
+
parameters: fractional anisotropy, mean diffusivity
|
|
101
|
+
PERFUSION_DSC:
|
|
102
|
+
title: Dynamic susceptibility contrast perfusion
|
|
103
|
+
description: Perfusion imaging using contrast agent bolus
|
|
104
|
+
meaning: NCIT:C116459
|
|
105
|
+
aliases:
|
|
106
|
+
- Secretin-Enhanced Magnetic Resonance Imaging
|
|
107
|
+
annotations:
|
|
108
|
+
contrast_mechanism: contrast agent dynamics
|
|
109
|
+
typical_use: cerebral blood flow, blood volume
|
|
110
|
+
requires: gadolinium contrast
|
|
111
|
+
PERFUSION_DCE:
|
|
112
|
+
title: Dynamic contrast-enhanced perfusion
|
|
113
|
+
description: Perfusion imaging with pharmacokinetic modeling
|
|
114
|
+
meaning: NCIT:C116458
|
|
115
|
+
aliases:
|
|
116
|
+
- Multiparametric Magnetic Resonance Imaging
|
|
117
|
+
annotations:
|
|
118
|
+
contrast_mechanism: contrast enhancement kinetics
|
|
119
|
+
typical_use: blood-brain barrier permeability
|
|
120
|
+
analysis: pharmacokinetic modeling
|
|
121
|
+
SWI:
|
|
122
|
+
title: Susceptibility-weighted imaging
|
|
123
|
+
description: High-resolution venography and iron detection
|
|
124
|
+
meaning: NCIT:C121377
|
|
125
|
+
annotations:
|
|
126
|
+
contrast_mechanism: magnetic susceptibility
|
|
127
|
+
typical_use: venography, microbleeds, iron deposits
|
|
128
|
+
strength: high field preferred
|
|
129
|
+
TASK_FMRI:
|
|
130
|
+
title: Task-based functional MRI
|
|
131
|
+
description: fMRI during specific cognitive or motor tasks
|
|
132
|
+
meaning: NCIT:C178023
|
|
133
|
+
aliases:
|
|
134
|
+
- Task Functional Magnetic Resonance Imaging
|
|
135
|
+
annotations:
|
|
136
|
+
paradigm: stimulus-response
|
|
137
|
+
typical_use: localization of brain functions
|
|
138
|
+
analysis: statistical parametric mapping
|
|
139
|
+
RESTING_STATE_FMRI:
|
|
140
|
+
title: Resting-state functional MRI
|
|
141
|
+
description: fMRI acquired at rest without explicit tasks
|
|
142
|
+
meaning: NCIT:C178024
|
|
143
|
+
aliases:
|
|
144
|
+
- Resting Functional Magnetic Resonance Imaging
|
|
145
|
+
annotations:
|
|
146
|
+
paradigm: no task
|
|
147
|
+
typical_use: functional connectivity analysis
|
|
148
|
+
networks: default mode, attention, executive
|
|
149
|
+
FUNCTIONAL_CONNECTIVITY:
|
|
150
|
+
title: Functional connectivity MRI
|
|
151
|
+
description: Analysis of temporal correlations between brain regions
|
|
152
|
+
meaning: NCIT:C116454
|
|
153
|
+
aliases:
|
|
154
|
+
- Functional Connectivity Magnetic Resonance Imaging
|
|
155
|
+
annotations:
|
|
156
|
+
analysis_type: connectivity mapping
|
|
157
|
+
typical_use: network analysis
|
|
158
|
+
metric: correlation coefficients
|
|
159
|
+
|
|
160
|
+
MRISequenceTypeEnum:
|
|
161
|
+
description: MRI pulse sequence types
|
|
162
|
+
permissible_values:
|
|
163
|
+
GRADIENT_ECHO:
|
|
164
|
+
title: Gradient echo sequence
|
|
165
|
+
description: Fast imaging sequence using gradient reversal
|
|
166
|
+
meaning: NCIT:C154542
|
|
167
|
+
aliases:
|
|
168
|
+
- Gradient Echo MRI
|
|
169
|
+
annotations:
|
|
170
|
+
speed: fast
|
|
171
|
+
typical_use: T2*, functional imaging
|
|
172
|
+
artifact_sensitivity: susceptible to magnetic field inhomogeneity
|
|
173
|
+
SPIN_ECHO:
|
|
174
|
+
title: Spin echo sequence
|
|
175
|
+
description: Sequence using 180-degree refocusing pulse
|
|
176
|
+
meaning: CHMO:0001868
|
|
177
|
+
aliases:
|
|
178
|
+
- spin echo pulse sequence
|
|
179
|
+
annotations:
|
|
180
|
+
speed: slower
|
|
181
|
+
typical_use: T2 imaging, reduced artifacts
|
|
182
|
+
artifact_resistance: good
|
|
183
|
+
EPI:
|
|
184
|
+
title: Echo planar imaging
|
|
185
|
+
description: Ultrafast imaging sequence
|
|
186
|
+
meaning: NCIT:C17558
|
|
187
|
+
annotations:
|
|
188
|
+
speed: very fast
|
|
189
|
+
typical_use: functional MRI, diffusion imaging
|
|
190
|
+
temporal_resolution: subsecond
|
|
191
|
+
MPRAGE:
|
|
192
|
+
title: Magnetization prepared rapid gradient echo
|
|
193
|
+
description: T1-weighted 3D sequence with preparation pulse
|
|
194
|
+
meaning: NCIT:C118462
|
|
195
|
+
aliases:
|
|
196
|
+
- Magnetization-Prepared Rapid Gradient Echo MRI
|
|
197
|
+
annotations:
|
|
198
|
+
image_type: T1-weighted
|
|
199
|
+
typical_use: high-resolution anatomical imaging
|
|
200
|
+
dimension: 3D
|
|
201
|
+
SPACE:
|
|
202
|
+
title: Sampling perfection with application optimized contrasts
|
|
203
|
+
description: 3D turbo spin echo sequence
|
|
204
|
+
annotations:
|
|
205
|
+
image_type: T2-weighted
|
|
206
|
+
typical_use: high-resolution T2 imaging
|
|
207
|
+
dimension: 3D
|
|
208
|
+
TRUFI:
|
|
209
|
+
title: True fast imaging with steady-state precession
|
|
210
|
+
description: Balanced steady-state free precession sequence
|
|
211
|
+
meaning: NCIT:C200534
|
|
212
|
+
aliases:
|
|
213
|
+
- Constructive Interference In Steady State
|
|
214
|
+
annotations:
|
|
215
|
+
contrast: mixed T1/T2
|
|
216
|
+
typical_use: cardiac imaging, fast scanning
|
|
217
|
+
signal: high
|
|
218
|
+
|
|
219
|
+
MRIContrastTypeEnum:
|
|
220
|
+
description: MRI image contrast mechanisms
|
|
221
|
+
permissible_values:
|
|
222
|
+
T1_WEIGHTED:
|
|
223
|
+
title: T1-weighted contrast
|
|
224
|
+
description: Image contrast based on T1 relaxation times
|
|
225
|
+
meaning: NCIT:C180727
|
|
226
|
+
aliases:
|
|
227
|
+
- T1-Weighted Magnetic Resonance Imaging
|
|
228
|
+
annotations:
|
|
229
|
+
tissue_contrast: gray matter darker than white matter
|
|
230
|
+
typical_use: anatomical structure
|
|
231
|
+
T2_WEIGHTED:
|
|
232
|
+
title: T2-weighted contrast
|
|
233
|
+
description: Image contrast based on T2 relaxation times
|
|
234
|
+
meaning: NCIT:C180729
|
|
235
|
+
aliases:
|
|
236
|
+
- T2-Weighted Magnetic Resonance Imaging
|
|
237
|
+
annotations:
|
|
238
|
+
tissue_contrast: CSF bright, gray matter brighter than white
|
|
239
|
+
typical_use: pathology detection
|
|
240
|
+
T2_STAR:
|
|
241
|
+
title: T2*-weighted contrast
|
|
242
|
+
description: Image contrast sensitive to magnetic susceptibility
|
|
243
|
+
meaning: NCIT:C156447
|
|
244
|
+
aliases:
|
|
245
|
+
- T2 (Observed)-Weighted Imaging
|
|
246
|
+
annotations:
|
|
247
|
+
sensitivity: blood, iron, air-tissue interfaces
|
|
248
|
+
typical_use: functional imaging, venography
|
|
249
|
+
PROTON_DENSITY:
|
|
250
|
+
title: Proton density weighted
|
|
251
|
+
description: Image contrast based on hydrogen density
|
|
252
|
+
meaning: NCIT:C170797
|
|
253
|
+
aliases:
|
|
254
|
+
- Proton Density MRI
|
|
255
|
+
annotations:
|
|
256
|
+
tissue_contrast: proportional to water content
|
|
257
|
+
typical_use: joint imaging, some brain pathology
|
|
258
|
+
DIFFUSION_WEIGHTED:
|
|
259
|
+
title: Diffusion-weighted contrast
|
|
260
|
+
description: Image contrast based on water diffusion
|
|
261
|
+
meaning: NCIT:C111116
|
|
262
|
+
aliases:
|
|
263
|
+
- Diffusion Weighted Imaging
|
|
264
|
+
annotations:
|
|
265
|
+
sensitivity: molecular motion
|
|
266
|
+
typical_use: stroke, tumor cellularity
|
|
267
|
+
PERFUSION_WEIGHTED:
|
|
268
|
+
title: Perfusion-weighted contrast
|
|
269
|
+
description: Image contrast based on blood flow dynamics
|
|
270
|
+
meaning: mesh:D000098642
|
|
271
|
+
annotations:
|
|
272
|
+
measurement: cerebral blood flow/volume
|
|
273
|
+
typical_use: stroke, tumor vascularity
|
|
274
|
+
|
|
275
|
+
FMRIParadigmTypeEnum:
|
|
276
|
+
description: fMRI experimental paradigm types
|
|
277
|
+
permissible_values:
|
|
278
|
+
BLOCK_DESIGN:
|
|
279
|
+
title: Block design paradigm
|
|
280
|
+
description: Alternating blocks of task and rest conditions
|
|
281
|
+
meaning: STATO:0000046
|
|
282
|
+
annotations:
|
|
283
|
+
duration: typically 15-30 seconds per block
|
|
284
|
+
advantage: high statistical power
|
|
285
|
+
typical_use: robust activation detection
|
|
286
|
+
EVENT_RELATED:
|
|
287
|
+
title: Event-related design
|
|
288
|
+
description: Brief stimuli presented at varying intervals
|
|
289
|
+
meaning: EDAM:topic_3678
|
|
290
|
+
aliases:
|
|
291
|
+
- Experimental design and studies
|
|
292
|
+
annotations:
|
|
293
|
+
duration: single events (seconds)
|
|
294
|
+
advantage: flexible timing, event separation
|
|
295
|
+
typical_use: studying cognitive processes
|
|
296
|
+
MIXED_DESIGN:
|
|
297
|
+
title: Mixed block and event-related design
|
|
298
|
+
description: Combination of block and event-related elements
|
|
299
|
+
meaning: EDAM:topic_3678
|
|
300
|
+
aliases:
|
|
301
|
+
- Experimental design and studies
|
|
302
|
+
annotations:
|
|
303
|
+
flexibility: high
|
|
304
|
+
advantage: sustained and transient responses
|
|
305
|
+
complexity: high
|
|
306
|
+
RESTING_STATE:
|
|
307
|
+
title: Resting state paradigm
|
|
308
|
+
description: No explicit task, spontaneous brain activity
|
|
309
|
+
meaning: NCIT:C178024
|
|
310
|
+
aliases:
|
|
311
|
+
- Resting Functional Magnetic Resonance Imaging
|
|
312
|
+
annotations:
|
|
313
|
+
instruction: rest, eyes open/closed
|
|
314
|
+
duration: typically 5-10 minutes
|
|
315
|
+
analysis: functional connectivity
|
|
316
|
+
NATURALISTIC:
|
|
317
|
+
title: Naturalistic paradigm
|
|
318
|
+
description: Ecologically valid stimuli (movies, stories)
|
|
319
|
+
meaning: EDAM:topic_3678
|
|
320
|
+
aliases:
|
|
321
|
+
- Experimental design and studies
|
|
322
|
+
annotations:
|
|
323
|
+
stimulus_type: complex, realistic
|
|
324
|
+
advantage: ecological validity
|
|
325
|
+
analysis: inter-subject correlation
|
|
@@ -0,0 +1,295 @@
|
|
|
1
|
+
name: mining_processing
|
|
2
|
+
title: Mining and Mineral Processing Value Sets
|
|
3
|
+
description: Value sets for mining operations, mineral processing, beneficiation, and in-situ extraction, including bioleaching
|
|
4
|
+
and autonomous mining systems.
|
|
5
|
+
id: https://w3id.org/valuesets/mining-processing
|
|
6
|
+
version: 1.0.0
|
|
7
|
+
status: release
|
|
8
|
+
imports:
|
|
9
|
+
- linkml:types
|
|
10
|
+
- ./core
|
|
11
|
+
prefixes:
|
|
12
|
+
linkml: https://w3id.org/linkml/
|
|
13
|
+
ENVO: http://purl.obolibrary.org/obo/ENVO_
|
|
14
|
+
CHEBI: http://purl.obolibrary.org/obo/CHEBI_
|
|
15
|
+
NCBITaxon: http://purl.obolibrary.org/obo/NCBITaxon_
|
|
16
|
+
OBI: http://purl.obolibrary.org/obo/OBI_
|
|
17
|
+
PATO: http://purl.obolibrary.org/obo/PATO_
|
|
18
|
+
valuesets: https://w3id.org/valuesets/
|
|
19
|
+
default_prefix: valuesets
|
|
20
|
+
default_curi_maps:
|
|
21
|
+
- semweb_context
|
|
22
|
+
slots:
|
|
23
|
+
mineralogy_feedstock:
|
|
24
|
+
description: Types of mineral feedstock sources for extraction and processing operations, including primary and secondary
|
|
25
|
+
sources
|
|
26
|
+
range: MineralogyFeedstockClass
|
|
27
|
+
required: true
|
|
28
|
+
comments:
|
|
29
|
+
- Required field for mining operation records
|
|
30
|
+
- Manual customization - do not modify
|
|
31
|
+
beneficiation_pathway:
|
|
32
|
+
description: Methods for mineral separation and concentration aligned with advanced ore processing initiatives (AOI-2)
|
|
33
|
+
range: BeneficiationPathway
|
|
34
|
+
in_situ_chemistry_regime:
|
|
35
|
+
description: Chemical leaching systems for in-situ extraction with associated parameters including pH, Eh, temperature,
|
|
36
|
+
and ionic strength
|
|
37
|
+
range: InSituChemistryRegime
|
|
38
|
+
extractable_target_element:
|
|
39
|
+
description: Target elements for extraction, particularly rare earth elements (REE) and critical minerals
|
|
40
|
+
range: ExtractableTargetElement
|
|
41
|
+
multivalued: true
|
|
42
|
+
sensor_while_drilling_feature:
|
|
43
|
+
description: Measurement while drilling (MWD) and logging while drilling (LWD) features for orebody ML and geosteering
|
|
44
|
+
applications
|
|
45
|
+
range: SensorWhileDrillingFeature
|
|
46
|
+
multivalued: true
|
|
47
|
+
process_performance_metric:
|
|
48
|
+
description: Key performance indicators for mining and processing operations tied to SMART milestones and sustainability
|
|
49
|
+
goals
|
|
50
|
+
range: ProcessPerformanceMetric
|
|
51
|
+
multivalued: true
|
|
52
|
+
bioleach_organism:
|
|
53
|
+
description: Microorganisms used in bioleaching and biomining operations, including engineered strains
|
|
54
|
+
range: BioleachOrganism
|
|
55
|
+
bioleach_mode:
|
|
56
|
+
description: Mechanisms of bioleaching including indirect and direct bacterial action
|
|
57
|
+
range: BioleachMode
|
|
58
|
+
autonomy_level:
|
|
59
|
+
description: Levels of autonomy for mining systems including drilling, hauling, and sorting robots (relevant for Topic
|
|
60
|
+
1 initiatives)
|
|
61
|
+
range: AutonomyLevel
|
|
62
|
+
regulatory_constraint:
|
|
63
|
+
description: Regulatory and community constraints affecting mining operations, particularly for in-situ extraction and
|
|
64
|
+
community engagement
|
|
65
|
+
range: RegulatoryConstraint
|
|
66
|
+
multivalued: true
|
|
67
|
+
enums:
|
|
68
|
+
MineralogyFeedstockClass:
|
|
69
|
+
description: 'Types of mineral feedstock sources for extraction and processing operations, including primary and secondary
|
|
70
|
+
sources.
|
|
71
|
+
|
|
72
|
+
'
|
|
73
|
+
permissible_values:
|
|
74
|
+
HARDROCK_PRIMARY:
|
|
75
|
+
title: HARDROCK_PRIMARY
|
|
76
|
+
description: Primary ore from hardrock mining operations
|
|
77
|
+
TAILINGS_LEGACY:
|
|
78
|
+
title: TAILINGS_LEGACY
|
|
79
|
+
description: Historical mine tailings available for reprocessing
|
|
80
|
+
WASTE_PILES:
|
|
81
|
+
title: WASTE_PILES
|
|
82
|
+
description: Accumulated mining waste materials
|
|
83
|
+
COAL_BYPRODUCT:
|
|
84
|
+
title: COAL_BYPRODUCT
|
|
85
|
+
description: Byproducts from coal mining and processing
|
|
86
|
+
E_WASTE:
|
|
87
|
+
title: E_WASTE
|
|
88
|
+
description: Electronic waste containing recoverable metals
|
|
89
|
+
BRINES:
|
|
90
|
+
title: BRINES
|
|
91
|
+
description: Saline water sources containing dissolved minerals
|
|
92
|
+
BeneficiationPathway:
|
|
93
|
+
description: 'Methods for mineral separation and concentration aligned with advanced ore processing initiatives (AOI-2).
|
|
94
|
+
|
|
95
|
+
'
|
|
96
|
+
permissible_values:
|
|
97
|
+
ORE_SORTING:
|
|
98
|
+
description: Sensor-based sorting of ore particles
|
|
99
|
+
DENSE_MEDIUM_SEPARATION:
|
|
100
|
+
description: Gravity separation using dense media
|
|
101
|
+
MICROWAVE_PREWEAKENING:
|
|
102
|
+
description: Microwave treatment to weaken ore structure
|
|
103
|
+
ELECTRIC_PULSE_PREWEAKENING:
|
|
104
|
+
description: High-voltage electric pulse fragmentation
|
|
105
|
+
GRINDING_DYNAMIC:
|
|
106
|
+
description: Dynamic grinding optimization systems
|
|
107
|
+
ELECTROSTATIC_SEP:
|
|
108
|
+
description: Electrostatic separation of minerals
|
|
109
|
+
MAGNETIC_SEP:
|
|
110
|
+
description: Magnetic separation of ferromagnetic minerals
|
|
111
|
+
FLOTATION_LOW_H2O:
|
|
112
|
+
description: Low-water flotation processes
|
|
113
|
+
BIO_BENEFICIATION:
|
|
114
|
+
description: Biological methods for mineral beneficiation
|
|
115
|
+
InSituChemistryRegime:
|
|
116
|
+
description: 'Chemical leaching systems for in-situ extraction with associated parameters including pH, Eh, temperature,
|
|
117
|
+
and ionic strength.
|
|
118
|
+
|
|
119
|
+
'
|
|
120
|
+
permissible_values:
|
|
121
|
+
ACIDIC_SULFATE:
|
|
122
|
+
title: ACIDIC_SULFATE
|
|
123
|
+
description: Sulfuric acid-based leaching system
|
|
124
|
+
ACIDIC_CHLORIDE:
|
|
125
|
+
title: ACIDIC_CHLORIDE
|
|
126
|
+
description: Hydrochloric acid or chloride-based leaching
|
|
127
|
+
AMMONIA_BASED:
|
|
128
|
+
title: AMMONIA_BASED
|
|
129
|
+
description: Ammonia or ammonium-based leaching system
|
|
130
|
+
ORGANIC_ACID:
|
|
131
|
+
description: Organic acid leaching (citric, oxalic, etc.)
|
|
132
|
+
BIOLEACH_SULFUR_OXIDIZING:
|
|
133
|
+
description: Bioleaching using sulfur-oxidizing bacteria
|
|
134
|
+
BIOLEACH_IRON_OXIDIZING:
|
|
135
|
+
description: Bioleaching using iron-oxidizing bacteria
|
|
136
|
+
ExtractableTargetElement:
|
|
137
|
+
description: 'Target elements for extraction, particularly rare earth elements (REE) and critical minerals.
|
|
138
|
+
|
|
139
|
+
'
|
|
140
|
+
permissible_values:
|
|
141
|
+
REE_LA:
|
|
142
|
+
title: REE_LA
|
|
143
|
+
description: Lanthanum
|
|
144
|
+
REE_CE:
|
|
145
|
+
title: REE_CE
|
|
146
|
+
description: Cerium
|
|
147
|
+
REE_PR:
|
|
148
|
+
title: REE_PR
|
|
149
|
+
description: Praseodymium
|
|
150
|
+
REE_ND:
|
|
151
|
+
title: REE_ND
|
|
152
|
+
description: Neodymium
|
|
153
|
+
REE_PM:
|
|
154
|
+
title: REE_PM
|
|
155
|
+
description: Promethium
|
|
156
|
+
REE_SM:
|
|
157
|
+
title: REE_SM
|
|
158
|
+
description: Samarium
|
|
159
|
+
REE_EU:
|
|
160
|
+
title: REE_EU
|
|
161
|
+
description: Europium
|
|
162
|
+
REE_GD:
|
|
163
|
+
title: REE_GD
|
|
164
|
+
description: Gadolinium
|
|
165
|
+
REE_TB:
|
|
166
|
+
title: REE_TB
|
|
167
|
+
description: Terbium
|
|
168
|
+
REE_DY:
|
|
169
|
+
title: REE_DY
|
|
170
|
+
description: Dysprosium
|
|
171
|
+
REE_HO:
|
|
172
|
+
title: REE_HO
|
|
173
|
+
description: Holmium
|
|
174
|
+
REE_ER:
|
|
175
|
+
title: REE_ER
|
|
176
|
+
description: Erbium
|
|
177
|
+
REE_TM:
|
|
178
|
+
title: REE_TM
|
|
179
|
+
description: Thulium
|
|
180
|
+
REE_YB:
|
|
181
|
+
title: REE_YB
|
|
182
|
+
description: Ytterbium
|
|
183
|
+
REE_LU:
|
|
184
|
+
title: REE_LU
|
|
185
|
+
description: Lutetium
|
|
186
|
+
SC:
|
|
187
|
+
title: SC
|
|
188
|
+
description: Scandium
|
|
189
|
+
CO:
|
|
190
|
+
title: CO
|
|
191
|
+
description: Cobalt
|
|
192
|
+
NI:
|
|
193
|
+
title: NI
|
|
194
|
+
description: Nickel
|
|
195
|
+
LI:
|
|
196
|
+
title: LI
|
|
197
|
+
description: Lithium
|
|
198
|
+
SensorWhileDrillingFeature:
|
|
199
|
+
description: 'Measurement while drilling (MWD) and logging while drilling (LWD) features for orebody ML and geosteering
|
|
200
|
+
applications.
|
|
201
|
+
|
|
202
|
+
'
|
|
203
|
+
permissible_values:
|
|
204
|
+
WOB:
|
|
205
|
+
description: Weight on bit measurement
|
|
206
|
+
ROP:
|
|
207
|
+
description: Rate of penetration
|
|
208
|
+
TORQUE:
|
|
209
|
+
description: Rotational torque measurement
|
|
210
|
+
MWD_GAMMA:
|
|
211
|
+
description: Gamma ray logging while drilling
|
|
212
|
+
MWD_RESISTIVITY:
|
|
213
|
+
description: Resistivity logging while drilling
|
|
214
|
+
MUD_LOSS:
|
|
215
|
+
description: Drilling mud loss measurement
|
|
216
|
+
VIBRATION:
|
|
217
|
+
description: Drill string vibration monitoring
|
|
218
|
+
RSS_ANGLE:
|
|
219
|
+
description: Rotary steerable system angle
|
|
220
|
+
ProcessPerformanceMetric:
|
|
221
|
+
description: 'Key performance indicators for mining and processing operations tied to SMART milestones and sustainability
|
|
222
|
+
goals.
|
|
223
|
+
|
|
224
|
+
'
|
|
225
|
+
permissible_values:
|
|
226
|
+
RECOVERY_PCT:
|
|
227
|
+
description: Percentage recovery of target material
|
|
228
|
+
SELECTIVITY_INDEX:
|
|
229
|
+
description: Selectivity index for separation processes
|
|
230
|
+
SPECIFIC_ENERGY_KWH_T:
|
|
231
|
+
description: Specific energy consumption in kWh per tonne
|
|
232
|
+
WATER_INTENSITY_L_T:
|
|
233
|
+
description: Water usage intensity in liters per tonne
|
|
234
|
+
REAGENT_INTENSITY_KG_T:
|
|
235
|
+
description: Reagent consumption in kg per tonne
|
|
236
|
+
CO2E_KG_T:
|
|
237
|
+
description: CO2 equivalent emissions in kg per tonne
|
|
238
|
+
TAILINGS_MASS_REDUCTION_PCT:
|
|
239
|
+
description: Percentage reduction in tailings mass
|
|
240
|
+
BioleachOrganism:
|
|
241
|
+
description: 'Microorganisms used in bioleaching and biomining operations, including engineered strains.
|
|
242
|
+
|
|
243
|
+
'
|
|
244
|
+
permissible_values:
|
|
245
|
+
ACIDITHIOBACILLUS_FERROOXIDANS:
|
|
246
|
+
description: Iron and sulfur oxidizing bacterium
|
|
247
|
+
meaning: NCBITaxon:920
|
|
248
|
+
LEPTOSPIRILLUM_FERROOXIDANS:
|
|
249
|
+
description: Iron oxidizing bacterium
|
|
250
|
+
meaning: NCBITaxon:180
|
|
251
|
+
ASPERGILLUS_NIGER:
|
|
252
|
+
description: Organic acid producing fungus
|
|
253
|
+
meaning: NCBITaxon:5061
|
|
254
|
+
ENGINEERED_STRAIN:
|
|
255
|
+
description: Genetically modified organism for enhanced bioleaching
|
|
256
|
+
BioleachMode:
|
|
257
|
+
description: 'Mechanisms of bioleaching including indirect and direct bacterial action.
|
|
258
|
+
|
|
259
|
+
'
|
|
260
|
+
permissible_values:
|
|
261
|
+
INDIRECT_BIOLEACH_ORGANIC_ACIDS:
|
|
262
|
+
description: Indirect bioleaching through organic acid production
|
|
263
|
+
SULFUR_OXIDATION:
|
|
264
|
+
description: Direct bacterial oxidation of sulfur compounds
|
|
265
|
+
IRON_OXIDATION:
|
|
266
|
+
description: Direct bacterial oxidation of iron compounds
|
|
267
|
+
AutonomyLevel:
|
|
268
|
+
description: 'Levels of autonomy for mining systems including drilling, hauling, and sorting robots (relevant for Topic
|
|
269
|
+
1 initiatives).
|
|
270
|
+
|
|
271
|
+
'
|
|
272
|
+
permissible_values:
|
|
273
|
+
ASSISTIVE:
|
|
274
|
+
description: Human operator with assistive technologies
|
|
275
|
+
SUPERVISED_AUTONOMY:
|
|
276
|
+
description: Autonomous operation with human supervision
|
|
277
|
+
SEMI_AUTONOMOUS:
|
|
278
|
+
description: Partial autonomy with human intervention capability
|
|
279
|
+
FULLY_AUTONOMOUS:
|
|
280
|
+
description: Complete autonomous operation without human intervention
|
|
281
|
+
RegulatoryConstraint:
|
|
282
|
+
description: 'Regulatory and community constraints affecting mining operations, particularly for in-situ extraction and
|
|
283
|
+
community engagement.
|
|
284
|
+
|
|
285
|
+
'
|
|
286
|
+
permissible_values:
|
|
287
|
+
AQUIFER_PROTECTION:
|
|
288
|
+
title: AQUIFER_PROTECTION
|
|
289
|
+
description: Requirements for groundwater and aquifer protection
|
|
290
|
+
EMISSIONS_CAP:
|
|
291
|
+
description: Limits on atmospheric emissions
|
|
292
|
+
CULTURAL_HERITAGE_ZONE:
|
|
293
|
+
description: Protection of cultural heritage sites
|
|
294
|
+
WATER_RIGHTS_LIMIT:
|
|
295
|
+
description: Restrictions based on water usage rights
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
name: valuesets-physics-states-of-matter
|
|
2
|
+
title: valuesets-physics-states-of-matter
|
|
3
|
+
description: Physics-related value sets for states of matter
|
|
4
|
+
id: https://w3id.org/valuesets/physics/states-of-matter
|
|
5
|
+
prefixes:
|
|
6
|
+
# linkml_common: https://w3id.org/valuesets/
|
|
7
|
+
linkml: https://w3id.org/linkml/
|
|
8
|
+
AFO: http://purl.allotrope.org/ontologies/quality#
|
|
9
|
+
SNOMED: http://snomed.info/id/
|
|
10
|
+
valuesets: https://w3id.org/valuesets/
|
|
11
|
+
default_prefix: valuesets
|
|
12
|
+
slots:
|
|
13
|
+
state_of_matter:
|
|
14
|
+
description: The physical state or phase of matter
|
|
15
|
+
range: StateOfMatterEnum
|
|
16
|
+
enums:
|
|
17
|
+
StateOfMatterEnum:
|
|
18
|
+
description: The physical state or phase of matter
|
|
19
|
+
permissible_values:
|
|
20
|
+
SOLID:
|
|
21
|
+
description: A state of matter where particles are closely packed together with fixed positions
|
|
22
|
+
meaning: AFO:AFQ_0000112
|
|
23
|
+
LIQUID:
|
|
24
|
+
description: A nearly incompressible fluid that conforms to the shape of its container
|
|
25
|
+
meaning: AFO:AFQ_0000113
|
|
26
|
+
GAS:
|
|
27
|
+
description: A compressible fluid that expands to fill its container
|
|
28
|
+
meaning: AFO:AFQ_0000114
|
|
29
|
+
PLASMA:
|
|
30
|
+
description: An ionized gas with freely moving charged particles
|
|
31
|
+
meaning: AFO:AFQ_0000115
|
|
32
|
+
BOSE_EINSTEIN_CONDENSATE:
|
|
33
|
+
description: A state of matter formed at extremely low temperatures where particles occupy the same quantum state
|
|
34
|
+
FERMIONIC_CONDENSATE:
|
|
35
|
+
description: A superfluid phase formed by fermionic particles at extremely low temperatures
|
|
36
|
+
SUPERCRITICAL_FLUID:
|
|
37
|
+
description: A state where distinct liquid and gas phases do not exist
|
|
38
|
+
SUPERFLUID:
|
|
39
|
+
description: A phase of matter with zero viscosity
|
|
40
|
+
SUPERSOLID:
|
|
41
|
+
description: A spatially ordered material with superfluid properties
|
|
42
|
+
QUARK_GLUON_PLASMA:
|
|
43
|
+
description: An extremely hot phase where quarks and gluons are not confined
|
|
44
|
+
license: MIT
|
|
45
|
+
see_also:
|
|
46
|
+
- https://linkml.github.io/valuesets
|