PowerShell/Scripts/locate-city.ps1

45 lines
945 B
PowerShell
Raw Normal View History

2021-08-26 10:46:12 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
locate-city.ps1 [<city>]
.DESCRIPTION
Prints the geographic location of the given city
.EXAMPLE
PS> .\locate-city.ps1 Paris
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
2021-08-03 15:53:57 +02:00
Author: Markus Fleschutz
License: CC0
2020-12-29 15:14:21 +01:00
#>
2020-11-01 12:11:15 +01:00
2021-07-15 15:51:22 +02:00
param([string]$City = "")
2021-02-18 20:17:55 +01:00
2020-11-01 12:11:15 +01:00
try {
2021-07-15 15:51:22 +02:00
if ($City -eq "" ) { $City = read-host "Enter the city name" }
2020-11-06 15:30:14 +01:00
write-progress "Reading worldcities.csv..."
2021-04-21 19:53:52 +02:00
$Table = import-csv "$PSScriptRoot/../Data/worldcities.csv"
2020-12-25 11:30:43 +01:00
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 {
2021-05-02 21:30:48 +02:00
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2020-12-09 10:30:55 +01:00
exit 1
}