Lat Long Reverse Lookup: Convert Coordinates to Addresses Online

Free lat long reverse lookup tool. Convert coordinates to street addresses online — single lookup or bulk CSV. 461M+ addresses, 200+ countries, no credit card.

| March 18, 2026
Lat Long Reverse Lookup: Convert Coordinates to Addresses Online

A lat long reverse lookup converts GPS coordinates into a street address. You enter two numbers — latitude and longitude — and get back the full address: street, city, state, postal code, and country. It is the fastest way to answer the question "what is at this location?" when all you have is a pair of coordinates.

This guide shows you how to perform a reverse lookup using a free online tool — no software to install, no API key to configure, no code to write. You will also learn how to handle common coordinate format issues, process bulk lookups from a spreadsheet, and choose the right method for your situation.

What Is a Lat Long Reverse Lookup?

A lat long reverse lookup — also called reverse geocoding — takes geographic coordinates and returns the nearest known street address. The term "reverse" refers to the direction: instead of going from address to coordinates (forward geocoding), you go from coordinates to address.

DirectionInputOutputExample
ForwardStreet addressCoordinates"350 5th Ave, New York" → 40.7484, -73.9857
Reverse (lookup)CoordinatesStreet address40.7484, -73.9857 → "350 5th Ave, New York, NY 10118"

Every time your phone displays the street name you are walking on, it performs a reverse lookup. Fleet management systems do the same thing thousands of times per day — converting vehicle GPS pings into delivery addresses. The technology is the same whether you are looking up one coordinate or a million.

Why Lat Long Reverse Lookup Matters in Today’s World

We live in a world that generates coordinates at an unprecedented scale. There are over 6 billion smartphones with GPS chips. Over 300 million commercial vehicles carry fleet trackers. Millions of drones, IoT sensors, wearables, and cameras produce geotagged data every second. All of this hardware generates the same thing: raw latitude and longitude pairs.

But raw coordinates are useless to decision-makers. A logistics manager cannot plan deliveries with "41.8789, -87.6359" — they need "233 S Wacker Dr, Chicago." An insurance adjuster cannot file a claim at "33.7490, -84.3880" — they need "200 Peachtree St NW, Atlanta, GA." A city planner cannot present coordinate lists to a council meeting — they need street names, neighborhoods, and postal codes.

Reverse geocoding is the translation layer between the machine world (coordinates) and the human world (addresses). As GPS-enabled devices multiply, the demand for this translation grows exponentially. Every autonomous vehicle, every delivery drone, every smart city sensor generates data that eventually needs to be reverse geocoded so humans can act on it.

The businesses that benefit most are not just tech companies. Insurance firms reverse geocode claim locations for fraud detection. Real estate platforms convert property coordinates to mailing addresses. Agricultural companies map GPS field boundaries to county records. Emergency services convert 911 caller coordinates to dispatch addresses in real time — where seconds matter. The common thread: someone has coordinates and needs to know the address.

Free Online Reverse Lookup Tool

The CSV2GEO reverse geocoding tool runs entirely in your browser. Enter coordinates, get an address. No account needed for single lookups. The tool covers 200+ countries with rooftop-level address data in 39 countries (461 million addresses).

Try these coordinates:

LandmarkLatitudeLongitudeReturned Address
Empire State Building40.7484-73.9857350 5th Ave, New York, NY 10118, US
Golden Gate Bridge37.8199-122.4783Golden Gate Bridge, San Francisco, CA 94129, US
Statue of Liberty40.6892-74.0445Liberty Island, New York, NY 10004, US
Space Needle47.6205-122.3493400 Broad St, Seattle, WA 98109, US
Willis Tower41.8789-87.6359233 S Wacker Dr, Chicago, IL 60606, US
Fenway Park42.3467-71.09724 Jersey St, Boston, MA 02215, US
Lincoln Memorial38.8893-77.05022 Lincoln Memorial Cir NW, Washington, DC 20037, US
Alcatraz Island37.8267-122.4233Alcatraz Island, San Francisco, CA 94133, US

Each result includes a relevance score from 0 to 1.0. A score of 1.0 means rooftop accuracy — the coordinates fall directly on a known address point. Scores above 0.8 are very reliable. Below 0.5, the system returned the nearest address it could find, which may be hundreds of meters from your coordinates.

How to Perform a Reverse Lookup (Step by Step)

