... | @@ -32,7 +32,7 @@ Specifically, we wanted to allow user input for these decisions: |
... | @@ -32,7 +32,7 @@ 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.
|
|
**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.
|
|
|
|
|
|
<details><summary> See Code Snippet</summary>
|
|
- <details><summary> See Code Snippet</summary>
|
|
|
|
|
|
```
|
|
```
|
|
Scanner askUser = new Scanner(System.in);
|
|
Scanner askUser = new Scanner(System.in);
|
... | @@ -46,7 +46,7 @@ System.out.println("Hello! Welcome to this Google Earth Tweet and WMS Mapper.\n\ |
... | @@ -46,7 +46,7 @@ System.out.println("Hello! Welcome to this Google Earth Tweet and WMS Mapper.\n\ |
|
|
|
|
|
**2.** Ask the user if they would like to **see additional information** on the WMS while the programme is running.
|
|
**2.** Ask the user if they would like to **see additional information** on the WMS while the programme is running.
|
|
|
|
|
|
<details><summary> See Code Snippet</summary>
|
|
- <details><summary> See Code Snippet</summary>
|
|
|
|
|
|
```
|
|
```
|
|
Scanner askServiceInfo = new Scanner(System.in);
|
|
Scanner askServiceInfo = new Scanner(System.in);
|
... | @@ -60,7 +60,7 @@ Scanner askServiceInfo = new Scanner(System.in); |
... | @@ -60,7 +60,7 @@ Scanner askServiceInfo = new Scanner(System.in); |
|
|
|
|
|
**3.** Ask the user if they would like to **proceed to launch** Google Earth. This step also made sure that the programme would halt again (giving the user some time to actually read the console output before Google Earth launches). If the users does not answer with some form of "yes", the programme will end with a friendly good-bye message.
|
|
**3.** Ask the user if they would like to **proceed to launch** Google Earth. This step also made sure that the programme would halt again (giving the user some time to actually read the console output before Google Earth launches). If the users does not answer with some form of "yes", the programme will end with a friendly good-bye message.
|
|
|
|
|
|
<details><summary> See Code Snippet</summary>
|
|
- <details><summary> See Code Snippet</summary>
|
|
|
|
|
|
```
|
|
```
|
|
Scanner askContinue = new Scanner(System.in);
|
|
Scanner askContinue = new Scanner(System.in);
|
... | | ... | |