Bappadala Rohith Kumar Naidu
chore: update github repository links to SafeVixAI
0f6dc04
# SafeVixAI β€” Data Acquisition Scripts πŸ”¬
These scripts are the **raw data pipeline** that built the 3.6GB SafeVixAI dataset.
All scripts here are **pure Python** β€” they require no database, no Redis, no PostGIS.
> Scripts are mirrored from the [SafeVixAI main repo](https://github.com/SafeVixAI/SafeVixAI) and organized by their origin folder.
---
## πŸ“ Structure
```
scripts/
β”œβ”€β”€ scripts/data/ ← from SafeVixAI/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 SafeVixAI/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 SafeVixAI/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.