Skip to content

Instantly share code, notes, and snippets.

@Meekohi
Created July 19, 2019 20:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Meekohi/d03154775c68aac00470419fe2a6a5ac to your computer and use it in GitHub Desktop.
Save Meekohi/d03154775c68aac00470419fe2a6a5ac to your computer and use it in GitHub Desktop.
Urban Areas above 50,000 in population
curl -s -B "https://www2.census.gov/geo/docs/reference/ua/ua_list_all.txt" | iconv -f iso8859-1 -t utf-8 | awk -F ',|( +)' '{ if(NR > 1 && $4 > 50000) {print $2} }' | LC_ALL=C sed $'s/--/\\\n/g' | sed 's/ County//g' |sort | uniq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment