Datasets:

Modalities:
Image
ArXiv:
tmanzini commited on
Commit
eef133b
·
verified ·
1 Parent(s): 8d69930

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +56 -0
README.md ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: The CRASAR sUAS Disaster Response Overhead Inspection Dataset
3
+ size_categories:
4
+ - 10K<n<100K
5
+ ---
6
+ # The CRASAR sUAS \[D\]isaster \[R\]esponse \[O\]verhead \[I\]nspection \[D\]ata\[s\]et
7
+
8
+ This dataset contains 52 orthomosaics containing 21716 building polygons collected from 10 different disasters, totaling 67 gigapixels of imagery.
9
+ Building polygons were sourced from Microsoft's US Building Footprint's Dataset \[[1](https://github.com/microsoft/USBuildingFootprints)\], and in some cases where building polygons were added manually by the authors.
10
+ Each building polygon has been annotated using the Joint Damage Scale \[[2](https://arxiv.org/abs/1911.09296)\] and translationally aligned for model training.
11
+ The dataset has been split into test and train at the disaster level with 6 disasters in the train set, and 4 disasters in the test set.
12
+ A summary of the dataset, grouped by disaster and ordered by area, is included below for reference.
13
+
14
+ | Disaster | Area (mi^2) | Gigapixels | Building Polygons | Count | Test or Train |
15
+ | ------------------------- | --------------- | --------------- | ----------------- | ------ | ------------- |
16
+ | Hurricane Ian | 12.61208547 | 30.7383172 | 14326 | 25 | Train |
17
+ | Mayfield Tornado | 3.251805677 | 9.698707535 | 2036 | 3 | Test |
18
+ | Kilauea Eruption | 2.220805735 | 1.121020488 | 385 | 3 | Train |
19
+ | Hurricane Idalia | 2.195681966 | 0.351551451 | 782 | 2 | Test |
20
+ | Hurricane Ida | 1.984446408 | 6.743893458 | 1095 | 5 | Train |
21
+ | Hurricane Michael | 1.396539933 | 9.450281054 | 1145 | 2 | Test |
22
+ | Hurricane Harvey | 1.001818793 | 5.075368273 | 1336 | 4 | Train |
23
+ | Hurricane Laura | 0.904199331 | 1.4456527 | 478 | 2 | Train |
24
+ | Mussett Bayou Fire | 0.662000808 | 2.164129413 | 129 | 5 | Test |
25
+ | Champlain Towers Collapse | 0.016037199 | 0.246084846 | 4 | 1 | Train |
26
+ | **Total** | **26.24542132** | **67.03500642** | **21716** | **52** | **N/A** |
27
+
28
+ ## Dataset Structure
29
+ At the top level the dataset contains a statistics.csv file, with summary statistics of the dataset, and two folders, train and test.
30
+ Each folder has folders imagery (which contains all of the geo.tif files) and annotations.
31
+ The annotations folder then contains two other folders: alignment_adjustments, and building_damage_assessment.
32
+ Each of these folders contains JSON files containing the annotations for both building damage assessment and the translational alignments necessary to align the building polygons with the imagery.
33
+
34
+ ### Building Damage Assessment
35
+ A sample of the building damage assesssment JSON file is as follows...
36
+ [{"source": "custom", "id": "8194baa7a68e2cbfe6506c0f6c00a785", "label": "major damage", "pixels": [{"x": 5823, "y": 6310}, ...], "EPSG:4326": [{"lat": 25.87311942079238, "lon": -80.12125843985305}, ...]}, ...]
37
+
38
+ Each JSON file is a list of dictionaries, where each dictionary defines a building polygon and its metadata.
39
+ - The "source" field describes the provenance of the building polygon. The possible options are "Microsoft" indicating the building polygon was sourced from the Microsot Building Footprints dataset, and "custom" indicating the polygons were manually added by the authors.
40
+ - The "id" field is a unique string id for each building polygon.
41
+ - The "label" field corresponds to the values of the Joint Damage Scale. The possible options are "no damage", "minor damage", "major damage", "destroyed", and "un-classified".
42
+ - The "pixels" field corresponds to the coordinates of the building polygon in the pixel coordinate space of the orthomosaic.
43
+ - The "EPSG:4326" field corresponds to the coordinates of the building polygon in the EPSG:4326 coordinate space.
44
+
45
+ ### Alignment Adjustments
46
+ A sample of the alignment adjustment JSON file is as follows...
47
+ [[[4739.728, 4061.728], [4542.137, 3962.933]], ... ]
48
+
49
+ Each JSON file is a list of lines with a length of two, each defined by a 2d coordinate corresponding to an x,y pixel coordinate in the orthomosaic.
50
+ The first list represents a list of all the alignment adjustments for the given orthomosaic.
51
+ The second list represents a set of two points, forming a line, that describes the translational adjustment needed to bring the nearby building polygons into alignment with the imagery.
52
+
53
+ Each translational adjustment starts with the position in the unadjusted coordinate space that needs to be moved to the following position in order to align the building polygons.
54
+ These translational adjustments are applied to the building polygons by applying the nearest adjustment to each building polygon.
55
+ Functionally, this forms a vector field that describes the adjustments for an entire orthomosaic.
56
+ This process is described in detail in [3]().