Ex-Intern at KMC | Ex-Intern at MSL RENEWABLE ENERGY POWER PRIVATE LIMITED | MS Student in GIS at SUNY Buffalo | Member of NYS GIS Association | Specializing in Spatial Data Science, Water Systems, Environment & Spatial Modelling and Urban Development Projects
View CVDriven by a Master's in Geographic Information Systems and a Bachelor's in Geo-Informatics, I bring a strong foundation in geospatial analysis, data management (including MySQL), and real-life problem solving. My work experience spans academic roles, municipal utility projects, and renewable energy planning with deep involvement in GIS and remote sensing technologies.A GIS professional with strong foundations in geospatial analysis, remote sensing, and machine learning. Experienced with ArcGIS Pro, QGIS, ENVI, Python, and R to analyze spatial patterns. Skilled in database systems including ArcGIS Enterprise and MySQL for urban infrastructure mapping.Passionate about leveraging spatial insights to inform smart city planning and disaster response. Adept at delivering data-driven geospatial solutions through modern tools and interdisciplinary research.
Student Assistant – Department of Geography, University at Buffalo (Feb 2024 – Ongoing)
GIS Intern – Municipal Corporation Kakinada (Jul 2024 - Aug 2024)
State University of New York at Buffalo
Master of Science in Geographic Information Science | CGPA: 3.64/4 | Aug 2023 – May 2025
Andhra University
Bachelor of Technology in Geo-Informatics | CGPA: 3.14/4 | Aug 2019 – May 2023
My professional goals are rooted in leveraging Geographic Information Systems (GIS), Remote Sensing, and Artificial Intelligence to address global challenges in urban planning, environmental sustainability, and disaster resilience. I aim to apply advanced geospatial analytics to improve decision-making in water resource management, climate change monitoring, and infrastructure development. I am particularly interested in integrating machine learning with GIS to build predictive models for risk assessment and smart city planning. I aspire to contribute to projects that involve spatial data infrastructure, autonomous mobility systems, and community-driven GIS platforms that promote equity and efficiency in urban services. My long-term goal is to lead innovative GIS initiatives that drive sustainable development and empower policy makers with actionable spatial intelligence.
Wildfires have become an increasingly severe threat to ecosystems and human infrastructure, particularly in California, where climate variability and expanding development in wildland-urban interfaces have intensified fire events, such as the Camp Fire (2018), Dixie Fire (2021), and Palisade Fire (2025). The 2025 Palisade Wildfire caused significant structural damage, highlighting the urgent need for rapid, accurate, and scalable damage assessment techniques. This study presents a machine learning (ML) and Geographic Information System (GIS)-integrated framework for building damage classification using high-resolution satellite imagery.
Multitemporal 3-meter, 8-band imagery from Planet Explorer was used to derive key spectral indices—Normalized Difference Vegetation Index (NDVI) and Normalized Burn Ratio (NBR)—for pre- and post-fire conditions. From these, delta indices (ΔNDVI and ΔNBR) were calculated to measure vegetation loss and burn severity. Additional geospatial variables such as slope (DEM), land cover (NLCD), and wind speed (Global Wind Atlas) were integrated using ArcGIS Pro. Four ML models (RF, SVM, LR, XGBoost) were tested. XGBoost achieved the best accuracy of 83.2% with an F1-score of 0.90 (Damaged) and 0.53 (Undamaged). Results were visualized through an interactive Folium web map.
For Complete Project Report Click Here
import pandas as pd import numpy as np from sklearn.model_selection import train_test_split, GridSearchCV from sklearn.preprocessing import LabelEncoder, StandardScaler from sklearn.ensemble import RandomForestClassifier, StackingClassifier from sklearn.svm import SVC from sklearn.linear_model import LogisticRegression from xgboost import XGBClassifier from sklearn.metrics import (classification_report, confusion_matrix, accuracy_score, precision_score, recall_score, f1_score) import geopandas as gpd import folium from folium import GeoJsonTooltip import matplotlib.pyplot as plt import seaborn as sns