Datasets:
Bappadala Rohith Kumar Naidu
fix: move notebooks from root into notebooks/ folder, add READMEs and requirements
d8b26e4 | # SafeVisionAI β Data Acquisition Scripts π¬ | |
| These scripts are the **raw data pipeline** that built the 3.6GB SafeVisionAI dataset. | |
| All scripts here are **pure Python** β they require no database, no Redis, no PostGIS. | |
| > Scripts are mirrored from the [SafeVisionAI main repo](https://github.com/SafeVision-AI/SafeVision-AI) and organized by their origin folder. | |
| --- | |
| ## π Structure | |
| ``` | |
| scripts/ | |
| βββ scripts/data/ β from SafeVisionAI/scripts/data/ | |
| β βββ fetch_*.py β Overpass GIS fetchers (basic version) | |
| β βββ _overpass_utils.py β Core GIS utility | |
| β βββ download_legal_pdfs.py | |
| β βββ extract_morth2022_tables.py | |
| β βββ seed_blackspots.py | |
| β βββ bootstrap_local_data.py | |
| β βββ verify_data.py | |
| β βββ inspect_zips.py | |
| β βββ audit_env.py | |
| β βββ check_all_scripts.py | |
| β βββ setup_kaggle.ps1 | |
| β | |
| βββ backend/data/ β from SafeVisionAI/backend/scripts/data/ | |
| β βββ seed_violations.py β MVA 2019 traffic fine normalizer | |
| β βββ prepare_road_sources.py | |
| β βββ sample_pmgsy.py | |
| β βββ road_sources.example.json | |
| β | |
| βββ chatbot_service/data/ β from SafeVisionAI/chatbot_service/scripts/data/ | |
| βββ _overpass_utils.py β β Pro version (retries + backoff) | |
| βββ fetch_*.py β β Pro fetchers (use these over scripts/data/) | |
| ``` | |
| --- | |
| ## π Recommended Run Order | |
| ```bash | |
| # Install dependencies first | |
| pip install requests pdfplumber | |
| # 1. Setup Kaggle API (one-time) | |
| pwsh scripts/scripts/data/setup_kaggle.ps1 | |
| # 2. Fetch all emergency services (use Pro versions) | |
| python scripts/chatbot_service/data/fetch_hospitals.py | |
| python scripts/chatbot_service/data/fetch_police.py | |
| python scripts/chatbot_service/data/fetch_ambulance.py | |
| python scripts/chatbot_service/data/fetch_blood_banks.py | |
| python scripts/chatbot_service/data/fetch_fire.py | |
| # 3. Download legal documents | |
| python scripts/scripts/data/download_legal_pdfs.py | |
| # 4. Extract MoRTH accident tables from PDFs | |
| python scripts/scripts/data/extract_morth2022_tables.py | |
| # 5. Normalize accident blackspot data | |
| python scripts/scripts/data/seed_blackspots.py | |
| # 6. Normalize traffic violations (MVA 2019) | |
| python scripts/backend/data/seed_violations.py | |
| # 7. Verify everything is correct | |
| python scripts/scripts/data/verify_data.py | |
| ``` | |
| --- | |
| ## β Pro vs Basic Fetchers | |
| | Feature | `scripts/scripts/data/fetch_*.py` | `scripts/chatbot_service/data/fetch_*.py` | | |
| |---|---|---| | |
| | Retry logic | β | β | | |
| | Exponential backoff | β | β | | |
| | Indian GIS precision | Basic | Enhanced | | |
| | Extra fields (email, postcode) | β | β | | |
| **Always prefer `chatbot_service/data/` versions** for data acquisition. | |
| --- | |
| ## π¦ Dependencies | |
| ``` | |
| pip install -r requirements.txt | |
| ``` | |
| See `requirements.txt` in the Hub root. | |