JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q20471F
  • License ISC

Reads a PSGC publicaton file

Package Exports

  • psgc-reader
  • psgc-reader/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (psgc-reader) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

psgc-reader

A package for ingesting PSGC publication files

How to use

1. Import the package

import PsgcReader from "psgc-reader";

// We only need one instance of the object
const psgc = PsgcReader.instance;

2. Read

  • supply the publication file to filePath
  • sheetName has default value set to "PSGC"
  • Records will be stored in locations
await psgc.read(filePath, sheetName);

console.log(psgc.locations);

2.1 Before filtering, select a builder

import PsgcReader, { BasicBuilder, CompleteBuilder } from "psgc-reader";

// The BasicBuilder will omit statistical fields
psgc.setBuilder(new BasicBuilder());

// Default builder: includes all fields
psgc.setBuilder(new CompleteBuilder());

3. Filter

  • filteredPSGC is just filtered locations
  • regions
  • provinces
  • cities
  • municipalities
  • subMunicipalities
  • barangays
psgc.filter();

console.log(psgc.filteredPSGC);
console.log(psgc.regions);
console.log(psgc.provinces);
console.log(psgc.cities);
console.log(psgc.municipalities);
console.log(psgc.subMunicipalities);
console.log(psgc.barangays);

4. Associate

This will link regions, provinces, cities, municipalities, subMunicipalities, and barangays

psgc.associate();

5. Explore

console.log("[Regions]");
psgc.regions.map((region) => console.log(" >", region.name));

console.log("[SubMunicipalities under Manila]");
psgc.cities
    .filter((city) => city.code === "1380600000")[0]
    .subMunicipalities?.map((subMunicipality) =>
        console.log(" >", subMunicipality.name)
    );

// https://stackoverflow.com/a/66523350
const barangayCountByName = psgc.barangays.reduce((barangay, { name }) => {
    barangay[name] = barangay[name] || 0;
    barangay[name] += 1;

    return barangay;
}, {});

// https://stackoverflow.com/a/1069840
const barangayCountByNameSorted: any[] = [];
for (let name in barangayCountByName) {
    barangayCountByNameSorted.push([name, barangayCountByName[name]]);
}
barangayCountByNameSorted.sort(function (a, b) {
    return b[1] - a[1];
});

console.log("[Top 10 barangay names]");
console.log(barangayCountByNameSorted.slice(0, 10));