2020-11-01 12:11:15 +01:00
|
|
|
#!/snap/bin/powershell
|
|
|
|
|
2020-12-14 07:48:21 +01:00
|
|
|
# Syntax: ./locate-city.ps1 [<city>]
|
2020-12-16 12:03:47 +01:00
|
|
|
# Description: prints the geographic location of the given city
|
2020-11-01 12:11:15 +01:00
|
|
|
# Author: Markus Fleschutz
|
|
|
|
# Source: github.com/fleschutz/PowerShell
|
|
|
|
# License: CC0
|
|
|
|
|
|
|
|
param([string]$City)
|
2020-11-06 15:30:14 +01:00
|
|
|
if ($City -eq "" ) {
|
2020-11-22 10:36:46 +01:00
|
|
|
$City = read-host "Enter the city"
|
2020-11-06 15:30:14 +01:00
|
|
|
}
|
2020-11-01 12:11:15 +01:00
|
|
|
|
|
|
|
try {
|
2020-11-06 15:30:14 +01:00
|
|
|
write-progress "Reading worldcities.csv..."
|
2020-12-25 11:30:43 +01:00
|
|
|
$PathToRepo=(get-item $MyInvocation.MyCommand.Path).directory.parent
|
|
|
|
$Table = import-csv "$PathToRepo/Data/worldcities.csv"
|
|
|
|
|
2020-11-01 12:11:15 +01:00
|
|
|
$FoundOne = 0
|
|
|
|
foreach($Row in $Table) {
|
|
|
|
if ($Row.city -eq $City) {
|
|
|
|
$FoundOne = 1
|
|
|
|
$Country = $Row.country
|
|
|
|
$Region = $Row.admin_name
|
|
|
|
$Lat = $Row.lat
|
|
|
|
$Long = $Row.lng
|
|
|
|
$Population = $Row.population
|
2020-11-22 10:36:46 +01:00
|
|
|
write-host "* $City ($Country, $Region, population $Population) is at $Lat°N, $Long°W"
|
2020-11-01 12:11:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($FoundOne) {
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
write-error "City $City not found"
|
|
|
|
exit 1
|
2020-12-09 10:30:55 +01:00
|
|
|
} catch {
|
2020-12-25 11:30:43 +01:00
|
|
|
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2020-12-09 10:30:55 +01:00
|
|
|
exit 1
|
|
|
|
}
|