30.293400N,30.848787E
Created on: May 4, 2026
Answered using GPT-5.5 Thinking by Chat01
Created on: May 4, 2026
Answered using GPT-5.5 Thinking by Chat01
30.293400N,30.848787E
pythonimport sys, os, math, json, pkgutil, glob mods = ['geopandas','shapely','geopy','reverse_geocoder','timezonefinder','cartopy','fiona','pyproj'] {k: pkgutil.find_loader(k) is not None for k in mods} {'geopandas': True, 'shapely': True, 'geopy': True, 'reverse_geocoder': False, 'timezonefinder': False, 'cartopy': False, 'fiona': True, 'pyproj': True}
pythonimport geopandas as gpd, os, glob, pkgutil, pathlib, json, shapely try: print(gpd.datasets.available) except Exception as e: print("datasets error", e) try: path = gpd.datasets.get_path('naturalearth_lowres') print(path) except Exception as e: print("get_path error", e)
pythonfrom math import radians, sin, cos, sqrt, atan2 lat1, lon1 = 30.2934, 30.848787 places = { "Cairo": (30.0444,31.2357), "Giza": (30.0131,31.2089), "Al Khatatbah Air Base": (30.3111,30.8764), "Al-Khatatba village": (30.3595172,30.8176582), "Khatatba station": (30.35,30.8167), "Sheikh Zayed": (30.047,30.976), "6th of October City": (29.9285,30.9188), "Sadat City": (30.367,30.504), "Ashmoun": (30.297,30.976) } def hav(a,b,c,d): R=6371 phi1,phi2=radians(a),radians(c) dphi=radians(c-a); dl=radians(d-b) x=sin(dphi/2)**2+cos(phi1)*cos(phi2)*sin(dl/2)**2 return 2*R*atan2(sqrt(x),sqrt(1-x)) for k,v in places.items(): print(k, hav(lat1,lon1,*v)) # DMS convert def dms(deg): d=int(abs(deg)) m=int((abs
These coordinates are 30.293400° N, 30.848787° E.
They point to Egypt, northwest of Cairo, near the Al-Khatatbah / Khatatba area. The closest verifiable public landmark I found is Al Khatatbah Air Base, published at about 30.3111° N, 30.8764° E, roughly 3.3 km northeast of your point. (GlobalMilitary.net)
Nearby context: Khatatba is a town in Lower Egypt, described as about 43 km north of Cairo and near the Khatatba Canal. (Wikipedia) The nearby village/locality Al-Khatatba is listed around 30.35952° N, 30.81766° E, about 8 km north-northwest of your coordinates. (Mapcarta)
DMS format: 30°17′36.24″N, 30°50′55.63″E. Google Maps expects coordinates in latitude-first, longitude-second order. (support.google.com)