Skip to content

Commit 9405d25

Browse files
committed
Updated README and tutorial with more documentation.
1 parent 38446f5 commit 9405d25

3 files changed

Lines changed: 161 additions & 24 deletions

File tree

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.ipynb_checkpoints/
2+
.DS_STORE
3+
.idea/
4+
__pycache__/
5+
sample_data.json

README.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,24 @@ Use the `requirements.txt` file included in this repository to set up a Python e
1111
`pip install -r requirements.txt`
1212

1313
### Data files
14-
The example trajectory data snippet should be downloaded from https://vu.edu/laddms-data-snippet. This data file should be placed in the same directory as the tutorial notebook and other files.
14+
The example trajectory data snippet should be downloaded from [https://vu.edu/laddms-data-snippet](https://vu.edu/laddms-data-snippet). This data file should be placed in the same directory as the tutorial notebook and other files.
15+
16+
The data snippet is taken from an undisclosed day and time along the LADDMS corridor. Trajectory timestamps are internally consistent within the data. Data is provided in UTM coordinates to facilitate more straightforward local spatial analysis, using the Cartesian projection. The data may be converted back to WGS84 latitude/longitude when needed.
17+
18+
The following fields are included in each trajectory:
19+
- object_id : Unique object ID number; only guaranteed unique within each location.
20+
- location_id : Location ID number assigned within the database, corresponding to order of installations within the LADDMS corridor.
21+
- classification : lidar-generated object classification (e.g., VEHICLE, LARGE_VEHICLE, PERSON, BICYCLE, UNKNOWN).
22+
- sub_classification : lidar-generated object sub-classification.
23+
- obj_length : Average length in meters across the trajectory.
24+
- obj_width : Average width in meters across the trajectory.
25+
- obj_height : Average height in meters across the trajectory.
26+
- avg_filtered_confidence : Classification confidence after filtering trajectory data points with < 0.5 confidence.
27+
- ts : Normalized within the dataset to 0-minimum to preserve data anonymity.
28+
- vel_x : Velocity X component time series in m/s.
29+
- vel_y : Velocity Y component time series in m/s.
30+
- utm_x : Local UTM X coordinate time series (meters).
31+
- utm_y : Local UTM X coordinate time series (meters).
1532

1633
## Running the tutorial
1734
Open the tutorial notebook `basic_data_tutorial.ipynb` by activating the Python environment (`conda activate laddms_tutorial`) and running Jupyter Lab notebook server with the terminal command `jupyter lab`.

basic_data_tutorial.ipynb

Lines changed: 138 additions & 23 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)