You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,11 +34,11 @@ You can also retrieve location details using latitude and longitude.
34
34
from geodb_finder import search_by_coordinates
35
35
36
36
# Search by latitude and longitude
37
-
result = search_by_coordinates("51.5074", "-0.1278") #London coordinates
37
+
result = search_by_coordinates("52n22", "6e27") #Example coordinates
38
38
print(result) # Returns a dictionary with city, latitude, longitude, timezone, and country
39
39
```
40
40
41
-
**Note:** An asynchronous version of this function is available as `search_by_coordinates_async(latitude: str, longitude: str)`.
41
+
**Note:** An asynchronous version of this function is available as `search_by_coordinates_async(latitude: str, longitude: str)`, and it follows the same coordinate format.
0 commit comments