Pechiparai Dam
Pechiparai Dam
📖 Description: It is 60kms. from Kanniyakumari. This dam was planned and build during 1897 – 1906. It is 1396 ft long, 396 ft. high above the deepest ocean with the storage level of 40 ft. Western ghats around this dam forms a picturesque view.
🕒 Timings:
📞 Emergency Contacts
- Police: 100
- Fire: 101
- Ambulance: 108
- District Control Center: 1077
- Local Administration: Pechiparai village Panchayat (9442270095)
- Tourism Dept: 9176995866
📍 Get Directions:
🚌 Bus Details
| Bus Terminal | Route No. | Via |
|---|---|---|
| Nagercoil Vadassery Bus Terminal | 313,349. 313M | Thuckalay, Kulasekharam |
| Nagercoil Anna Bus Terminal | ||
| Kanniyakumari Bus Terminal | 349 | Nagercoil, Thuckalay |
| Marthandam Bus Terminal | 89D, 457, 331,86G, 86/G | Thiruvattar,Kulasekharam ,Aurmanai, Kaliyal |
| Kalliyakkavilai Bus Terminal | 457 | Marthandam, Thiruvattar, Kulasekharam |
📷 Image Gallery
×
const images = ["https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051612-scaled.jpg", "https://cdn.s3waas.gov.in/s38fe0093bb30d6f8c31474bd0764e6ac0/uploads/2025/05/2025051612-scaled.jpg"];
let currentIndex = 0;
function openModal(i) {
currentIndex = i;
document.getElementById('modalImage').src = images[i];
document.getElementById('imageModal').style.display = 'flex';
}
function closeModal() {
document.getElementById('imageModal').style.display = 'none';
}
function nextImage() {
currentIndex = (currentIndex + 1) % images.length;
document.getElementById('modalImage').src = images[currentIndex];
}
function prevImage() {
currentIndex = (currentIndex - 1 + images.length) % images.length;
document.getElementById('modalImage').src = images[currentIndex];
}
function getLocationAndRedirect() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
const lat = position.coords.latitude;
const lon = position.coords.longitude;
const url = "https://www.google.com/maps/dir/?api=1&origin=" + lat + "," + lon + "&destination=encodeURIComponentPechiparai Dam, F825F8X, Pechiparai Dam Road, Pechiparai, Tamil Nadu 629101";
window.location.href = url;
}, function() {
alert('Could not get location');
});
}
}
window.onload = function() {
document.getElementById('mapBtn').addEventListener('click', getLocationAndRedirect);
document.getElementById('img0').addEventListener('click', function() { openModal(0); });
document.getElementById('img1').addEventListener('click', function() { openModal(1); });
}