UNPKG

gis-tools-ts

Version:

A collection of geospatial tools primarily designed for WGS84, Web Mercator, and S2.

85 lines 2.42 kB
import type { Properties, VectorPoint } from '..'; /** A Country with its names, alpha2 and alpha3 codes */ export interface Country extends Properties { /** OSM ID */ osmID?: number; /** Boundary ID */ boundaryID?: number; /** Admin center */ admin_centre?: number; /** Default name */ name: string; /** ISO3166-1:alpha2 */ alpha2: string; /** ISO3166-1:alpha3 */ alpha3: string; /** ISO3166-1:numeric */ numeric?: number; /** End link to Wikipedia location */ wikipedia?: string; /** End link to English Wikipedia location */ wikipedia_en?: string; /** End link to Wikidata location */ wikidata?: string; /** Arabic name */ name_ar?: string; /** English name */ name_en?: string; /** Spanish name */ name_es?: string; /** French name */ name_fr?: string; /** German name */ name_de?: string; /** Italian name */ name_it?: string; /** Portuguese name */ name_pt?: string; /** Russian name */ name_ru?: string; /** Simplified Chinese name */ name_zh_Hans?: string; /** Traditional Chinese name */ name_zh_Hant?: string; /** Japanese name */ name_ja?: string; /** Korean name */ name_ko?: string; /** Vietnamese name */ name_vi?: string; /** Hindi name */ name_hi?: string; /** Bengali name */ name_bn?: string; /** Urdu name (Pakistani and Indian) */ name_ur?: string; /** Persian name (Iranian, Afghanistan, Tajikistan) */ name_fa?: string; /** Turkish name (and parts of Cyprus) */ name_tr?: string; /** Swahili name (Kenya, Tanzania, Uganda) */ name_sw?: string; /** Dutch name (Netherlands, Belgium, Suriname) */ name_nl?: string; /** Slavic name (Largest Slavic language in the EU) */ name_pl?: string; /** Greek name (Greece and Cyprus) */ name_el?: string; /** Hebrew name (Israel) */ name_he?: string; /** Thai name (Thailand) */ name_th?: string; /** Malay name (Malaysia, Indonesia, Brunei) */ name_ms?: string; } /** * # Countries * * ## Description * Lists all 195 Countries including 2 observer states (Vatican City and Palestine) * * ## Links * https://www.worldometers.info/geography/alphabetical-list-of-countries/ */ export declare const COUNTRIES: VectorPoint<Country>[]; //# sourceMappingURL=countries.d.ts.map