A Python module for calculating and analyzing three types of congestion—Road, PM, and Pedestrian congestion.
Project description
ewha-congestions
A Python module for calculating and analyzing three types of congestion—Road, PM, and Pedestrian congestion—using trajectory data collected from CCTV systems. It includes safety-aware adjustments based on pedestrian-vehicle and pedestrian-pedestrian interactions.
How to use
'''python from ewha_congestions.three_congestions import processing_congestions
df = your data. data index must be DatetimeIndex as "dtct_dt". data must has point geometry as "geomatry", "snr_id", "distance", "speed", "acceleration", "traj_id", "direction", "mf_type", and "apr_code"
road_shp = your road data. road data must has Polygon geometry of roads as "geometry" and CCTV ID as "snr_id".
road_shp = road_shp.to_crs("EPSG:5179") for calculate road area
road_cong, ped_cong, pm_cong = processing_congestions(df, road_shp, 3600).call()
''' df: includes object tracking data with fields like snr_id, mf_type, apr_code, geometry, dtct_dt, speed, and acceleration.
road_df: includes road information with fields snr_id and geometry.
interval: time window (in seconds) over which congestion is aggregated and computed.
Output
Each output (road_cong, ped_cong, pm_cong) is a DataFrame with:
CCTV_ID: unique identifier for each camera
time: timestamp of the congestion record
congestion_level: integer from 0 to 4
0: Excellent (≤ 0.2)
1: Good (≤ 0.4)
2: Normal (≤ 0.6)
3: Crowded (≤ 0.8)
4: Very Crowded (> 0.8)
Congestion Types Type | Description Road Congestion | Combined area occupied by all moving objects divided by the road polygon area PM Congestion | PM area only, normalized by unoccupied space (excluding pedestrian & vehicle) Pedestrian Congestion | Road congestion adjusted using pedestrian-pedestrian and pedestrian-vehicle conflicts
Requirements
numpy pandas geopandas movingpandas tqdm shapely geopy
License
This project is licensed under the JiyoonLee License.
Contact
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ewha_congestions-0.1.7.tar.gz.
File metadata
- Download URL: ewha_congestions-0.1.7.tar.gz
- Upload date:
- Size: 9.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ebaae05c08727525ba9e63fb1c03a72ea36e38c40629d225a82182de79ae50ef
|
|
| MD5 |
137e86e215986e2401f5707ac4088f16
|
|
| BLAKE2b-256 |
5a2d928e4c4f8d0f501d0895577ebbcfa26015273e9db17d71e5f753d8628228
|
File details
Details for the file ewha_congestions-0.1.7-py3-none-any.whl.
File metadata
- Download URL: ewha_congestions-0.1.7-py3-none-any.whl
- Upload date:
- Size: 8.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
408ba41c00a029946a8b087133d31f880ce0e56ff402cf6fd1848fbfc5bab4ed
|
|
| MD5 |
7411d248a9588290db427efe236428c3
|
|
| BLAKE2b-256 |
06ea3d71638dee0257ab7eb1fd4d255b42a9edbde68d2b1a1fec518d988426ac
|