Created
August 12, 2021 19:06
-
-
Save sacundim/c6a016b37a295c804dbeca424e7582ad to your computer and use it in GitHub Desktop.
Población municipal de Puerto Rico según Censo 2020, en formato sencillo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# Datos de aquí: | |
# | |
# * https://www.census.gov/programs-surveys/decennial-census/about/rdo/summary-files.html | |
# | |
# Usa la herramienta `xsv` para procesar el archivo: | |
# | |
# * https://github.com/BurntSushi/xsv | |
# | |
echo "fips,municipio,pop2020" | |
xsv fmt -d '|' prgeo2020.pl \ | |
|xsv search -n -s 3 '^050$' \ | |
|xsv select 10,87,91 \ | |
|iconv -f ISO-8859-1 -t UTF-8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fips | municipio | pop2020 | |
---|---|---|---|
72001 | Adjuntas | 18020 | |
72003 | Aguada | 38136 | |
72005 | Aguadilla | 55101 | |
72007 | Aguas Buenas | 24223 | |
72009 | Aibonito | 24637 | |
72011 | Añasco | 25596 | |
72013 | Arecibo | 87754 | |
72015 | Arroyo | 15843 | |
72017 | Barceloneta | 22657 | |
72019 | Barranquitas | 28983 | |
72021 | Bayamón | 185187 | |
72023 | Cabo Rojo | 47158 | |
72025 | Caguas | 127244 | |
72027 | Camuy | 32827 | |
72029 | Canóvanas | 42337 | |
72031 | Carolina | 154815 | |
72033 | Cataño | 23155 | |
72035 | Cayey | 41652 | |
72037 | Ceiba | 11307 | |
72039 | Ciales | 16984 | |
72041 | Cidra | 39970 | |
72043 | Coamo | 34668 | |
72045 | Comerío | 18883 | |
72047 | Corozal | 34571 | |
72049 | Culebra | 1792 | |
72051 | Dorado | 35879 | |
72053 | Fajardo | 32124 | |
72054 | Florida | 11692 | |
72055 | Guánica | 13787 | |
72057 | Guayama | 36614 | |
72059 | Guayanilla | 17784 | |
72061 | Guaynabo | 89780 | |
72063 | Gurabo | 40622 | |
72065 | Hatillo | 38486 | |
72067 | Hormigueros | 15654 | |
72069 | Humacao | 50896 | |
72071 | Isabela | 42943 | |
72073 | Jayuya | 14779 | |
72075 | Juana Díaz | 46538 | |
72077 | Juncos | 37012 | |
72079 | Lajas | 23334 | |
72081 | Lares | 28105 | |
72083 | Las Marías | 8874 | |
72085 | Las Piedras | 35180 | |
72087 | Loíza | 23693 | |
72089 | Luquillo | 17781 | |
72091 | Manatí | 39492 | |
72093 | Maricao | 4755 | |
72095 | Maunabo | 10589 | |
72097 | Mayagüez | 73077 | |
72099 | Moca | 37460 | |
72101 | Morovis | 28727 | |
72103 | Naguabo | 23386 | |
72105 | Naranjito | 29241 | |
72107 | Orocovis | 21434 | |
72109 | Patillas | 15985 | |
72111 | Peñuelas | 20399 | |
72113 | Ponce | 137491 | |
72115 | Quebradillas | 23638 | |
72117 | Rincón | 15187 | |
72119 | Río Grande | 47060 | |
72121 | Sabana Grande | 22729 | |
72123 | Salinas | 25789 | |
72125 | San Germán | 31879 | |
72127 | San Juan | 342259 | |
72129 | San Lorenzo | 37693 | |
72131 | San Sebastián | 39345 | |
72133 | Santa Isabel | 20281 | |
72135 | Toa Alta | 66852 | |
72137 | Toa Baja | 75293 | |
72139 | Trujillo Alto | 67740 | |
72141 | Utuado | 28287 | |
72143 | Vega Alta | 35395 | |
72145 | Vega Baja | 54414 | |
72147 | Vieques | 8249 | |
72149 | Villalba | 22093 | |
72151 | Yabucoa | 30426 | |
72153 | Yauco | 34172 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment