diff --git a/AerialDistanceCalc/Aerial_Distance_Calc.ipynb b/AerialDistanceCalc/Aerial_Distance_Calc.ipynb
new file mode 100644
index 0000000..fb3d278
--- /dev/null
+++ b/AerialDistanceCalc/Aerial_Distance_Calc.ipynb
@@ -0,0 +1,68 @@
+{
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from geopy.geocoders import Nominatim, ArcGIS\n",
+ "from geopy import distance\n",
+ "import folium\n",
+ "geodecoder = Nominatim(user_agent=\"python\")\n",
+ "\n",
+ "location1 = input(\"\\nEnter your starting location : \")\n",
+ "location2 = input(\"Enter your Destination : \")\n",
+ "\n",
+ "coordinates1 = geodecoder.geocode(location1)\n",
+ "coordinates2 = geodecoder.geocode(location2)\n",
+ "\n",
+ "a = ArcGIS()\n",
+ "loca1 = a.geocode(location1)\n",
+ "loca1lat = loca1.latitude\n",
+ "loca1lon = loca1.longitude\n",
+ "loca2 = a.geocode(location2)\n",
+ "loca2lat = loca2.latitude\n",
+ "loca2lon = loca2.longitude\n",
+ "map = folium.Map(location=[loca1lat,loca1lon],zoom_start=4)\n",
+ "locationcap1 = location1.capitalize()\n",
+ "locationcap2 = location2.capitalize()\n",
+ "\n",
+ "startingLoc = (loca1lat, loca1lon)\n",
+ "destination = (loca2lat, loca2lon)\n",
+ "\n",
+ "diststr = str(distance.distance(startingLoc,destination)).split(\".\",2)[0]\n",
+ "\n",
+ "\n",
+ "print(f\"Aerial Distance between your location is {diststr} km (approx..)\")\n",
+ "map.add_child(folium.Marker(location=[loca2lat,loca2lon],popup=locationcap2,icon=folium.Icon(color=\"red\")))\n",
+ "map.add_child(folium.Marker(location=[loca1lat,loca1lon],popup=locationcap1,icon=folium.Icon(color=\"red\")))"
+ ]
+ }
+ ],
+ "metadata": {
+ "interpreter": {
+ "hash": "ab3298061894ea8e9f63d33ee7154e99389b529bdefd6424b2d3fed3fb422773"
+ },
+ "kernelspec": {
+ "display_name": "Python 3.9.7 64-bit",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.9.7"
+ },
+ "orig_nbformat": 4
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}
diff --git a/AerialDistanceCalc/Aerial_Distance_Calc.py b/AerialDistanceCalc/Aerial_Distance_Calc.py
new file mode 100644
index 0000000..740be7e
--- /dev/null
+++ b/AerialDistanceCalc/Aerial_Distance_Calc.py
@@ -0,0 +1,27 @@
+from geopy.geocoders import Nominatim
+from geopy import distance
+
+geodecoder = Nominatim(user_agent="python")
+
+print("""
+ WELCOME TO AERIAL DISTANCE CALCULATOR!
+""")
+
+location1 = input("\tEnter your current location : ")
+location2 = input("\tEnter your destination : ")
+
+coordinates1 = geodecoder.geocode(location1)
+coordinates2 = geodecoder.geocode(location2)
+
+lat1 = coordinates1.latitude
+lon1 = coordinates1.longitude
+lat2 = coordinates2.latitude
+lon2 = coordinates2.longitude
+
+starting = (lat1, lon1)
+destination = (lat2, lon2)
+
+dist = distance.distance(starting, destination)
+diststr = str(dist)
+accdist = diststr.split(".", 2)[0]
+print(f"\n\tYour aerial distance would b around {accdist} km (approx).")
diff --git a/AerialDistanceCalc/README.md b/AerialDistanceCalc/README.md
new file mode 100644
index 0000000..9d43211
--- /dev/null
+++ b/AerialDistanceCalc/README.md
@@ -0,0 +1,39 @@
+
+# Aerial_Distance_Calculator [![](https://img.shields.io/badge/Language-Python-blue?logo=python&style=for-the-badge)](https://www.python.org/) [![](https://img.shields.io/badge/Language-Jupyter-orange?logo=jupyter&style=for-the-badge)](https://jupyter.org/)
+
+### ***This program can calculate the Aerial Distance between two cities.***
+
+
+### This repository include both Jupyter notebook and Python file of this program.
+
+
+### *JUPYTER NOTEBOOK*
+- Calculates distance
+- Displays locations over map
+
+- Modules required :
+
+ > FOLIUM - `pip install folium`
+
+ > GEOPY - `pip install geopy`
+
+
+### *PYTHON*
+- Calculates distance
+
+- Modules required :
+
+ > FOLIUM - `pip install folium`
+
+ > GEOPY - `pip install geopy`
+
+
+
+
+### *TOOLS*
+[](https://code.visualstudio.com/) [](https://www.python.org/) [](https://jupyter.org/)
+
+