Update End of Term Assignment authored by Zorenböhmer Christina's avatar Zorenböhmer Christina
......@@ -32,13 +32,13 @@ Specifically, we wanted to allow user input for these decisions:
1. Ask the user to choose a local directory, where the programme would store the tweets.csv, tweets.kml, boston.png, and boston.kml files.
`
```
Scanner askUser = new Scanner(System.in);
System.out.println("Hello! Welcome to this Google Earth Tweet and WMS Mapper.\n\nBefore we get started, could you please enter a local directory (= a folder) where a few files may be stored?\n"
+ "Simply enter a filepath below and hit enter.\nAn example would look like this: C:\\\\Users\\\\Christina\\\\Documents\\\\EoT");
directory = askUser.next();
directory = askUser.next();
```
`
2. Ask the user if they would like to see additional information on the WMS while the programme is running
......
......