Rating:

Use service to get locations, python script here

```
from geopy.geocoders import Nominatim

geolocator = Nominatim(user_agent="jame234s2")
location = geolocator.reverse("52.509669, 13.376294")

locations = ""
with open("enc.txt") as f:
locations = f.read()

loclist = locations[1:][:-1].split(")(")
# print(loclist)
print("performing lookups")
output = [geolocator.reverse((loc),language="en-gb").raw["address"]["country"] for loc in loclist]
print(output)
flag = "nactf{"
for country in output:
flag = flag + country[0]
flag = flag + "}"
print(flag)
```

All crypto and general skills writeups here: [https://github.com/blatchley/CTF_Writeups/blob/master/2020/NACTF/general/GeneralWriteups.md#world-trip](https://github.com/blatchley/CTF_Writeups/blob/master/2020/NACTF/general/GeneralWriteups.md#world-trip)