attempts to find the current geo location of your computer.
FindGeoLocation["ip"]
gives an estimate of the geo location associated with the IP address given.
FindGeoLocation["address"]
attempts to find the geo location associated with the street address given.
FindGeoLocation[entity]
gives the geo location associated with the specified entity.
FindGeoLocation
attempts to find the current geo location of your computer.
FindGeoLocation["ip"]
gives an estimate of the geo location associated with the IP address given.
FindGeoLocation["address"]
attempts to find the geo location associated with the street address given.
FindGeoLocation[entity]
gives the geo location associated with the specified entity.
Details
- FindGeoLocation[] may use built-in GPS or other capabilities, or may use geoIP lookup through the internet. Different methods may give results with different accuracy or correctness.
- IP addresses can be specified in the form "nnn.nnn.nnn.nnn" or as IPAddress[…].
- FindGeoLocation returns a GeoPosition object containing {latitude,longitude} or {latitude,longitude,elevation} or containing Missing["NotAvailable"] if it cannot find an explicit geodetic location.
- FindGeoLocation utilizes data from OpenStreetMap, © OpenStreetMap contributors.
Examples
open all close allBasic Examples (2)
Find your geodetic coordinates:
FindGeoLocation[]Find the coordinates of a famous square in Paris:
FindGeoLocation["Pl. de l'Opéra, 75009 Paris"]Get a satellite map of the area:
GeoGraphics[%, GeoRange -> Quantity[200, "Meters"], GeoBackground -> "Satellite"]Scope (4)
FindGeoLocation[]Find the coordinates of a street address:
FindGeoLocation["221B Baker St, London, England"]Find the coordinates corresponding to an IP address:
HostLookup["www.wolframalpha.com"]FindGeoLocation /@ %The IP address can also be provided directly:
FindGeoLocation["140.177.50.10"]Find the coordinates of a geo entity:
FindGeoLocation[Entity["Building", "OperaGarnier::hsy2g"]]Properties & Relations (3)
The default values of $GeoLocation and Here are determined by FindGeoLocation[]:
FindGeoLocation[]$GeoLocationHereIf the value of $GeoLocation is manually changed, then FindGeoLocation can be used to restore its default:
$GeoLocation = GeoPosition[{0, 0}]FindGeoLocation[]$GeoLocation = %FindGeoLocation[entity] is equivalent to GeoPosition[entity] and EntityValue[entity, "Position"]:
entity = Entity["Bridge", "NewSanFrancisco-OaklandBayBridge::3n492"]FindGeoLocation[entity]GeoPosition[entity]EntityValue[entity, "Position"]For a street address stad, FindGeoLocation[stad] is equivalent to Interpreter["StreetAddress"][stad]:
stad = "100 Trade Center Dr, Champaign IL";FindGeoLocation[stad]Interpreter["StreetAddress"][stad]See Also
$GeoLocation Here GeoPosition Interpreter $MachineAddresses $MachineDomains IPAddress WikipediaData
Function Repository: IPStackData
Text
Wolfram Research (2008), FindGeoLocation, Wolfram Language function, https://reference.wolfram.com/language/ref/FindGeoLocation.html (updated 2014).
CMS
Wolfram Language. 2008. "FindGeoLocation." Wolfram Language & System Documentation Center. Wolfram Research. Last Modified 2014. https://reference.wolfram.com/language/ref/FindGeoLocation.html.
APA
Wolfram Language. (2008). FindGeoLocation. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/FindGeoLocation.html
BibTeX
@misc{reference.wolfram_2026_findgeolocation, author="Wolfram Research", title="{FindGeoLocation}", year="2014", howpublished="\url{https://reference.wolfram.com/language/ref/FindGeoLocation.html}", note=[Accessed: 13-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_findgeolocation, organization={Wolfram Research}, title={FindGeoLocation}, year={2014}, url={https://reference.wolfram.com/language/ref/FindGeoLocation.html}, note=[Accessed: 13-June-2026]}