Datasets:

Modalities:
Image
Languages:
English
Tags:
image
DOI:
License:
Denny Schaedig commited on
Commit
d6e8a32
·
1 Parent(s): 46a0f43

Updating the data fields and examples to reflect the final formatting of the dataset

Browse files
Files changed (1) hide show
  1. README.md +22 -24
README.md CHANGED
@@ -170,34 +170,32 @@ The dataset supports **image classification and regression** tasks, **generative
170
 
171
  Example:
172
 
173
- {
174
- "image": "preprocessed/magnified_profiles/image_1031.png",
175
- "datatype": "magnified_profiles"
176
- "site": 1,
177
- "column": 1,
178
- "core": 3,
179
- "segment": 1,
180
- "core_temperature": 42.8,
181
- "air_temperature": 22.0,
182
- "snowpack_depth": 110.0,
183
- "core_depth": 30.0,
184
- "slope_face": 102.0,
185
- "slope_gradient": 12.0,
186
- "avalanches_spotted": 0.0,
187
- "wind_loading": "high",
188
- "ascending_mountain": "Buffalo Mountain",
189
- "city_state_country": "Silverthorne, Colorado, USA",
190
- "collector": "Denny Schaedig",
191
- "coordinates": [39.6222, -106.1139],
192
- "date": "1/25/25",
193
- "time": "10:11 AM MST",
194
- "notes": "No avalanches nearby spotted, collected on the outskirts of a fire break 15 meters from the treeline, on way to Buffalo and Red Mountain"
195
- }
196
 
197
  ### Data Fields
198
 
199
  - `image`: The image location.
200
- - `label`: The sample location, avalanche risk, slope angle, average week temperature, wind loading, etc.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
201
 
202
  ## Usage
203
 
 
170
 
171
  Example:
172
 
173
+ {'image': <PIL.PngImagePlugin.PngImageFile image mode=RGB size=500x300 at 0x138F7BD70>,'file_path': 'preprocessed/cores/image_1.png', 'datatype': 0, 'site': 0, 'column': 1, 'core': 1, 'segment': -1, 'core_temperature': 41.0, 'air_temperature': 7.0, 'ascending_mountain': 'Loveland Pass', 'city_state_country': 'Silver Plume, Colorado, USA', 'collector': 'Denny Schaedig', 'coordinates': [39.65999984741211, -105.87999725341797], 'date': '1/12/25', 'time': '11:40 AM MST', 'snowpack_depth': 140.0, 'core_depth': 10.0, 'slope_face': 30.0, 'slope_angle': 11.0, 'avalanches_spotted': 2, 'wind_loading': 3, 'notes': 'Pilot using slightly modified coring method that took too large segment for snow profile picturing, advised not to use in higher level models. Two avalanche on south face nearby, partially cloudy with light snow in the last 24 hours. Lots of wind loading on eastern features.'}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
174
 
175
  ### Data Fields
176
 
177
  - `image`: The image location.
178
+ - `file_path`: Relative filepath of the image within the dataset repo
179
+ - `datatype`: The datatype of the image (i.e. core, profile, magnified_profile, crystal_card)
180
+ - `site`: The site number data was collected from
181
+ - `column`: The snowpack column number data was collected from
182
+ - `core`: The snowpack column number data was collected from
183
+ - `segment`: The segment number data was collected from
184
+ - `core_temperature`: Core temperature recorded for the core/profile
185
+ - `air_temperature`: Air temperature recorded at the start of the site collection
186
+ - `ascending_mountain`: The mountain on approach to the collection site
187
+ - `city_state_country`: City, state and country the site was closest too
188
+ - `collector`: Name of the person collecting data
189
+ - `coordinates`: Coordinates of the snowpit samples was collected from
190
+ - `date`: Date the snowpit was dug and sampled
191
+ - `time`: Time the snowpit collection started
192
+ - `snowpack_depth`: Depth of the snowpack in cm
193
+ - `core_depth`: Depth of the core sampled from in cm
194
+ - `slope_face`: The slope face angle.
195
+ - `slope_angle`: The angle of the slope.
196
+ - `avalanches_spotted`: Number of avalanches spotted on ascending mountain
197
+ - `wind_loading`: Level of wind loading features observed on nearby mountains
198
+ - `notes`: Additional notes provided by the collector about data collection from the site and it's nearby surroundings
199
 
200
  ## Usage
201