Export Google Maps Places to CSV with Coordinates (Lat/Lng)
Learn how to export Google Maps places with coordinates (latitude/longitude) for spreadsheets and data analysis. Complete guide for adding missing coordinates to your Google Takeout exports.
July 8, 2025
β’7 min read
Have a Google Maps list link? Get your places now
Open your list in Google Maps, tap Share, copy the link, and paste it here β no Takeout export needed.
When you export your Google Maps saved places through Google Takeout, you get a CSV file that seems perfect for spreadsheet work - names, addresses, notes, all neatly organized. Then you try to plot these places on a map or calculate distances, and you hit the wall: no coordinates. Google exports the "what" and "where" of your saved places, but not the precise geographic data you need for actual analysis.
This guide walks through how to get your saved places into a CSV format that includes proper latitude and longitude coordinates.
Why CSV with Coordinates?
A CSV with coordinates transforms your saved places from a simple list into genuinely useful data:
Analysis capabilities: Calculate distances between locations, identify clusters, create heat maps, or find the geographic center of your saved places. Spreadsheet formulas can do a lot with lat/long data.
Visualization options: Import into mapping tools like Google My Maps, Tableau, QGIS, or any platform that accepts CSV with coordinate columns. Create custom visualizations without being locked into Google's interface.
Integration flexibility: Load your places into databases, combine with other datasets, or use as input for custom applications. Coordinates are the universal language for geographic data.
Proper backup: An address-only export isn't truly portable - addresses need interpretation. Coordinates are unambiguous and work anywhere.
The Missing Coordinates Problem
When you download your saved places through Google Takeout, the CSV includes:
- Title (place name)
- Note (your notes, if any)
- URL (link to Google Maps)
- Address
What's conspicuously absent: latitude and longitude. Google's export gives you enough to find a place manually, but not enough to use programmatically. To work with your data in spreadsheets, mapping tools, or any analysis software, you need to geocode it first.
Looking for a different format? If you need your places for a GPS device or navigation app rather than spreadsheet analysis, check out our GPX export guide or KML export guide instead.
How to Export and Geocode Your Places
Step 1: Download from Google Takeout
- Go to Google Takeout
- Click "Deselect all" at the top
- Find and select only "Saved" - this contains your Google Maps saved places
- Click "Next step" β "Create export"
- Wait for the email, download, and unzip
Inside the "Saved" folder, you'll find CSV files for each of your lists (Starred Places, Want to go, custom lists, etc.).
Step 2: Add Coordinates
The CSV files need geocoding - converting addresses to lat/long coordinates. For most users, a service like Takeout Tools handles this automatically: upload your CSV files, and download them with coordinates added.
If you prefer to do it yourself, you have a couple of options:
Manual lookup: For small lists (under 10-15 places), you can look up each location in Google Maps, right-click β "What's here?", and copy the coordinates into your spreadsheet.
Geocoding APIs: Google Geocoding API, Nominatim (OpenStreetMap), or Mapbox can programmatically geocode addresses. This requires developer knowledge and potentially API costs, but works well for large datasets or recurring needs.
Step 3: Work with Your Data
After geocoding, your CSV will have two new columns: Latitude and Longitude. The structure looks like this:
Title,Address,Notes,URL,Latitude,Longitude
"Central Park","New York, NY","Morning runs","https://maps.google.com/...",40.7829,-73.9654
"Golden Gate Bridge","San Francisco, CA","","https://maps.google.com/...",37.8199,-122.4783
Working with Geocoded CSV Data
In Google Sheets
- Import your CSV (File β Import)
- For distance calculations between two points, use the Haversine formula or a custom function
- Create charts based on coordinate data
- Use conditional formatting to highlight places in specific regions
In Excel
- Open the CSV directly or import via Data β From Text/CSV
- Use 3D Maps (Insert β 3D Map) to visualize your places geographically
- Create pivot tables to analyze places by list, region, or other attributes
- Export to other formats as needed
In Mapping Tools
Most mapping platforms accept CSV with coordinate columns:
- Google My Maps: Import β Select file β Choose lat/long columns
- Tableau: Connect to CSV, Tableau auto-detects geographic fields
- QGIS: Layer β Add Layer β Add Delimited Text Layer β set X field to Longitude, Y field to Latitude, CRS to EPSG:4326 (WGS 84)
- Kepler.gl: Drag and drop your CSV for instant visualization
Pro Tips
-
Keep the original columns. When geocoding, don't delete the address column - it's useful for verification and for places where geocoding might be slightly off.
-
Verify outliers. Sort your spreadsheet by latitude and longitude to spot places that geocoded to the wrong location (often visible as coordinates far from the expected range).
-
Name your columns consistently. Use "Latitude" and "Longitude" (or "lat" and "lng") - these are what most tools expect. "Lat/Long" or "GPS Coordinates" in a single column won't work with most import tools.
-
Consider precision. Six decimal places in coordinates gives you accuracy to about 10cm - more than enough for saved places. Truncating to 4 decimal places (11m accuracy) keeps files smaller if you have thousands of places.
-
Export lists separately. If you have multiple lists with different purposes (restaurants, travel destinations, work locations), keep them as separate CSVs for easier analysis.
Fields Google Does Not Export
Date added: Google Takeout does not include the date a place was added to a list. This field is unavailable from any export method β there is no workaround. If the date matters to you, note it manually before exporting.
Dropped Pin entries: If you've saved places by long-pressing on the map (creating a "Dropped Pin" with no business name), those entries export with only a generic name like "Dropped pin" and a street address β no actual place name. Geocoding these will usually succeed (using the address), but the result will show the street address rather than a meaningful name. Google has the original coordinate for dropped pins but doesn't include it in the Takeout export.
Frequently Asked Questions
Free Tools
Have geo files you need to convert to CSV? Use our free browser-based converters:
- GPX to CSV Converter - Convert GPS waypoints to spreadsheet format
- KML to CSV Converter - Convert Google Earth placemarks to CSV
- GeoJSON to CSV Converter - Convert GeoJSON features to CSV
See Other Export Guides
Looking for different output formats?
- Export Google Maps Saved Places to Excel (.xlsx)
- How to Get a Google Maps List into Google Sheets
- Export Google Maps Saved Places: Complete Guide (All Formats)
- How to Export Google Maps Saved Places as GPX
- How to Export Google Maps Saved Places as KML
- How to Export Google Maps Saved Places as GeoJSON