npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

territory-gt

v1.0.5

Published

Obtén los departamentos de Guatemala y sus Municipios.

Downloads

31

Readme

territory-gt

Departamentos y Municipios de Guatemala para programadores.

Los datos están actualizados hasta el 14 de diciembre de 2019.

Instalación

npm install territory-gt

Documentación

Uso

Importa el módulo usando el siguiente código:

const GT = require('territory-gt')

Departamentos

Para obtener los departamentos usa el método departamentos.

GT.departamentos();

Lo cual retornará los un String[] con los departamentos de Guatemala.

[
  'Alta Verapaz',   'Baja Verapaz',
  'Chimaltenango',  'Chiquimula',
  'El Progreso',    'Escuintla',
  'Guatemala',      'Huehuetenango',
  'Izabal',         'Jalapa',
  'Jutiapa',        'Petén',
  'Quetzaltenango', 'Quiché',
  'Retalhuleu',     'Sacatepéquez',
  'San Marcos',     'Santa Rosa',
  'Sololá',         'Suchitepéquez',
  'Totonicapán',    'Zacapa'
]

Cabeceras_Departamentales

Para obtener los departamentos usa el método cabecera.

Funciona con un parámetro, que debe ser un String con el nombre del departamento de Guatemala o devolverá undefined

Ejemplos:

GT.cabecera('Guatemala')
// 'Guatemala'

GT.cabecera('Suchitepéquez');
// 'Mazatenango'

GT.cabecera('Izabal')
// 'Puerto Barrios'

GT.cabecera('Texas')
// undefined

También puedes poner el nombre del departamento con o sin diacríticos, con o sin mayúsculas, con o sin espacios:

GT.cabecera('Suchitepéquez');
// 'Mazatenango'

GT.cabecera('suchitepequez')
// 'Mazatenango'

GT.cabecera('SuchiTePequeZ')
// 'Mazatenango'

Debes escribir el nombre completo del departamento, tal como se recibe en el metodo Departamentos sino recibirás un undefined.

GT.cabecera('Petén');
// 'Flores'

GT.cabecera('El Petén')
// undefined

Municipios

Para obtener los municipios de un departamento usa el método municipios.

Funciona con parámetro, que debe ser un String con el nombre del departamento.

El primer String será la cabecera departamental.

GT.municipios('Guatemala')}
// [
//   'Guatemala',
//   'Amatitlán',
//   'Chinautla',
//   'Chuarrancho',
//   'Fraijanes',
//   'Mixco',
//   'Palencia',
//   'San José del Golfo',
//   'San José Pinula',
//   'San Juan Sacatepequez',
//   'San Miguel Petapa',
//   'San Pedro Ayampuc',
//   'San Pedro Sacatepequez',
//   'San Raymundo',
//   'Santa Catarina Pinula',
//   'Villa Canales',
//   'Villa Nueva'
// ]

GT.municipios('Texas')
// undefined

También puede no llevar el parámetro departamentos, lo que devolverá un Objeto con todos los departamentos como parámetros. Cadá parámetro tendrá un String[] con los municipios.

GT.municipios()
// {
//   'Alta Verapaz': [
//     'Cobán',
//     'Chahal',
//     ...,
//     'Tamahú'
//  ],
//  ...,
//  Zacapa: [
//    'Zacapa',
//    'Cabañas',
//     ...,
//    'Usumatlán'
//  ]
// }

Ejemplos:

GT.municipios('Guatemala')
// 'Guatemala'

GT.municipios('Suchitepéquez');
// 'Mazatenango'

GT.municipios('Izabal')
// 'Puerto Barrios'

También puedes poner el nombre del departamento con o sin diacríticos, con o sin mayúsculas, con o sin espacios:


GT.municipios('suchitepequez')
// [
//   'Mazatenango',
//   'Chicacao',
//   ...,
//   'Zunilito'
// ]
GT.municipios('bajaVerapaz')
// [
//   'Salamá',
//   'Cubulco',
//   ...,
//   'Santa Cruz El Chol'
// ]

Debes escribir el nombre completo del departamento, tal como se recibe en el metodo Departamentos sino recibirás un undefined.

GT.municipios('Petén');
// [
//   'Flores',
//   'Dolores',
//   ...,
//   'Sayaxche'
// ]

GT.municipios('El Petén')
// undefined

Data Pura

Con este método obtendrás todos los datos de los objetos utilizados para obtener los datos.

Puedes obtener 3 datos diferntes:

  • departamentos
  • municipios
  • municipiosObj
const datapura = GT.datapura()

datapura.municipios

// {
//   altaverapaz: [
//     'Cobán',
//     'Chahal',
//     'Chisec',
//     'Fray Bartolomé de las Casas',
//     'Lanquín',
//     'Panzos',
//     'San Cristobal Verapaz',
//     'San Miguel Tucurú',
//     'San Pedro Carchá',
//     'SanJuan Chamelco',
//     'Santa Catarina La Tinta',
//     'Santa Cruz Verapaz',
//     'Santa María Cahabón',
//     'Senahú',
//     'Tactíc',
//     'Tamahú'
//   ], [...] ,
//   zacapa: [
//     'Zacapa',     'Cabañas',
//     'Estanzuela', 'Gualán',
//     'Huité',      'La Unión',
//     'Río Hondo',  'San Diego',
//     'Teculután',  'Usumatlán'
//   ]
// }