Step 1: Check Your Coordinate Format

Your coordinates must be in decimal degree format. This is the format used by GPS devices, Google Maps, and all modern mapping software. If your data uses a different format, convert it first.

FormatExample (Empire State Building)Action Needed
Decimal Degrees (DD)40.7484, -73.9857Ready to use — this is the standard format
Degrees Minutes Seconds (DMS)40° 44' 54" N, 73° 59' 8.5" WConvert: degrees + minutes/60 + seconds/3600. Apply negative for S/W.
Degrees Decimal Minutes (DDM)40° 44.904' N, 73° 59.142' WConvert: degrees + decimal_minutes/60. Apply negative for S/W.
NMEA (GPS raw)4044.904,N,07359.142,WParse and convert to DD. First two digits are degrees, rest is minutes.

Common mistake: Swapping latitude and longitude. Latitude ranges from -90 to +90 (north/south). Longitude ranges from -180 to +180 (east/west). If your "latitude" value is -73 or +122, those are longitudes — swap the columns. This is the single most common cause of wildly wrong results.

Step 2: Enter Coordinates or Upload a File

For a single lookup, go to the reverse geocoding tool and enter your latitude and longitude. The address appears in seconds.

For multiple coordinates, upload a CSV or Excel file to batch geocoding. Your file should have separate columns for latitude and longitude. Any column names work — the AI auto-detects them — but "latitude"/"longitude" or "lat"/"lng" make detection instant.

Step 3: Select Reverse Mode (Bulk Only)

After uploading, click the "Reverse" toggle in the options bar to switch from forward geocoding to reverse mode. Verify that the latitude and longitude columns are mapped correctly — green labels should appear above each column. Click "Process Data" to preview the first 10 results before committing to the full file.

Step 4: Download Results

The output preserves all your original columns and appends new address fields: street number, street name, city, state, postal code, country, formatted address, and relevance score. Download the file from My Tasks. 100 rows per day free, no credit card.

Understanding the Output Fields

FieldDescriptionExample
House NumberStreet number350
StreetStreet name5th Avenue
CityCity or localityNew York
StateState or provinceNew York
PostcodeZIP or postal code10118
CountryCountry codeUS
Formatted AddressComplete address string350 5th Ave, New York, NY 10118, US
RelevanceMatch confidence (0 to 1.0)1.0 (exact rooftop match)

The relevance score is especially important for reverse lookups. Unlike forward geocoding where you know the address exists, reverse lookups can land on coordinates with no nearby address — an empty field, a highway, the middle of a lake. The score tells you how confident the result is.

Which Method to Use: Tool vs File Upload vs API

MethodBest ForVolumeSkill LevelFree Limit
Online toolQuick single lookups1-10 coordinatesNo codeUnlimited single lookups
CSV/Excel uploadBatch processing spreadsheets10-500,000+ coordinatesNo code100/day
REST APIApplications, pipelines, automationAny volumeDeveloper1,000/day
Python SDKData science, Jupyter notebooksAny volumePython basics1,000/day

Most people reading this guide need the online tool or file upload. If you need programmatic access, see our Reverse Geocoding API guide for a detailed comparison of building vs buying reverse geocoding infrastructure.

Free Reverse Lookup Tools Compared

Several free tools offer lat long reverse lookups. Here is how they compare for non-developers who need to convert coordinates to addresses without writing code.

ToolFree LookupsCSV UploadCountriesAccount Required
CSV2GEO100/day (file) + unlimited singleYes200+No (single), Free account (bulk)
Google MapsManual only (right-click)No200+No
Geocodio2,500/dayYesUS + CA onlyYes
latlong.netLimitedNoGlobal (OSM data)No
Nominatim (OSM)1 req/secondNoGlobalNo

Google Maps lets you right-click any point to see coordinates, but there is no way to process a list of coordinates. Geocodio offers generous free lookups but only covers the US and Canada. Nominatim is free but rate-limited to 1 request per second and has no file upload. CSV2GEO is the only tool that combines free single lookups with bulk CSV/Excel upload and international coverage.

Troubleshooting Common Issues

Results in the wrong country or hemisphere. Your latitude and longitude are probably swapped. Latitude is the smaller number (max 90), longitude can be larger (max 180). For US coordinates, latitude is always 24-49 (continental) and longitude is always negative (-67 to -125). If your "latitude" is -73, that is a longitude.

