I'm trying to get a list of mountains containing the mountain's name, its elevation, and the country it's in. I still don't get the hang of Entities. I can get a list of mountains and their elevations as follows:
mountains = EntityClass["Mountain", "Elevation" -> TakeLargest[200]] // EntityList;
names = MountainData[#, "Name"] & /@ mountains;
elevations = MountainData[#, "Elevation"] & /@ mountains];
I've tried a lot of wrong ways to get the country. I see that there's an Administrative Division that's available, but I find myself descending into nested layers of properties.
"Countries". For example Mount Everest is in China and Nepal. $\endgroup$