This web-based system leverages the National Aquifer Mapping and Management Programme (NAQUIM) data of the Central Ground Water Board (CGWB), including lithology, geophysical logs, water levels, water quality, and aquifer maps, to aid users in making informed decisions about water well construction in specific locations.
- Suitability Analysis: Determines if an area is suitable for constructing a water well.
- Depth Prediction: Estimates the depth at which water-bearing zones are likely to be encountered.
- Discharge Estimation: Predicts the expected discharge of the well.
- Drilling Technique Recommendation: Suggests the most suitable drilling technique for the area.
- Water Quality Forecast: Provides a forecast of the expected groundwater quality.
- User-Friendly GUI: Offers an intuitive graphical user interface for ease of use.
- Feedback Collection: Includes a system to collect user feedback in a structured manner.
- Select a point on the map within the user interface.
- The system will analyze the data and provide insights on the feasibility and specifics of constructing a water well in that location.
- Follow the on-screen instructions to interpret the results and make decisions.
We welcome contributions from the community. To contribute to this project, please follow the steps below. You can copy and paste the following commands into your terminal.
Clone the forked repository to your machine using the following command:
git clone https://github.com/Pandurangmopgar/AI-enabled-water-well-predictor.git
Navigate into the cloned directory and switch to a new branch for your contribution:
cd AI-enabled-water-well-predictor
git checkout -b your-branch-name
# Make your changes and stage them for commit
# You can make changes via using text editor like vim or any other through accesing it using git bash
# Add files with git add, make changes, and then git add again if necessary
git add .
# You can add specific file also as eg README.md
git add README.md
# Commit your staged changes with a descriptive message
git commit -m "A descriptive message about your changes"
# Push your new branch and changes to your fork on GitHub
git push origin feature-branch-name