In Google Maps you can click on any point of interest on the map to see details and, optionally, you can click “Save” to save the point for later reference.
When you click “Save” you’re presented with a list of options: Favorites, Want to go, Starred places, plus any lists you’ve created previously:
You might imagine, because of the way they’re presented, that each of these options simply represents a co-equal category in the “Your Places” section in Google Maps, and certainly the way the lists are presented there suggests this is the case:
It turns out, however, that under the hood, at least as far as your ability to export your places using Google Takeout is concerned, these are very different categories.
Starred places
The Starred places list is exported from Google Takeout via the Maps (your places) export:
The list that gets exported as a result is a GeoJSON file with each starred place represented like this:
{
"geometry" : {
"coordinates" : [ -0.1305119, 51.5109554 ],
"type" : "Point"
},
"properties" : {
"Google Maps URL" : "http://maps.google.com/?cid=14538551136252988017",
"Location" : {
"Address" : "5-6 Leicester Square, London WC2H 7NA, United Kingdom",
"Business Name" : "Cineworld Cinema - London Leicester Square",
"Country Code" : "GB",
"Geo Coordinates" : {
"Latitude" : "51.5109554",
"Longitude" : "-0.1305119"
}
},
"Published" : "2016-05-15T16:32:36Z",
"Title" : "Empire Cinema",
"Updated" : "2016-05-15T16:32:36Z"
},
"type" : "Feature"
}
That’s about as much information as I’d ever want about a starred place, and it’s very helpful to have.
Everything else
Everything else–Favorites, Want to go, plus any lists you’ve created previously–is available from Google Takeout via the Saved export:
These places cannot be exported as a helpful GeoJSON file, only as a CSV, and the CSV only contains the title of the saved place, any note you added, its Google Maps URL and any comments:
Title,Note,URL,Comment
Cyclesmith,,https://www.google.com/maps/place/Cyclesmith/data=!4m2!3m1!1s0x4b5a222a1bfe6b69:0xf8fad3e13f099e36,
3660 Strawberry Hill St,,https://www.google.com/maps/place/3660+Strawberry+Hill+St/data=!4m2!3m1!1s0x4b5a21095c7e943b:0xcaafa3916fb4a0e6,
Sportwheels Sports Excellence,,https://www.google.com/maps/place/Sportwheels+Sports+Excellence/data=!4m2!3m1!1s0x4b5988577cfca89f:0x7002bb9c32866180,
The eBike Centre Halifax,,https://www.google.com/maps/place/The+eBike+Centre+Halifax/data=!4m2!3m1!1s0x4b5a2367215d4d2b:0x51aa4206ac656daf,
Dragon E Bikes Ltd,,https://www.google.com/maps/place/Dragon+E+Bikes+Ltd/data=!4m2!3m1!1s0x4b5a21a86a32afe3:0xc6fe4d5ec596b038,
There’s no geographical information in the file.
If you’ve been treating Google Maps’ ability to save places as a way of building up a list of places that you later hope to use in some other system, you’ll want to consider only saving to the Starred places list, as it provides the greatest flexibility for later export.
Add new comment