UNPKG

factbook

Version:

Serves as an independent data scraping module, complete with ontology and full scraping ability for the CIA World Factbook site

37 lines (36 loc) 1.47 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var globalStore_1 = require("../constants/globalStore"); function flushStore() { globalStore_1.store.agriculturalLands = {}; globalStore_1.store.arableLands = {}; globalStore_1.store.artificiallyIrrigatedLands = {}; globalStore_1.store.borderCountries = {}; globalStore_1.store.borderMaps = {}; globalStore_1.store.borders = {}; globalStore_1.store.climates = {}; globalStore_1.store.climateZones = {}; globalStore_1.store.coasts = {}; globalStore_1.store.countries = {}; globalStore_1.store.countriesInList = []; globalStore_1.store.domainAreas = {}; globalStore_1.store.elevations = {}; globalStore_1.store.forestLands = {}; globalStore_1.store.images = {}; globalStore_1.store.geographicNotes = {}; globalStore_1.store.landUses = {}; globalStore_1.store.locations = {}; globalStore_1.store.maritimeClaims = {}; globalStore_1.store.nationalFlags = {}; globalStore_1.store.naturalHazards = {}; globalStore_1.store.naturalResources = {}; globalStore_1.store.otherLands = {}; globalStore_1.store.permanentCropsLands = {}; globalStore_1.store.permanentPastureLands = {}; globalStore_1.store.regionMaps = {}; globalStore_1.store.terrains = {}; globalStore_1.store.jsonLD = []; globalStore_1.store.jsonNT = ''; } exports.flushStore = flushStore; ;