ROVR-Network commited on
Commit
3979bca
·
verified ·
1 Parent(s): 2af6154

Upload 2 files

Browse files
Files changed (2) hide show
  1. Data_Description.md +295 -0
  2. LICENSE.md +107 -0
Data_Description.md ADDED
@@ -0,0 +1,295 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Data Directory Structure and Field Specifications
2
+
3
+ ## Overview
4
+
5
+ The ROVR Open Dataset provides **processed data saved only in ROS 2 bag format**, suitable for autonomous driving, robotics, and 4D perception tasks. This document outlines the directory structure and field specifications of the dataset.
6
+
7
+ ## Data Directory Structure
8
+
9
+ ```
10
+ ROVR-Open-Dataset/
11
+ ├── Samples/ # Sample data clips
12
+ │ ├── ${bag_name}/ # Folder name matches ROS bag name
13
+ │ │ ├── images/ # Image data (.png)
14
+ │ │ ├── pointclouds/ # Point cloud data (.pcd)
15
+ │ │ ├── depth/ # Depth image (.png)
16
+ │ │ ├── annotation/ # Point cloud detection and segmentation results
17
+ │ │ │ ├── detection_result/ # Detection results (.txt)
18
+ │ │ │ └── segmentation_result/ # Segmentation results (.txt)
19
+ │ │ ├── ego_poses.json # Interpolated GNSS positioning data
20
+ │ │ ├── ego_poses_raw.json # Raw GNSS positioning data
21
+ │ │ └── imu_data.csv # IMU data (CSV format)
22
+ ├── ROVR_intrinsics_extrinsics/ # Camera and LiDAR parameter files
23
+ │ ├── ${device_serial}/ # Subfolder named by device serial number (e.g., 1025040009)
24
+ │ │ ├── ext.yaml # LiDAR-to-camera extrinsic parameters
25
+ │ │ └── int.yaml # Camera intrinsic parameters
26
+ ```
27
+
28
+ ### Detailed Structure Description
29
+
30
+ 1. **Samples/${bag_name}/**
31
+ - **Description**: Contains processed data clips with folder names matching the ROS bag names (e.g., `20250517173254-1025040009-34-lUNe`).
32
+ - **Subfolders and files**:
33
+ - `images/`: PNG images (1920 x 1080 px).
34
+ - `pointclouds/`: Point cloud data in PCD format.
35
+ - `depth/`: PNG images (1920 x 1080 px).
36
+ - `annotation/`: Point cloud detection and segmentation results, containing:
37
+ - `detection_result/`: Detection results in `.txt` format.
38
+ - `segmentation_result/`: Segmentation results in `.txt` format.
39
+ - `ego_poses.json`: Interpolated GNSS positioning data.
40
+ - `ego_poses_raw.json`: Raw GNSS positioning data.
41
+ - `imu_data.csv`: IMU data in CSV format.
42
+
43
+ 2. **ROVR_intrinsics_extrinsics/${device_serial}/**
44
+ - **Description**: Camera and LiDAR parameters corresponding to the device serial number.
45
+ - **Files**:
46
+ - `ext.yaml`: LiDAR-to-camera extrinsic parameters (rotation matrix and translation vector).
47
+ - **Note**: Apply coordinate transform before use: `x = -y`, `y = -z`, `z = x`.
48
+ - `int.yaml`: Camera intrinsic parameters (focal length, principal point, distortion coefficients).
49
+
50
+ ## Naming Conventions
51
+
52
+ ### Folder Naming Format
53
+
54
+ - **Format**: `<CollectionTime>-<DeviceSerialNumber>-<CollectionSequenceNumber>-<IdentifierCode>`
55
+ - **Example**: `20250517173254-1025040009-34-lUNe`
56
+ - **Field Explanation**:
57
+ - **Collection Time**: `YYYYMMDDhhmmss` (e.g., May 17, 2025, 17:32:54), in Greenwich Mean Time (UTC).
58
+ - **Device Serial Number**: Unique device identifier (e.g., 1025040009).
59
+ - **Collection Sequence Number**: Sequence number within the collection (e.g., 34).
60
+ - **Identifier Code**: Data verification identifier (e.g., lUNe).
61
+
62
+ ### Sensor Data in `Samples/${bag_name}/`
63
+
64
+ | File/Folder | Description | Format | Frame Rate | Coordinate System Definition |
65
+ |---------------------|------------------------------------|------------|------------|---------------------------------|
66
+ | images/ | Image data | .png | 5 Hz | X: Right, Y: Down, Z: Forward|
67
+ | pointclouds/ | Point cloud data | .pcd | 5 Hz | X: Forward, Y: Left, Z: Up |
68
+ | depth/ | Depth image data | .png | 5 Hz | X: Right, Y: Down, Z: Forward|
69
+ | annotation/ | Detection and segmentation results | .txt | 5 Hz | |
70
+ | ego_poses.json | Interpolated GNSS positioning data | .json | 5 Hz | According to GNSS standard |
71
+ | ego_poses_raw.json | Raw GNSS positioning data | .json | 1 Hz | According to GNSS standard |
72
+ | imu_data.csv | IMU data | .csv | 100 Hz | X: Backward, Y: Left, Z: Down |
73
+
74
+ ### Camera and LiDAR Parameters in `ROVR_intrinsics_extrinsics/${device_serial}/`
75
+
76
+ | File/Folder | Description | Format |
77
+ |---------------------|----------------------------------------------------------------------------------------------------|-------------|
78
+ | ext.yaml | LiDAR-to-camera extrinsic parameters, including rotation vector and translation vector. | .yaml |
79
+ | int.yaml | Camera intrinsic parameters, including focal length, principal point, and distortion coefficients. | .yaml |
80
+
81
+ ---
82
+
83
+ ## Descriptions:
84
+
85
+ ### Sensor Data in `Samples/${bag_name}/`
86
+
87
+ #### **1. `images/`**
88
+
89
+ - **Description**: PNG format images with a resolution of 1920×1080 pixels.
90
+ - **File Naming Convention**:
91
+ The image filenames are based on UTC timestamps, precise to nanoseconds, ensuring that the file names correspond directly with other data files (point cloud, annotation).
92
+
93
+ #### **2. `pointclouds/`**
94
+
95
+ - **Description**: PCD format point cloud data.
96
+ - **File Naming Convention**:
97
+ The point cloud filenames follow the same UTC timestamp convention as the image filenames, ensuring that each point cloud file corresponds to a specific image file.
98
+
99
+ #### **3. `depth/`**
100
+
101
+ - **Description**: Depth images in single-channel PNG format with a resolution of 1920×1080 pixels, generated by projecting LiDAR point cloud data onto the image plane using the camera’s intrinsic and distortion parameters, along with the extrinsic calibration between the camera and LiDAR. Each pixel value represents depth (i.e., distance from the camera) in millimeters. A pixel value of `0` indicates that no LiDAR point was projected onto that pixel (i.e., no valid depth information is available at that location).
102
+ - **File Naming Convention**:
103
+ The depth image filenames follow the same UTC timestamp convention as the point cloud filenames, ensuring that each depth image file corresponds to a specific point cloud file.
104
+
105
+ #### **4. `annotation/`**
106
+
107
+ - **Description**: Detection and segmentation results for the images and point cloud.
108
+ - **File Naming Convention**:
109
+ The annotation filenames are also based on the same UTC timestamp as the corresponding image and point cloud files. This ensures that the annotations match the exact frame captured in the image and point cloud data.
110
+
111
+ ##### **Object Detection Annotations (`detection_result/`)**
112
+
113
+ - **Description**: 3D and 2D object detection results in plain text format (.txt), each line representing a detected object with detailed fields. Each line contains:
114
+ ```
115
+ [category_id] [tracking_id] [alpha] [x1] [y1] [x2] [y2] [height] [width] [length] [x] [y] [z] [rotation_y] [bbox_3d_points...]
116
+ ```
117
+
118
+ ###### **Explanation**:
119
+ - **category_id**: Object class ID:
120
+ - 1: Motor_vehicle, 2: Pedestrian, 3: Non-motor_vehicle, 4: Traffic_light, 5: Traffic_sign, 6: Lane_line, 7: Pole, 8: Traffic_cone, 9: Other, 10: Ground_marking, 11: Road.
121
+ - **tracking_id**: Unique ID for tracking the object across frames.
122
+ - **alpha**: Observation angle in radians, range [0, 2π].
123
+ - **x1, y1, x2, y2**: Top-left and bottom-right corners of the 2D bounding box (pixels). -1 for missing data.
124
+ - **height, width, length**: 3D size of the object (in meters).
125
+ - **x, y, z**: 3D location in camera coordinates (in meters).
126
+ - **rotation_y**: Rotation around Y-axis (radians), range [-π, π].
127
+ - **bbox_3d_points**: 8-point 3D bounding box, may be projected to 2D pixel space.
128
+
129
+ ---
130
+
131
+ ##### **Object Segmentation Annotations (`segmentation_result/`)**
132
+
133
+ - **Description**: 2D image segmentation masks with category and pixel coordinates per object. Each line contains:
134
+ ```
135
+ [category_id] [object_id] [x1] [y1] [x2] [y2] ... [xn] [yn]
136
+ ```
137
+
138
+ ###### **Explanation**:
139
+ - **category_id**: Same ID system as detection annotations.
140
+ - **object_id**: Unique ID per segmented object.
141
+ - **[x1, y1], [x2, y2], ...**: Polygon points of the mask (in pixels).
142
+
143
+ ---
144
+
145
+ ##### **Notes on Annotation Data**
146
+
147
+ - **Coordinate Systems**:
148
+ - 3D positions in detection results use camera coordinates. Apply the coordinate transformation from `ext.yaml` to align with LiDAR.
149
+ - Some 3D bounding box fields may be 2D projected points — verify with dataset version.
150
+ - Segmentation mask points are in pixel space, aligning with `../image/` data.
151
+
152
+ #### **5. `ego_poses_raw.json` and `ego_poses.json`**
153
+
154
+ - **Description**:
155
+ - **`ego_poses_raw.json`**: Contains raw GNSS positioning data, which follows the GNSS standard with the following fields:
156
+ - **Timestamp**: GNSS timestamp.
157
+ - **lat**: Latitude.
158
+ - **lon**: Longitude.
159
+ - **utm_x, utm_y, utm_z**: UTM coordinates.
160
+ - **heading**: Heading in degrees (0~360, clockwise from north).
161
+ - **speed**: Speed in m/s.
162
+ - **date**: Date in ddmmyy format.
163
+ - **hemisphere_ns**: Northern or Southern hemisphere.
164
+ - **hemisphere_ew**: Eastern or Western hemisphere.
165
+ - **quaternion**: Quaternion representing the rotation.
166
+
167
+ - **`ego_poses.json`**: Contains interpolated GNSS positioning data based on image timestamp, following the same structure as `ego_poses_raw.json`, but with timestamps matching the image data.
168
+
169
+ | Field | Description |
170
+ |-----------------|-----------------------------------------------|
171
+ | timestamp | GNSS timestamp |
172
+ | lat | Latitude |
173
+ | lon | Longitude |
174
+ | utm_x | UTM X coordinate |
175
+ | utm_y | UTM Y coordinate |
176
+ | utm_z | UTM Z coordinate |
177
+ | heading | Heading (0~360 degrees, clockwise from north) |
178
+ | speed | Speed (in m/s) |
179
+ | date | Date (ddmmyy format) |
180
+ | hemisphere_ns | Northern or Southern Hemisphere |
181
+ | hemisphere_ew | Eastern or Western Hemisphere |
182
+ | quaternion | Quaternion (rotation representation) |
183
+
184
+ ##### **Data Example**:
185
+ ```json
186
+ {
187
+ "timestamp": 1747503144.1424189,
188
+ "lat": 37.77150665166667,
189
+ "lon": -122.42305399166666,
190
+ "utm_x": 550811.2977794447,
191
+ "utm_y": 4180620.4009261196,
192
+ "utm_z": 0.0,
193
+ "heading": 332.79,
194
+ "speed": 0.0,
195
+ "date": "170525",
196
+ "hemisphere_ns": "N",
197
+ "hemisphere_ew": "W",
198
+ "quaternion": [-0.9719404768572004, 0.0, 0.0, 0.23522693180543294]
199
+ }
200
+ ```
201
+
202
+ - **Explanation**:
203
+ - `ego_poses_raw.json` contains raw GNSS positioning data, with a frequency of 1 Hz.
204
+ - `ego_poses.json` contains interpolated GNSS positioning data based on image timestamps, with a frequency of 5 Hz.
205
+
206
+
207
+ #### **6. `imu_data.csv`**
208
+
209
+ - **Description**: IMU raw data in CSV format with columns: [timestamp, acc_x, acc_y, acc_z, gyro_x, gyro_y, gyro_z].
210
+
211
+ ##### **Data Example**:
212
+ ```csv
213
+ timestamp, acc_x, acc_y, acc_z, gyro_x, gyro_y, gyro_z
214
+ 1747503144.066422725,-0.06345245393458754,1.0756415122747423,9.818998864889146,6.807146783081999e-06,-0.0035436609232569302,0.0026104203575969863
215
+ 1747503144.076391309,-0.055494749746285384,1.0912267539650202,9.795408273339271,0.0006594161759019893,-0.003767680104459781,0.0024891367766331452
216
+ 1747503144.086524977,-0.07948344075120986,1.0916746506839992,9.802085208892823,0.0007679316679443117,-0.003132297461968387,0.0022016243500468475
217
+ ```
218
+
219
+ - **Explanation**:
220
+ - **Timestamp**: UTC Timestamp of the IMU data.
221
+ - **acc_x, acc_y, acc_z**: Acceleration data in the X, Y, Z axes (in m/s²).
222
+ - **gyro_x, gyro_y, gyro_z**: Gyroscope data in the X, Y, Z axes (in rad/s).
223
+ - **Frequency**: 100 Hz.
224
+
225
+ ### Camera and LiDAR Parameters in `ROVR_intrinsics_extrinsics/${device_serial}/`
226
+
227
+ #### 1. `ext.yaml` - LiDAR-Camera Extrinsic Parameters
228
+
229
+ - **Description**: Contains the extrinsic parameters that define the transformation from the LiDAR coordinate system to the camera coordinate system, using a rotation vector and a translation vector. The filename `ext.yaml` is fixed, with parameters specific to the device serial number.
230
+
231
+ ##### **Data Example**:
232
+ ```yaml
233
+ # x = -y # y = -z # z = x
234
+ lidar_to_camera:
235
+ rvec: [1.7649999999999999, 1.008, 0.25209999999999999] # Rotation vector. Rodrigues. [deg, deg, deg]
236
+ tvec: [-0.016810000000000002, 0, 0.016810000000000002] # Translation vector. [m, m, m]
237
+ ```
238
+
239
+ - **Explanation**:
240
+ - **rvec (Rotation Vector):** A 3D rotation vector using Rodrigues' rotation formula, given in degrees, describing the rotation between the LiDAR and camera coordinate systems.
241
+ - **tvec (Translation Vector):** A 3D vector describing the translation (offset) between the LiDAR and camera coordinate systems in meters.
242
+ - **Transformation Matrix:** The full extrinsic transformation is represented as a 4x4 homogeneous matrix.
243
+
244
+ **Note:** Before applying extrinsic parameters, the LiDAR coordinate system must be transformed using the following rule:
245
+
246
+ ```
247
+ x = -y
248
+ y = -z
249
+ z = x
250
+ ```
251
+
252
+ ---
253
+
254
+ #### 2. `int.yaml` - Camera Intrinsic Parameters
255
+
256
+ - **Description**: Contains the intrinsic parameters of the camera, including focal length, principal point, and distortion coefficients, which define the internal geometry of the camera. The filename `int.yaml` is fixed, with parameters specific to the device serial number.
257
+
258
+ ##### **Data Example**:
259
+ ```yaml
260
+ FX: 1190.9380383925
261
+ FY: 1190.8862851737
262
+ CX: 955.6705012175
263
+ CY: 540.1090098440
264
+ K1: -0.0586809591
265
+ K2: -0.4292077180
266
+ P1: -0.0000209962
267
+ P2: 0.0000513478
268
+ K3: -0.0282192110
269
+ K4: 0.3687679523
270
+ K5: -0.5661097302
271
+ K6: -0.1486583365
272
+ RMS: 0.0095
273
+ ```
274
+
275
+ - **Explanation**:
276
+
277
+ - **FX, FY:** Focal lengths in the X and Y axes (in pixels).
278
+ - **CX, CY:** Principal point (optical center) in the X and Y axes (in pixels).
279
+ - **K1, K2, K3, K4, K5, K6:** Radial distortion coefficients, modeling lens distortion.
280
+ - **P1, P2:** Tangential distortion coefficients, modeling distortion due to lens misalignment.
281
+ - **RMS:** Root mean square error of the calibration process.
282
+
283
+ ---
284
+
285
+ ## Usage
286
+
287
+ - **Data Access**: Find the processed data in the `Samples/${bag_name}/` folder, and the corresponding camera and LiDAR parameters in the `ROVR_intrinsics_extrinsics/${device_serial}/` folder.
288
+ - **Repository**: [https://github.com/rovr-network/ROVR-Open-Dataset](https://github.com/rovr-network/ROVR-Open-Dataset)
289
+ > This repository currently contains only one sample ROS bag.
290
+
291
+ - **Access Full Dataset:** [Google Drive](https://drive.google.com/drive/folders/1nCT6grlveES2kYwYU6NPyjiF3rhJ-NZk?usp=sharing)
292
+
293
+ ## Contact
294
+
295
+ For inquiries or commercial licensing, please contact: [[email protected]](mailto:[email protected]).
LICENSE.md ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ **Creative Commons Attribution 4.0 International Public License**
2
+
3
+ By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions.
4
+
5
+ Section 1 – Definitions.
6
+
7
+ a. Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image.
8
+
9
+ b. Adapter's License means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License.
10
+
11
+ c. Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights.
12
+
13
+ d. Effective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements.
14
+
15
+ e. Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material.
16
+
17
+ f. Licensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Public License.
18
+
19
+ g. Licensed Rights means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license.
20
+
21
+ h. Licensor means the individual(s) or entity(ies) granting rights under this Public License.
22
+
23
+ i. Share means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them.
24
+
25
+ j. Sui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other equivalent rights anywhere in the world.
26
+
27
+ k. You means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning.
28
+
29
+ Section 2 – Scope.
30
+
31
+ a. License grant.
32
+ 1. Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to:
33
+ A. reproduce and Share the Licensed Material, in whole or in part; and
34
+ B. produce, reproduce, and Share Adapted Material.
35
+ 2. Exceptions and Limitations. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions.
36
+ 3. Term. The term of this Public License is specified in Section 6(a).
37
+ 4. Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material.
38
+ 5. Downstream recipients.
39
+ A. Offer from the Licensor – Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License.
40
+ B. No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material.
41
+ 6. No endorsement. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i).
42
+
43
+ b. Other rights.
44
+ 1. Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise.
45
+ 2. Patent and trademark rights are not licensed under this Public License.
46
+ 3. To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties.
47
+
48
+ Section 3 – License Conditions.
49
+
50
+ Your exercise of the Licensed Rights is expressly made subject to the following conditions.
51
+
52
+ a. Attribution.
53
+ 1. If You Share the Licensed Material (including in modified form), You must:
54
+ A. retain the following if it is supplied by the Licensor with the Licensed Material:
55
+ i. identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated);
56
+ ii. a copyright notice;
57
+ iii. a notice that refers to this Public License;
58
+ iv. a notice that refers to the disclaimer of warranties;
59
+ v. a URI or hyperlink to the Licensed Material to the extent reasonably practicable;
60
+ B. indicate if You modified the Licensed Material and retain an indication of any previous modifications; and
61
+ C. indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License.
62
+ 2. You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information.
63
+ 3. If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable.
64
+ 4. If You Share Adapted Material You produce, the Adapter's License You apply must not prevent recipients of the Adapted Material from complying with this Public License.
65
+
66
+ Section 4 – Sui Generis Database Rights.
67
+
68
+ Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material:
69
+
70
+ a. for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database;
71
+ b. if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material; and
72
+ c. You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database.
73
+
74
+ For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights.
75
+
76
+ Section 5 – Disclaimer of Warranties and Limitation of Liability.
77
+
78
+ a. Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You.
79
+ b. To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You.
80
+
81
+ c. The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability.
82
+
83
+ Section 6 – Term and Termination.
84
+
85
+ a. This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically.
86
+ b. Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates:
87
+ 1. automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or
88
+ 2. upon express reinstatement by the Licensor.
89
+ For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License.
90
+ c. For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License.
91
+ d. Sections 1, 5, 6, 7, and 8 survive termination of this Public License.
92
+
93
+ Section 7 – Other Terms and Conditions.
94
+
95
+ a. The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed.
96
+ b. Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License.
97
+
98
+ Section 8 – Interpretation.
99
+
100
+ a. For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License.
101
+ b. To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions.
102
+ c. No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor.
103
+ d. Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority.
104
+
105
+ Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” The text of the Creative Commons public licenses is dedicated to the public domain under the CC0 Public Domain Dedication. Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at creativecommons.org/policies, Creative Commons does not authorize the use of the trademark "Creative Commons" or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph is not part of the Public License.
106
+
107
+ Creative Commons may be contacted at creativecommons.org.