Skip to content

A Python package designed to provide easy access to the geographic coordinates (latitude and longitude) of various Egyptian subdivisions.

License

Notifications You must be signed in to change notification settings

srahabib/EGYGEO

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EGYGEO

EGYGEO is a Python package designed to provide easy access to the geographic coordinates (latitude and longitude) of various Egyptian subdivisions. It offers a function, get_coordinates, allowing users to retrieve the geographic coordinates of a specified Egyptian subdivision by providing its name in either Arabic or English.

Installation

You can install egygeo using pip:

pip install egygeo

Usage

from egygeo import get_coordinates

# Get coordinates for Cairo
latitude, longitude = get_coordinates('Cairo')
print(f"The coordinates of Cairo are: {latitude}, {longitude}")
from egygeo import get_name

lat, lon = 29.8951716, 31.1991806
location_name = get_name(lat, lon)
print(f"The subdivision at {lat}, {lon} is: {location_name}")

About

A Python package designed to provide easy access to the geographic coordinates (latitude and longitude) of various Egyptian subdivisions.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages