-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create npm package + set GPLv3 license
- Loading branch information
Showing
8 changed files
with
4,869 additions
and
12,890 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
Códigos de Ubicación Geográfica del Perú | ||
======================================== | ||
|
||
[Demo](http://angelfqc.online/ubigeo-peru/) | ||
|
||
# Ubigeo | ||
|
||
> El código UBIGEO es un número de seis cifras, el cual está compuesto por dos dígitos por cada nivel de subdivisión político-administrativa del Perú. | ||
> Wikipedia | ||
> - Wikipedia | ||
> El Ubigeo es el identificador numérico único que se asigna a cada ámbito político administrativo del país para identificar al departamento, provincia y distrito. | ||
> INEI | ||
Para ver un ejemplo de uso, ingresa a http://angelfqc.github.io/ubigeo-peru/ | ||
* Los códigos Ubigeo en esta lista son según el [Sistema de Consulta de Códigos Estandarizados](http://webinei.inei.gob.pe:8080/sisconcode/publico.htm) del INEI | ||
> - INEI |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"name": "ubigeo-peru", | ||
"version": "2.0.0", | ||
"description": "Ubigeos para perú según RENIEC y INEI.", | ||
"main": "src/index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/AngelFQC/ubigeo-peru.git" | ||
}, | ||
"keywords": [ | ||
"ubigeo", | ||
"reniec", | ||
"inei", | ||
"peru", | ||
"perú" | ||
], | ||
"author": "Angel Fernando Quiroz Campos <angelfqc.18@gmail.com> (http://angelfqc.online)", | ||
"license": "GPL-3.0", | ||
"bugs": { | ||
"url": "https://github.com/AngelFQC/ubigeo-peru/issues" | ||
}, | ||
"homepage": "https://github.com/AngelFQC/ubigeo-peru#readme" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
"use strict"; | ||
|
||
const ubigeoPeru = {}; | ||
ubigeoPeru.reniec = require('./ubigeo-reniec.json'); | ||
ubigeoPeru.inei = require('./ubigeo-inei.json'); | ||
|
||
module.exports = ubigeoPeru; |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.