All results show the same city center. Your coordinates may have insufficient precision. Values like "40, -73" (zero decimal places) resolve to a ~111km area. You need at least 4 decimal places (40.7484, -73.9857) for building-level results.

Missing or empty addresses in the output. The coordinates may be in the ocean, on a highway, or in an area with no address data. Check the relevance score — anything below 0.3 means the system could not find a meaningful address nearby. Filter your output by relevance to identify these rows.

DMS coordinates not working. The tool expects decimal degrees, not degrees-minutes-seconds. Convert first: 40\u00b0 44\u2019 54\u201d N = 40 + 44/60 + 54/3600 = 40.7483. For west/south, make the result negative. Most spreadsheets can do this conversion with a formula.

Addresses look truncated or incomplete. Some rural locations genuinely have sparse address data. The system returns the best available match — sometimes a road name without a house number, or a locality name without a street. The relevance score reflects this: 1.0 = complete address, lower = partial match.

Common Use Cases for Lat Long Reverse Lookup

🚚

Fleet & Delivery

Convert vehicle GPS tracks into delivery addresses for route reports, driver dispatching, and proof-of-delivery logs. Process thousands of coordinate pings daily.

📷

Photo Geotagging

Extract EXIF coordinates from geotagged photos and convert them to location names. Useful for photo libraries, travel blogs, and content management systems.

📡

IoT & Sensors

GPS-enabled sensors on equipment, vehicles, and containers stream coordinates. Reverse lookup maps them to physical addresses for asset tracking dashboards.

🏠

Real Estate

Property databases sometimes include coordinates without street addresses. Reverse lookup fills in the address for listing pages, comparable analysis, and tax records.

Frequently Asked Questions

What is a lat long reverse lookup?

A lat long reverse lookup converts latitude and longitude coordinates into a street address. Also called reverse geocoding, it is the opposite of converting an address to coordinates. Enter coordinates like 40.7484, -73.9857 and get back "350 5th Ave, New York, NY 10118, US."

How do I reverse lookup coordinates for free?

Use the CSV2GEO reverse geocoding tool — enter lat/long, get an address instantly. No account required. For bulk processing, upload a CSV file to batch geocoding — 100 rows per day free.

Can I reverse lookup thousands of coordinates at once?

Yes. Upload a CSV or Excel file with latitude and longitude columns, select Reverse mode, and process the entire file. Files of any size are supported. 100 rows per day free, pay-as-you-go for larger volumes.

What coordinate format is required?

Decimal degrees (e.g., 40.7484, -73.9857). If your data uses degrees-minutes-seconds (DMS), convert first: degrees + minutes/60 + seconds/3600. Apply negative for south latitude and west longitude.

How accurate is reverse geocoding?

CSV2GEO has 461 million rooftop addresses across 200+ countries. Each result includes a relevance score (0 to 1.0). Urban areas with GPS-quality coordinates typically return exact matches (1.0). Rural areas may return the nearest known address with a lower score.

What is the difference between forward and reverse geocoding?

Forward geocoding converts addresses to coordinates ("350 5th Ave" to 40.7484, -73.9857). Reverse geocoding does the opposite — coordinates to addresses. See our address to lat long guide for forward geocoding.

Why are my results in the wrong location?

Most likely your latitude and longitude are swapped. Latitude ranges from -90 to +90, longitude from -180 to +180. For US locations, latitude is 24-49 and longitude is negative (-67 to -125). If your values do not fit this pattern, swap the columns.

Can I also convert addresses to coordinates?

Yes. Use the same batch geocoding tool in forward mode (the default). Upload a file with address columns and get coordinates back. See our CSV geocoding guide for a walkthrough.

Start Your Reverse Lookup Now

Ready to convert coordinates to addresses? Use the reverse geocoding tool for single lookups, or upload a CSV file to batch geocoding for bulk processing. 100 rows free every day, no credit card.

For a deeper technical explanation of how reverse geocoding works, see our reverse geocoding guide. For API integration, see the Reverse Geocoding API guide.

Need help? Visit our Help center or contact us.

I.A.

CSV2GEO Creator

Related Articles

Ready to geocode your addresses?

Use our batch geocoding tool to convert thousands of addresses to coordinates in minutes. Start with 100 free addresses.

Try Batch Geocoding Free →