An AI-powered safety application for tourists, built for India's Growing Tourist Culture. Features proactive anomaly detection, blockchain-verified digital IDs, and a real-time dashboard for authorities.
What it is: Detects if a tourist is injured or unconscious in a remote area without internet.
How it works:
Sensors: App listens to Accelerometer & Gyroscope data via sensors_plus.
Model: Runs movement_classifier.tflite locally to classify state (Walking, Stopped, Fall Detected).
Trigger: If Location == Red_Zone AND Inactivity > 45 mins, it triggers a local alarm. No reaction = Auto-SOS via SMS.
What it is: Instant warnings when entering restricted border areas (LoC Buffer) or flood zones.
How it works:
PostGIS: We store "Red Zones" (e.g., Gurez) as Polygons in the database.
Query: ST_Contains(Red_Zone_Polygon, User_GPS) runs efficiently on the backend.
Delivery: Triggers a High-Priority Firebase Notification (Overrides Silent Mode).
What it is: Recommends the Safest route, not just the fastest, based on live hazards.
How it works:
Scikit-learn Model: Calculates a Risk_Score (0-100) for a route.
Inputs: Weather_Forecast (Rain > 50mm) + Terrain_Data (Steep Slope) + History (Previous Landslides).
Output: If Score > 70, the API returns a "Warning" payload with the route.
What it is: Calls the correct local police station, not a generic control room.
How it works:
Uses the J&K Intelligence Database.
Logic: User in Baramulla presses SOS -> App queries local DB -> Calls Baramulla PCR (01952-234410) directly.
What it is: A decentralized "Store-and-Forward" network that functions when cellular towers are down or destroyed.
How it works:
Protocol: Uses Bluetooth Low Energy (BLE) & Wi-Fi Direct (via nearby_connections) to create a P2P mesh between phones.
The Hop: If a tourist in a "Red Zone" (No Signal) triggers SOS, the packet hops to nearby devices (Tourist B → Shepherd C → Army Truck).
Gateway Nodes: The packet travels until it hits a B2B Node (Police Tablet/Checkpost) which acts as a "Super Sink" to upload data to the cloud.
Security: Packets are AES-256 encrypted; intermediate phones relay the message without seeing the content.