Skip to content

Commit

Permalink
WIP: adding municipalitis of nicaragua
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavochavarria committed Sep 28, 2019
1 parent 8fe72c5 commit d3117d0
Showing 1 changed file with 56 additions and 10 deletions.
66 changes: 56 additions & 10 deletions src/municipalities.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
const managua = [
{'001': 'Managua'},
{'002': 'San Rafael Del Sur'},
{'003': 'Tipitapa'},
{'004': 'Villa Carlos Fonseca'},
{'005': 'San Francisco Libre'},
{'006': 'Mateare'}
const boaco = [
{'361': 'Boaco'},
{'362': 'Camoapa'},
{'363': 'Santa Lucía'},
{'364': 'San José Del Remate'},
{'365': 'San Lorenzo'},
{'366': 'Teustepe'}
];

const leon = [{'281': 'Leon'}];
const carazo = [
{'041': 'Jinotepe'},
{'042': 'Diriamba'},
{'043': 'San Marcos'},
{'044': 'Santa Teresa'},
{'045': 'Dolores'},
{'046': 'La Paz Carazo'},
{'047': 'El Rosario'},
{'048': 'La Conquista'}
];

const chinandega = [
{'081': 'Chinandega'},
Expand All @@ -16,7 +25,44 @@ const chinandega = [
{'084': 'Chichigalpa'},
{'085': 'Posoltega'},
{'086': 'El Viejo'},
{'087': 'Puerto Morazán'}
{'087': 'Puerto Morazán'},
{'088': 'Somotillo'},
{'089': 'Villa Nueva'},
{'090': 'Santo Tomás del Norte'},
{'091': 'Cinco Pinos'},
{'092': 'San Francisco Del Norte'},
{'093': 'San Pedro Del Norte'}
];

export const municipalities = [...managua, ...leon, ...chinandega];
const chontales = [
{'121': 'Juigalpa'},
{'122': 'Acoyapa'},
{'123': 'Santo Tomás'},
{'124': 'Villa Sandino'},
{'125': 'San Pedro de Lóvago'},
{'126': 'La Libertad'},
{'127': 'Santo Domingo'},
{'128': 'Comalapa'},
{'129': 'San Francisco Cuapa'},
{'130': 'El Coral'}
];

const managua = [
{'001': 'Managua'},
{'002': 'San Rafael Del Sur'},
{'003': 'Tipitapa'},
{'004': 'Villa Carlos Fonseca'},
{'005': 'San Francisco Libre'},
{'006': 'Mateare'}
];

const leon = [{'281': 'Leon'}];

export const municipalities = [
...boaco,
...carazo,
...chinandega,
...chontales,
...leon,
...managua
];

0 comments on commit d3117d0

Please sign in to comment.