├── .dockerignore ├── .github └── workflows │ ├── _test.yml │ ├── pull_request.yml │ └── push.yml ├── .gitignore ├── .jshintignore ├── .jshintrc ├── Dockerfile ├── LICENSE ├── README.md ├── bin ├── cli.js └── test ├── classification ├── AdjacentClassification.js ├── AdjacentClassification.test.js ├── AlphaClassification.js ├── AlphaClassification.test.js ├── AlphaNumericClassification.js ├── AlphaNumericClassification.test.js ├── AreaClassification.js ├── AreaClassification.test.js ├── ChainClassification.js ├── ChainClassification.test.js ├── Classification.js ├── Classification.test.js ├── CountryClassification.js ├── CountryClassification.test.js ├── DependencyClassification.js ├── DependencyClassification.test.js ├── DirectionalClassification.js ├── DirectionalClassification.test.js ├── EndTokenClassification.js ├── EndTokenClassification.test.js ├── EndTokenSingleCharacterClassification.js ├── EndTokenSingleCharacterClassification.test.js ├── GivenNameClassification.js ├── GivenNameClassification.test.js ├── HouseNumberClassification.js ├── HouseNumberClassification.test.js ├── IntersectionClassification.js ├── IntersectionClassification.test.js ├── LocalityClassification.js ├── LocalityClassification.test.js ├── MiddleInitialClassification.js ├── MiddleInitialClassification.test.js ├── MultiStreetClassification.js ├── MultiStreetClassification.test.js ├── NumericClassification.js ├── NumericClassification.test.js ├── OrdinalClassification.js ├── OrdinalClassification.test.js ├── PersonClassification.js ├── PersonClassification.test.js ├── PersonalSuffixClassification.js ├── PersonalSuffixClassification.test.js ├── PersonalTitleClassification.js ├── PersonalTitleClassification.test.js ├── PlaceClassification.js ├── PlaceClassification.test.js ├── PostcodeClassification.js ├── PostcodeClassification.test.js ├── PunctuationClassification.js ├── PunctuationClassification.test.js ├── RegionClassification.js ├── RegionClassification.test.js ├── RoadTypeClassification.js ├── RoadTypeClassification.test.js ├── SingleAlphaClassification.js ├── SingleAlphaClassification.test.js ├── StartTokenClassification.js ├── StartTokenClassification.test.js ├── StopWordClassification.js ├── StopWordClassification.test.js ├── StreetClassification.js ├── StreetClassification.test.js ├── StreetNameClassification.js ├── StreetNameClassification.test.js ├── StreetPrefixClassification.js ├── StreetPrefixClassification.test.js ├── StreetProperNameClassification.js ├── StreetProperNameClassification.test.js ├── StreetSuffixClassification.js ├── StreetSuffixClassification.test.js ├── SubdivisionClassification.js ├── SubdivisionClassification.test.js ├── SurnameClassification.js ├── SurnameClassification.test.js ├── ToponymClassification.js ├── ToponymClassification.test.js ├── UnitClassification.js ├── UnitClassification.test.js ├── UnitTypeClassification.js ├── UnitTypeClassification.test.js ├── VenueClassification.js └── VenueClassification.test.js ├── classifier ├── AdjacencyClassifier.js ├── AlphaNumericClassifier.js ├── AlphaNumericClassifier.test.js ├── CentralEuropeanStreetNameClassifier.js ├── CentralEuropeanStreetNameClassifier.test.js ├── ChainClassifier.js ├── ChainClassifier.test.js ├── CompositeClassifier.js ├── CompositeClassifier.test.js ├── CompoundStreetClassifier.js ├── CompoundStreetClassifier.test.js ├── DirectionalClassifier.js ├── DirectionalClassifier.test.js ├── GivenNameClassifier.js ├── GivenNameClassifier.test.js ├── HouseNumberClassifier.js ├── HouseNumberClassifier.test.js ├── IntersectionClassifier.js ├── MiddleInitialClassifier.js ├── MiddleInitialClassifier.test.js ├── OrdinalClassifier.js ├── OrdinalClassifier.test.js ├── PersonClassifier.js ├── PersonClassifier.test.js ├── PersonalSuffixClassifier.js ├── PersonalSuffixClassifier.test.js ├── PersonalTitleClassifier.js ├── PersonalTitleClassifier.test.js ├── PlaceClassifier.js ├── PlaceClassifier.test.js ├── PostcodeClassifier.js ├── PostcodeClassifier.test.js ├── RoadTypeClassifier.js ├── RoadTypeClassifier.test.js ├── StopWordClassifier.js ├── StopWordClassifier.test.js ├── StreetPrefixClassifier.js ├── StreetPrefixClassifier.test.js ├── StreetProperNameClassifier.js ├── StreetProperNameClassifier.test.js ├── StreetSuffixClassifier.js ├── StreetSuffixClassifier.test.js ├── SubdivisionClassifier.js ├── SubdivisionClassifier.test.js ├── SurnameClassifier.js ├── SurnameClassifier.test.js ├── TokenPositionClassifier.js ├── TokenPositionClassifier.test.js ├── ToponymClassifier.js ├── ToponymClassifier.test.js ├── UnitClassifier.js ├── UnitClassifier.test.js ├── UnitTypeClassifier.js ├── UnitTypeClassifier.test.js ├── UnitTypeUnitClassifier.js ├── UnitTypeUnitClassifier.test.js ├── WhosOnFirstClassifier.js ├── WhosOnFirstClassifier.test.js ├── scheme │ ├── intersection.js │ ├── person.js │ ├── street.js │ ├── street_name.js │ ├── subdivision.js │ └── venue.js └── super │ ├── BaseClassifier.js │ ├── PhraseClassifier.js │ ├── SectionClassifier.js │ └── WordClassifier.js ├── debug └── DebugOutputBuilder.js ├── docker-compose.yml ├── docs ├── api.png ├── cli.png └── demo.png ├── package.json ├── parser ├── AddressParser.js └── Parser.js ├── resources ├── chromium-i18n │ ├── ssl-address-download.sh │ ├── ssl-address.json │ └── ssl-address │ │ ├── AC.json │ │ ├── AD.json │ │ ├── AE.json │ │ ├── AF.json │ │ ├── AG.json │ │ ├── AI.json │ │ ├── AL.json │ │ ├── AM.json │ │ ├── AO.json │ │ ├── AQ.json │ │ ├── AR.json │ │ ├── AS.json │ │ ├── AT.json │ │ ├── AU.json │ │ ├── AW.json │ │ ├── AX.json │ │ ├── AZ.json │ │ ├── BA.json │ │ ├── BB.json │ │ ├── BD.json │ │ ├── BE.json │ │ ├── BF.json │ │ ├── BG.json │ │ ├── BH.json │ │ ├── BI.json │ │ ├── BJ.json │ │ ├── BL.json │ │ ├── BM.json │ │ ├── BN.json │ │ ├── BO.json │ │ ├── BQ.json │ │ ├── BR.json │ │ ├── BS.json │ │ ├── BT.json │ │ ├── BV.json │ │ ├── BW.json │ │ ├── BY.json │ │ ├── BZ.json │ │ ├── CA.json │ │ ├── CC.json │ │ ├── CD.json │ │ ├── CF.json │ │ ├── CG.json │ │ ├── CH.json │ │ ├── CI.json │ │ ├── CK.json │ │ ├── CL.json │ │ ├── CM.json │ │ ├── CN.json │ │ ├── CO.json │ │ ├── CR.json │ │ ├── CU.json │ │ ├── CV.json │ │ ├── CW.json │ │ ├── CX.json │ │ ├── CY.json │ │ ├── CZ.json │ │ ├── DE.json │ │ ├── DJ.json │ │ ├── DK.json │ │ ├── DM.json │ │ ├── DO.json │ │ ├── DZ.json │ │ ├── EC.json │ │ ├── EE.json │ │ ├── EG.json │ │ ├── EH.json │ │ ├── ER.json │ │ ├── ES.json │ │ ├── ET.json │ │ ├── FI.json │ │ ├── FJ.json │ │ ├── FK.json │ │ ├── FM.json │ │ ├── FO.json │ │ ├── FR.json │ │ ├── GA.json │ │ ├── GB.json │ │ ├── GD.json │ │ ├── GE.json │ │ ├── GF.json │ │ ├── GG.json │ │ ├── GH.json │ │ ├── GI.json │ │ ├── GL.json │ │ ├── GM.json │ │ ├── GN.json │ │ ├── GP.json │ │ ├── GQ.json │ │ ├── GR.json │ │ ├── GS.json │ │ ├── GT.json │ │ ├── GU.json │ │ ├── GW.json │ │ ├── GY.json │ │ ├── HK.json │ │ ├── HM.json │ │ ├── HN.json │ │ ├── HR.json │ │ ├── HT.json │ │ ├── HU.json │ │ ├── ID.json │ │ ├── IE.json │ │ ├── IL.json │ │ ├── IM.json │ │ ├── IN.json │ │ ├── IO.json │ │ ├── IQ.json │ │ ├── IR.json │ │ ├── IS.json │ │ ├── IT.json │ │ ├── JE.json │ │ ├── JM.json │ │ ├── JO.json │ │ ├── JP.json │ │ ├── KE.json │ │ ├── KG.json │ │ ├── KH.json │ │ ├── KI.json │ │ ├── KM.json │ │ ├── KN.json │ │ ├── KP.json │ │ ├── KR.json │ │ ├── KW.json │ │ ├── KY.json │ │ ├── KZ.json │ │ ├── LA.json │ │ ├── LB.json │ │ ├── LC.json │ │ ├── LI.json │ │ ├── LK.json │ │ ├── LR.json │ │ ├── LS.json │ │ ├── LT.json │ │ ├── LU.json │ │ ├── LV.json │ │ ├── LY.json │ │ ├── MA.json │ │ ├── MC.json │ │ ├── MD.json │ │ ├── ME.json │ │ ├── MF.json │ │ ├── MG.json │ │ ├── MH.json │ │ ├── MK.json │ │ ├── ML.json │ │ ├── MM.json │ │ ├── MN.json │ │ ├── MO.json │ │ ├── MP.json │ │ ├── MQ.json │ │ ├── MR.json │ │ ├── MS.json │ │ ├── MT.json │ │ ├── MU.json │ │ ├── MV.json │ │ ├── MW.json │ │ ├── MX.json │ │ ├── MY.json │ │ ├── MZ.json │ │ ├── NA.json │ │ ├── NC.json │ │ ├── NE.json │ │ ├── NF.json │ │ ├── NG.json │ │ ├── NI.json │ │ ├── NL.json │ │ ├── NO.json │ │ ├── NP.json │ │ ├── NR.json │ │ ├── NU.json │ │ ├── NZ.json │ │ ├── OM.json │ │ ├── PA.json │ │ ├── PE.json │ │ ├── PF.json │ │ ├── PG.json │ │ ├── PH.json │ │ ├── PK.json │ │ ├── PL.json │ │ ├── PM.json │ │ ├── PN.json │ │ ├── PR.json │ │ ├── PS.json │ │ ├── PT.json │ │ ├── PW.json │ │ ├── PY.json │ │ ├── QA.json │ │ ├── RE.json │ │ ├── RO.json │ │ ├── RS.json │ │ ├── RU.json │ │ ├── RW.json │ │ ├── SA.json │ │ ├── SB.json │ │ ├── SC.json │ │ ├── SD.json │ │ ├── SE.json │ │ ├── SG.json │ │ ├── SH.json │ │ ├── SI.json │ │ ├── SJ.json │ │ ├── SK.json │ │ ├── SL.json │ │ ├── SM.json │ │ ├── SN.json │ │ ├── SO.json │ │ ├── SR.json │ │ ├── SS.json │ │ ├── ST.json │ │ ├── SV.json │ │ ├── SX.json │ │ ├── SY.json │ │ ├── SZ.json │ │ ├── TA.json │ │ ├── TC.json │ │ ├── TD.json │ │ ├── TF.json │ │ ├── TG.json │ │ ├── TH.json │ │ ├── TJ.json │ │ ├── TK.json │ │ ├── TL.json │ │ ├── TM.json │ │ ├── TN.json │ │ ├── TO.json │ │ ├── TR.json │ │ ├── TT.json │ │ ├── TV.json │ │ ├── TW.json │ │ ├── TZ.json │ │ ├── UA.json │ │ ├── UG.json │ │ ├── UM.json │ │ ├── US.json │ │ ├── UY.json │ │ ├── UZ.json │ │ ├── VA.json │ │ ├── VC.json │ │ ├── VE.json │ │ ├── VG.json │ │ ├── VI.json │ │ ├── VN.json │ │ ├── VU.json │ │ ├── WF.json │ │ ├── WS.json │ │ ├── XK.json │ │ ├── YE.json │ │ ├── YT.json │ │ ├── ZA.json │ │ ├── ZM.json │ │ └── ZW.json ├── custom │ └── custom.js ├── helper.js ├── libpostal │ ├── dictionaries │ │ ├── README.md │ │ ├── af │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── concatenated_suffixes_inseparable.txt │ │ │ ├── concatenated_suffixes_separable.txt │ │ │ ├── directionals.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── qualifiers.txt │ │ │ ├── stopwords.txt │ │ │ └── street_types.txt │ │ ├── all │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── chains.txt │ │ │ ├── given_names.txt │ │ │ ├── people.txt │ │ │ └── surnames.txt │ │ ├── ar │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ └── street_types.txt │ │ ├── ast │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── personal_titles.txt │ │ │ └── street_types.txt │ │ ├── az │ │ │ ├── building_types.txt │ │ │ ├── directionals.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ └── street_types.txt │ │ ├── be │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── building_types.txt │ │ │ ├── chains.txt │ │ │ ├── directionals.txt │ │ │ ├── house_numbers.txt │ │ │ ├── personal_titles.txt │ │ │ ├── qualifiers.txt │ │ │ ├── street_types.txt │ │ │ └── unit_types_numbered.txt │ │ ├── bg │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── near.txt │ │ │ ├── number.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── qualifiers.txt │ │ │ ├── staircases.txt │ │ │ ├── street_types.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── br │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── qualifiers.txt │ │ │ ├── stopwords.txt │ │ │ └── street_types.txt │ │ ├── bs │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── building_types.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_mezzanine.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── near.txt │ │ │ ├── no_number.txt │ │ │ ├── number.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── qualifiers.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── ca │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── elisions.txt │ │ │ ├── entrances.txt │ │ │ ├── given_names.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_mezzanine.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── level_types_sub_basement.txt │ │ │ ├── near.txt │ │ │ ├── no_number.txt │ │ │ ├── number.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── postcodes.txt │ │ │ ├── qualifiers.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── synonyms.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── cs │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── chains.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── house_numbers.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── near.txt │ │ │ ├── number.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── cy │ │ │ ├── building_types.txt │ │ │ ├── directionals.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── qualifiers.txt │ │ │ ├── stopwords.txt │ │ │ └── street_types.txt │ │ ├── da │ │ │ ├── academic_degrees.txt │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── building_types.txt │ │ │ ├── concatenated_suffixes_inseparable.txt │ │ │ ├── concatenated_suffixes_separable.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── near.txt │ │ │ ├── number.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── synonyms.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── de │ │ │ ├── academic_degrees.txt │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── chains.txt │ │ │ ├── company_types.txt │ │ │ ├── concatenated_prefixes_separable.txt │ │ │ ├── concatenated_suffixes_inseparable.txt │ │ │ ├── concatenated_suffixes_separable.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── house_numbers.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── near.txt │ │ │ ├── number.txt │ │ │ ├── personal_suffixes.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── qualifiers.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── synonyms.txt │ │ │ ├── toponyms.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── el │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── building_types.txt │ │ │ ├── entrances.txt │ │ │ ├── given_names.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_mezzanine.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── postcodes.txt │ │ │ ├── qualifiers.txt │ │ │ ├── staircases.txt │ │ │ ├── street_types.txt │ │ │ ├── synonyms.txt │ │ │ ├── toponyms.txt │ │ │ └── unit_types_numbered.txt │ │ ├── en │ │ │ ├── academic_degrees.txt │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── building_types.txt │ │ │ ├── chains.txt │ │ │ ├── company_types.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── given_names.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_mezzanine.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── level_types_sub_basement.txt │ │ │ ├── near.txt │ │ │ ├── no_number.txt │ │ │ ├── nulls.txt │ │ │ ├── number.txt │ │ │ ├── personal_suffixes.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── qualifiers.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_names.txt │ │ │ ├── street_types.txt │ │ │ ├── synonyms.txt │ │ │ ├── toponyms.txt │ │ │ ├── unit_directions.txt │ │ │ ├── unit_types_numbered.txt │ │ │ └── unit_types_standalone.txt │ │ ├── es │ │ │ ├── academic_degrees.txt │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── building_types.txt │ │ │ ├── company_types.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── given_names.txt │ │ │ ├── house_numbers.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_mezzanine.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── level_types_sub_basement.txt │ │ │ ├── near.txt │ │ │ ├── no_number.txt │ │ │ ├── number.txt │ │ │ ├── personal_suffixes.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── postcodes.txt │ │ │ ├── qualifiers.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── surnames.txt │ │ │ ├── synonyms.txt │ │ │ ├── toponyms.txt │ │ │ ├── unit_directions.txt │ │ │ ├── unit_types_numbered.txt │ │ │ └── unit_types_standalone.txt │ │ ├── et │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── building_types.txt │ │ │ ├── company_types.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── near.txt │ │ │ ├── number.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── qualifiers.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── toponyms.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── eu │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── cross_streets.txt │ │ │ ├── entrances.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── near.txt │ │ │ ├── no_number.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── postcodes.txt │ │ │ ├── qualifiers.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── fa │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ └── street_types.txt │ │ ├── fi │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── building_types.txt │ │ │ ├── chains.txt │ │ │ ├── concatenated_suffixes_separable.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── near.txt │ │ │ ├── number.txt │ │ │ ├── post_office.txt │ │ │ ├── qualifiers.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── synonyms.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── fil │ │ │ └── street_types.txt │ │ ├── fr │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── building_types.txt │ │ │ ├── chains.txt │ │ │ ├── company_types.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── elisions.txt │ │ │ ├── entrances.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_mezzanine.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── level_types_sub_basement.txt │ │ │ ├── near.txt │ │ │ ├── no_number.txt │ │ │ ├── number.txt │ │ │ ├── people.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── qualifiers.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── synonyms.txt │ │ │ ├── toponyms.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── ga │ │ │ ├── building_types.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── street_types.txt │ │ │ └── unit_types_numbered.txt │ │ ├── gd │ │ │ ├── building_types.txt │ │ │ ├── directionals.txt │ │ │ ├── place_names.txt │ │ │ ├── qualifiers.txt │ │ │ ├── stopwords.txt │ │ │ └── street_types.txt │ │ ├── gl │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── directionals.txt │ │ │ ├── personal_titles.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ └── unit_directions.txt │ │ ├── gsw │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── concatenated_suffixes_separable.txt │ │ │ └── street_types.txt │ │ ├── he │ │ │ ├── entrances.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── personal_titles.txt │ │ │ ├── post_office.txt │ │ │ ├── street_types.txt │ │ │ └── unit_types_numbered.txt │ │ ├── hi │ │ │ └── street_types.txt │ │ ├── hr │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── building_types.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_mezzanine.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── near.txt │ │ │ ├── no_number.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── qualifiers.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── hu │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_mezzanine.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── near.txt │ │ │ ├── number.txt │ │ │ ├── personal_titles.txt │ │ │ ├── post_office.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── id │ │ │ ├── academic_degrees.txt │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── building_types.txt │ │ │ ├── chains.txt │ │ │ ├── company_types.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── near.txt │ │ │ ├── number.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── qualifiers.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── synonyms.txt │ │ │ ├── toponyms.txt │ │ │ ├── unit_directions.txt │ │ │ ├── unit_types_numbered.txt │ │ │ └── unit_types_standalone.txt │ │ ├── is │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── concatenated_suffixes_inseparable.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── near.txt │ │ │ ├── number.txt │ │ │ ├── post_office.txt │ │ │ ├── qualifiers.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── it │ │ │ ├── academic_degrees.txt │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── building_types.txt │ │ │ ├── chains.txt │ │ │ ├── company_types.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── elisions.txt │ │ │ ├── entrances.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── near.txt │ │ │ ├── no_number.txt │ │ │ ├── number.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── qualifiers.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── synonyms.txt │ │ │ ├── toponyms.txt │ │ │ └── unit_types_numbered.txt │ │ ├── ja │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── building_types.txt │ │ │ ├── chains.txt │ │ │ ├── directionals.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── number.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── postcodes.txt │ │ │ ├── qualifiers.txt │ │ │ └── street_types.txt │ │ ├── ka │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── stopwords.txt │ │ │ └── street_types.txt │ │ ├── ko │ │ │ ├── directionals.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── number.txt │ │ │ ├── post_office.txt │ │ │ ├── postcodes.txt │ │ │ ├── qualifiers.txt │ │ │ └── street_types.txt │ │ ├── lb │ │ │ ├── concatenated_suffixes_separable.txt │ │ │ └── street_types.txt │ │ ├── lt │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── building_types.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── number.txt │ │ │ ├── post_office.txt │ │ │ ├── qualifiers.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── lv │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── number.txt │ │ │ ├── place_names.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── ms │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── building_types.txt │ │ │ ├── company_types.txt │ │ │ ├── directionals.txt │ │ │ ├── given_names.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── qualifiers.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ └── synonyms.txt │ │ ├── mt │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── number.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── stopwords.txt │ │ │ └── street_types.txt │ │ ├── nb │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── building_types.txt │ │ │ ├── concatenated_suffixes_inseparable.txt │ │ │ ├── concatenated_suffixes_separable.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── near.txt │ │ │ ├── number.txt │ │ │ ├── personal_titles.txt │ │ │ ├── post_office.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── nl │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── building_types.txt │ │ │ ├── chains.txt │ │ │ ├── concatenated_suffixes_inseparable.txt │ │ │ ├── concatenated_suffixes_separable.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── near.txt │ │ │ ├── number.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── qualifiers.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── synonyms.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── oc │ │ │ ├── elisions.txt │ │ │ ├── stopwords.txt │ │ │ └── street_types.txt │ │ ├── pap │ │ │ ├── personal_titles.txt │ │ │ └── street_types.txt │ │ ├── pl │ │ │ ├── academic_degrees.txt │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── building_types.txt │ │ │ ├── chains.txt │ │ │ ├── company_types.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── house_numbers.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── near.txt │ │ │ ├── number.txt │ │ │ ├── personal_suffixes.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── qualifiers.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── synonyms.txt │ │ │ ├── toponyms.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── pt │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── building_types.txt │ │ │ ├── company_types.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── elisions.txt │ │ │ ├── entrances.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_mezzanine.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── level_types_sub_basement.txt │ │ │ ├── near.txt │ │ │ ├── no_number.txt │ │ │ ├── number.txt │ │ │ ├── personal_suffixes.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── postcodes.txt │ │ │ ├── qualifiers.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── synonyms.txt │ │ │ ├── toponyms.txt │ │ │ ├── unit_directions.txt │ │ │ ├── unit_types_numbered.txt │ │ │ └── unit_types_standalone.txt │ │ ├── ro │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── near.txt │ │ │ ├── no_number.txt │ │ │ ├── number.txt │ │ │ ├── personal_titles.txt │ │ │ ├── post_office.txt │ │ │ ├── qualifiers.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ └── unit_types_numbered.txt │ │ ├── ru │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── building_types.txt │ │ │ ├── chains.txt │ │ │ ├── company_types.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── house_numbers.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── near.txt │ │ │ ├── no_number.txt │ │ │ ├── number.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── qualifiers.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── si │ │ │ ├── place_names.txt │ │ │ ├── qualifiers.txt │ │ │ └── street_types.txt │ │ ├── sk │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── house_numbers.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── near.txt │ │ │ ├── number.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── qualifiers.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── toponyms.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── sl │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── chains.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── near.txt │ │ │ ├── no_number.txt │ │ │ ├── number.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── synonyms.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── sr │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── number.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── sv │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── company_types.txt │ │ │ ├── concatenated_suffixes_inseparable.txt │ │ │ ├── concatenated_suffixes_separable.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── near.txt │ │ │ ├── number.txt │ │ │ ├── personal_titles.txt │ │ │ ├── post_office.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── synonyms.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── th │ │ │ ├── chains.txt │ │ │ └── street_types.txt │ │ ├── tr │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── chains.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_mezzanine.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── number.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── qualifiers.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── uk │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── chains.txt │ │ │ ├── cross_streets.txt │ │ │ ├── directionals.txt │ │ │ ├── entrances.txt │ │ │ ├── house_numbers.txt │ │ │ ├── level_types_basement.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── level_types_standalone.txt │ │ │ ├── near.txt │ │ │ ├── number.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── qualifiers.txt │ │ │ ├── staircases.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ ├── unit_directions.txt │ │ │ └── unit_types_numbered.txt │ │ ├── ur │ │ │ └── street_types.txt │ │ ├── vi │ │ │ ├── ambiguous_expansions.txt │ │ │ ├── personal_titles.txt │ │ │ ├── place_names.txt │ │ │ ├── qualifiers.txt │ │ │ └── street_types.txt │ │ └── zh │ │ │ ├── building_types.txt │ │ │ ├── chains.txt │ │ │ ├── directionals.txt │ │ │ ├── level_types_numbered.txt │ │ │ ├── number.txt │ │ │ ├── place_names.txt │ │ │ ├── post_office.txt │ │ │ ├── postcodes.txt │ │ │ ├── qualifiers.txt │ │ │ ├── stopwords.txt │ │ │ ├── street_types.txt │ │ │ └── unit_types_numbered.txt │ ├── libpostal.js │ ├── libpostal.test.js │ └── resources-download.sh ├── pelias │ ├── dictionaries │ │ ├── libpostal │ │ │ ├── af │ │ │ │ └── personal_titles.txt │ │ │ ├── all │ │ │ │ └── surnames.txt │ │ │ ├── de │ │ │ │ ├── concatenated_suffixes_separable.txt │ │ │ │ ├── place_names.txt │ │ │ │ ├── stopwords.txt │ │ │ │ └── street_types.txt │ │ │ ├── en │ │ │ │ ├── place_names.txt │ │ │ │ ├── road_types.txt │ │ │ │ ├── stopwords.txt │ │ │ │ ├── street_names.txt │ │ │ │ ├── street_types.txt │ │ │ │ └── unit_types_numbered.txt │ │ │ ├── es │ │ │ │ └── street_types.txt │ │ │ ├── fr │ │ │ │ ├── personal_titles.txt │ │ │ │ ├── street_types.txt │ │ │ │ └── subdivisions.txt │ │ │ ├── it │ │ │ │ └── street_types.txt │ │ │ ├── ko │ │ │ │ └── street_types.txt │ │ │ ├── nb │ │ │ │ ├── concatenated_suffixes_inseparable.txt │ │ │ │ ├── concatenated_suffixes_separable.txt │ │ │ │ ├── directionals.txt │ │ │ │ └── street_types.txt │ │ │ ├── nl │ │ │ │ ├── concatenated_suffixes_inseparable.txt │ │ │ │ ├── concatenated_suffixes_separable.txt │ │ │ │ ├── directionals.txt │ │ │ │ ├── personal_suffixes.txt │ │ │ │ └── personal_titles.txt │ │ │ ├── pl │ │ │ │ ├── place_names.txt │ │ │ │ └── synonyms.txt │ │ │ └── sv │ │ │ │ └── concatenated_suffixes_separable.txt │ │ └── whosonfirst │ │ │ ├── locality │ │ │ ├── name:eng_x_preferred.txt │ │ │ └── name:fra_x_preferred.txt │ │ │ └── region │ │ │ └── name:eng_x_preferred.txt │ └── pelias.js └── whosonfirst │ ├── dictionaries │ ├── country │ │ ├── name:eng_x_preferred.txt │ │ ├── wof:country.txt │ │ ├── wof:country_alpha3.txt │ │ └── wof:shortcode.txt │ ├── dependency │ │ ├── name:eng_x_preferred.txt │ │ └── wof:shortcode.txt │ ├── locality │ │ ├── name:eng_x_preferred.txt │ │ └── name:fra_x_preferred.txt │ └── region │ │ ├── abrv:eng_x_preferred.txt │ │ ├── name:eng_x_preferred.txt │ │ └── wof:shortcode.txt │ ├── generate.js │ └── whosonfirst.js ├── server ├── demo │ └── index.html ├── http.js └── routes │ └── parse.js ├── solver ├── ExclusiveCartesianSolver.js ├── HouseNumberPositionPenalty.js ├── InvalidSolutionFilter.js ├── LeadingAreaDeclassifier.js ├── MultiStreetSolver.js ├── MustNotFollowFilter.js ├── MustNotFollowFilter.test.js ├── MustNotPreceedFilter.js ├── MustNotPreceedFilter.test.js ├── OrphanedUnitTypeDeclassifier.js ├── OrphanedUnitTypeDeclassifier.test.js ├── PostcodePositionPenalty.js ├── Solution.js ├── Solution.test.js ├── SolutionPair.js ├── SubsetFilter.js ├── SubsetFilter.test.js ├── TokenDistanceFilter.js └── super │ ├── BaseSolver.js │ └── HashMapSolver.js ├── test ├── address.aus.test.js ├── address.bra.test.js ├── address.cze.test.js ├── address.deu.test.js ├── address.esp.test.js ├── address.fra.test.js ├── address.gbr.test.js ├── address.hrv.test.js ├── address.ind.test.js ├── address.nld.test.js ├── address.nor.test.js ├── address.nzd.test.js ├── address.pol.test.js ├── address.prt.test.js ├── address.rom.test.js ├── address.svk.test.js ├── address.swe.test.js ├── address.usa.test.js ├── addressit.aus.test.js ├── addressit.usa.test.js ├── common.js ├── compound_street.test.js ├── functional.test.js ├── intersection.test.js ├── libpostal.test.js ├── openaddresses.js ├── place.fra.test.js ├── run.js ├── transit.test.js └── venue.usa.test.js └── tokenization ├── FST.js ├── FST.test.js ├── Graph.js ├── Graph.test.js ├── Span.js ├── Span.test.js ├── Tokenizer.js ├── Tokenizer.test.js ├── normalizer.js ├── normalizer.test.js ├── permutate.js ├── permutate.test.js ├── split.js ├── split.test.js ├── split_funcs.js └── split_funcs_test.js /.jshintignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "node": true, 3 | "esversion": 6, 4 | "curly": true, 5 | "latedef": "nofunc", 6 | "quotmark": true, 7 | "undef": true, 8 | "unused": true, 9 | "trailing": true, 10 | "asi": true, 11 | "loopfunc": true 12 | } 13 | -------------------------------------------------------------------------------- /bin/cli.js: -------------------------------------------------------------------------------- 1 | const input = process.argv.slice(2).join(' ') 2 | const DebugOutputBuilder = require('../debug/DebugOutputBuilder') 3 | 4 | process.stdout.write( 5 | new DebugOutputBuilder().parse(input).toString() 6 | ) 7 | -------------------------------------------------------------------------------- /bin/test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # run tests with pipefail to avoid false passes 4 | # see https://github.com/pelias/pelias/issues/744 5 | set -o pipefail 6 | 7 | node test/run.js $@ | npx tap-spec 8 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: '2' 2 | services: 3 | parser: 4 | image: mapzen/pelias-parser 5 | build: . 6 | restart: always 7 | environment: [ "PORT=3000" ] 8 | ports: [ "6800:3000" ] 9 | -------------------------------------------------------------------------------- /docs/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelias/parser/d52fa623cce5b8046d4f72b2c754e5ad64e6fb30/docs/api.png -------------------------------------------------------------------------------- /docs/cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelias/parser/d52fa623cce5b8046d4f72b2c754e5ad64e6fb30/docs/cli.png -------------------------------------------------------------------------------- /docs/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pelias/parser/d52fa623cce5b8046d4f72b2c754e5ad64e6fb30/docs/demo.png -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/AC.json: -------------------------------------------------------------------------------- 1 | {"zipex":"ASCN 1ZZ","key":"AC","name":"ASCENSION ISLAND","fmt":"%N%n%O%n%A%n%C%n%Z","zip":"ASCN 1ZZ","id":"data/AC"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/AF.json: -------------------------------------------------------------------------------- 1 | {"zipex":"1001,2601,3801","key":"AF","name":"AFGHANISTAN","fmt":"%N%n%O%n%A%n%C%n%Z","zip":"\\d{4}","id":"data/AF"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/AG.json: -------------------------------------------------------------------------------- 1 | {"key":"AG","name":"ANTIGUA AND BARBUDA","require":"A","id":"data/AG"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/AI.json: -------------------------------------------------------------------------------- 1 | {"zipex":"2640","key":"AI","name":"ANGUILLA","fmt":"%N%n%O%n%A%n%C%n%Z","zip":"(?:AI-)?2640","id":"data/AI"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/AL.json: -------------------------------------------------------------------------------- 1 | {"zipex":"1001,1017,3501","key":"AL","name":"ALBANIA","fmt":"%N%n%O%n%A%n%Z%n%C","zip":"\\d{4}","id":"data/AL"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/AO.json: -------------------------------------------------------------------------------- 1 | {"key":"AO","name":"ANGOLA","id":"data/AO"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/AQ.json: -------------------------------------------------------------------------------- 1 | {"key":"AQ","name":"ANTARCTICA","id":"data/AQ"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/AT.json: -------------------------------------------------------------------------------- 1 | {"zipex":"1010,3741","key":"AT","name":"AUSTRIA","fmt":"%O%n%N%n%A%n%Z %C","require":"ACZ","zip":"\\d{4}","posturl":"http://www.post.at/post_subsite_postleitzahlfinder.php","id":"data/AT"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/AW.json: -------------------------------------------------------------------------------- 1 | {"key":"AW","name":"ARUBA","id":"data/AW"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/AZ.json: -------------------------------------------------------------------------------- 1 | {"zipex":"1000","key":"AZ","name":"AZERBAIJAN","fmt":"%N%n%O%n%A%nAZ %Z %C","postprefix":"AZ ","zip":"\\d{4}","id":"data/AZ"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/BA.json: -------------------------------------------------------------------------------- 1 | {"zipex":"71000","key":"BA","name":"BOSNIA AND HERZEGOVINA","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{5}","id":"data/BA"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/BB.json: -------------------------------------------------------------------------------- 1 | {"zipex":"BB23026,BB22025","key":"BB","name":"BARBADOS","fmt":"%N%n%O%n%A%n%C, %S %Z","zip":"BB\\d{5}","state_name_type":"parish","id":"data/BB"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/BD.json: -------------------------------------------------------------------------------- 1 | {"zipex":"1340,1000","key":"BD","name":"BANGLADESH","fmt":"%N%n%O%n%A%n%C - %Z","zip":"\\d{4}","posturl":"http://www.bangladeshpost.gov.bd/PostCode.asp","id":"data/BD"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/BE.json: -------------------------------------------------------------------------------- 1 | {"zipex":"4000,1000","key":"BE","name":"BELGIUM","fmt":"%O%n%N%n%A%n%Z %C","require":"ACZ","zip":"\\d{4}","posturl":"http://www.post.be/site/nl/residential/customerservice/search/postal_codes.html","id":"data/BE"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/BF.json: -------------------------------------------------------------------------------- 1 | {"key":"BF","name":"BURKINA FASO","fmt":"%N%n%O%n%A%n%C %X","id":"data/BF"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/BG.json: -------------------------------------------------------------------------------- 1 | {"zipex":"1000,1700","key":"BG","name":"BULGARIA (REP.)","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{4}","posturl":"http://www.bgpost.bg/?cid=5","id":"data/BG"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/BH.json: -------------------------------------------------------------------------------- 1 | {"zipex":"317","key":"BH","name":"BAHRAIN","fmt":"%N%n%O%n%A%n%C %Z","zip":"(?:\\d|1[0-2])\\d{2}","id":"data/BH"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/BI.json: -------------------------------------------------------------------------------- 1 | {"key":"BI","name":"BURUNDI","id":"data/BI"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/BJ.json: -------------------------------------------------------------------------------- 1 | {"key":"BJ","name":"BENIN","upper":"AC","id":"data/BJ"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/BM.json: -------------------------------------------------------------------------------- 1 | {"zipex":"FL 07,HM GX,HM 12","key":"BM","name":"BERMUDA","fmt":"%N%n%O%n%A%n%C %Z","zip":"[A-Z]{2} ?[A-Z0-9]{2}","posturl":"http://www.landvaluation.bm/","id":"data/BM"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/BN.json: -------------------------------------------------------------------------------- 1 | {"zipex":"BT2328,KA1131,BA1511","key":"BN","name":"BRUNEI DARUSSALAM","fmt":"%N%n%O%n%A%n%C %Z","zip":"[A-Z]{2} ?\\d{4}","posturl":"http://www.post.gov.bn/SitePages/postcodes.aspx","id":"data/BN"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/BO.json: -------------------------------------------------------------------------------- 1 | {"key":"BO","name":"BOLIVIA","upper":"AC","id":"data/BO"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/BQ.json: -------------------------------------------------------------------------------- 1 | {"key":"BQ","name":"BONAIRE, SINT EUSTATIUS, AND SABA","id":"data/BQ"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/BT.json: -------------------------------------------------------------------------------- 1 | {"zipex":"11001,31101,35003","key":"BT","name":"BHUTAN","fmt":"%N%n%O%n%A%n%C %Z","zip":"\\d{5}","posturl":"http://www.bhutanpost.bt/postcodes/","id":"data/BT"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/BV.json: -------------------------------------------------------------------------------- 1 | {"key":"BV","name":"BOUVET ISLAND","id":"data/BV"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/BW.json: -------------------------------------------------------------------------------- 1 | {"key":"BW","name":"BOTSWANA","id":"data/BW"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/BY.json: -------------------------------------------------------------------------------- 1 | {"zipex":"223016,225860,220050","key":"BY","name":"BELARUS","fmt":"%S%n%Z %C%n%A%n%O%n%N","zip":"\\d{6}","posturl":"http://ex.belpost.by/addressbook/","id":"data/BY"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/BZ.json: -------------------------------------------------------------------------------- 1 | {"key":"BZ","name":"BELIZE","id":"data/BZ"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/CC.json: -------------------------------------------------------------------------------- 1 | {"zipex":"6799","key":"CC","name":"COCOS (KEELING) ISLANDS","fmt":"%O%n%N%n%A%n%C %S %Z","zip":"6799","upper":"CS","id":"data/CC"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/CD.json: -------------------------------------------------------------------------------- 1 | {"key":"CD","name":"CONGO (DEM. REP.)","id":"data/CD"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/CF.json: -------------------------------------------------------------------------------- 1 | {"key":"CF","name":"CENTRAL AFRICAN REPUBLIC","id":"data/CF"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/CG.json: -------------------------------------------------------------------------------- 1 | {"key":"CG","name":"CONGO (REP.)","id":"data/CG"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/CI.json: -------------------------------------------------------------------------------- 1 | {"key":"CI","name":"COTE D'IVOIRE","fmt":"%N%n%O%n%X %A %C %X","id":"data/CI"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/CK.json: -------------------------------------------------------------------------------- 1 | {"key":"CK","name":"COOK ISLANDS","id":"data/CK"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/CM.json: -------------------------------------------------------------------------------- 1 | {"key":"CM","name":"CAMEROON","id":"data/CM"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/CO.json: -------------------------------------------------------------------------------- 1 | {"zipex":"111221,130001,760011","key":"CO","name":"COLOMBIA","fmt":"%N%n%O%n%A%n%C, %S, %Z","state_name_type":"department","require":"AS","zip":"\\d{6}","posturl":"http://www.codigopostal.gov.co/","id":"data/CO"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/CR.json: -------------------------------------------------------------------------------- 1 | {"zipex":"1000,2010,1001","key":"CR","name":"COSTA RICA","fmt":"%N%n%O%n%A%n%S, %C%n%Z","require":"ACS","zip":"\\d{4,5}|\\d{3}-\\d{4}","posturl":"https://www.correos.go.cr/nosotros/codigopostal/busqueda.html","id":"data/CR"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/CW.json: -------------------------------------------------------------------------------- 1 | {"key":"CW","name":"CURACAO","id":"data/CW"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/CX.json: -------------------------------------------------------------------------------- 1 | {"zipex":"6798","key":"CX","name":"CHRISTMAS ISLAND","fmt":"%O%n%N%n%A%n%C %S %Z","zip":"6798","upper":"CS","id":"data/CX"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/CY.json: -------------------------------------------------------------------------------- 1 | {"zipex":"2008,3304,1900","key":"CY","name":"CYPRUS","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{4}","id":"data/CY"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/CZ.json: -------------------------------------------------------------------------------- 1 | {"zipex":"100 00,251 66,530 87,110 00,225 99","key":"CZ","name":"CZECH REP.","fmt":"%N%n%O%n%A%n%Z %C","require":"ACZ","zip":"\\d{3} ?\\d{2}","posturl":"http://psc.ceskaposta.cz/CleanForm.action","id":"data/CZ"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/DE.json: -------------------------------------------------------------------------------- 1 | {"zipex":"26133,53225","key":"DE","name":"GERMANY","fmt":"%N%n%O%n%A%n%Z %C","require":"ACZ","zip":"\\d{5}","posturl":"http://www.postdirekt.de/plzserver/","id":"data/DE"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/DJ.json: -------------------------------------------------------------------------------- 1 | {"key":"DJ","name":"DJIBOUTI","id":"data/DJ"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/DK.json: -------------------------------------------------------------------------------- 1 | {"zipex":"8660,1566","key":"DK","name":"DENMARK","fmt":"%N%n%O%n%A%n%Z %C","require":"ACZ","zip":"\\d{4}","posturl":"http://www.postdanmark.dk/da/Privat/Kundeservice/postnummerkort/Sider/Find-postnummer.aspx","id":"data/DK"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/DM.json: -------------------------------------------------------------------------------- 1 | {"key":"DM","name":"DOMINICA","id":"data/DM"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/DO.json: -------------------------------------------------------------------------------- 1 | {"zipex":"11903,10101","key":"DO","name":"DOMINICAN REP.","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{5}","posturl":"http://inposdom.gob.do/codigo-postal/","id":"data/DO"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/DZ.json: -------------------------------------------------------------------------------- 1 | {"zipex":"40304,16027","key":"DZ","name":"ALGERIA","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{5}","id":"data/DZ"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/EC.json: -------------------------------------------------------------------------------- 1 | {"zipex":"090105,092301","key":"EC","name":"ECUADOR","fmt":"%N%n%O%n%A%n%Z%n%C","posturl":"http://www.codigopostal.gob.ec/","zip":"\\d{6}","upper":"CZ","id":"data/EC"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/EE.json: -------------------------------------------------------------------------------- 1 | {"zipex":"69501,11212","key":"EE","name":"ESTONIA","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{5}","posturl":"https://www.omniva.ee/era/sihtnumbrite_otsing","id":"data/EE"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/EH.json: -------------------------------------------------------------------------------- 1 | {"zipex":"70000,72000","key":"EH","name":"WESTERN SAHARA","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{5}","id":"data/EH"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/ER.json: -------------------------------------------------------------------------------- 1 | {"key":"ER","name":"ERITREA","id":"data/ER"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/ET.json: -------------------------------------------------------------------------------- 1 | {"zipex":"1000","key":"ET","name":"ETHIOPIA","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{4}","id":"data/ET"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/FI.json: -------------------------------------------------------------------------------- 1 | {"zipex":"00550,00011","postprefix":"FI-","key":"FI","name":"FINLAND","fmt":"%O%n%N%n%A%nFI-%Z %C","require":"ACZ","zip":"\\d{5}","posturl":"http://www.verkkoposti.com/e3/postinumeroluettelo","id":"data/FI"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/FJ.json: -------------------------------------------------------------------------------- 1 | {"key":"FJ","name":"FIJI","id":"data/FJ"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/FK.json: -------------------------------------------------------------------------------- 1 | {"zipex":"FIQQ 1ZZ","key":"FK","name":"FALKLAND ISLANDS (MALVINAS)","fmt":"%N%n%O%n%A%n%C%n%Z","require":"ACZ","zip":"FIQQ 1ZZ","upper":"CZ","id":"data/FK"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/FO.json: -------------------------------------------------------------------------------- 1 | {"zipex":"100","key":"FO","name":"FAROE ISLANDS","fmt":"%N%n%O%n%A%nFO%Z %C","postprefix":"FO","zip":"\\d{3}","posturl":"http://www.postur.fo/","id":"data/FO"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/GA.json: -------------------------------------------------------------------------------- 1 | {"key":"GA","name":"GABON","id":"data/GA"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/GD.json: -------------------------------------------------------------------------------- 1 | {"key":"GD","name":"GRENADA (WEST INDIES)","id":"data/GD"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/GE.json: -------------------------------------------------------------------------------- 1 | {"zipex":"0101","key":"GE","name":"GEORGIA","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{4}","posturl":"http://www.georgianpost.ge/index.php?page=10","id":"data/GE"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/GH.json: -------------------------------------------------------------------------------- 1 | {"key":"GH","name":"GHANA","id":"data/GH"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/GI.json: -------------------------------------------------------------------------------- 1 | {"zipex":"GX11 1AA","key":"GI","name":"GIBRALTAR","fmt":"%N%n%O%n%A%nGIBRALTAR%n%Z","require":"A","zip":"GX11 1AA","id":"data/GI"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/GL.json: -------------------------------------------------------------------------------- 1 | {"zipex":"3900,3950,3911","key":"GL","name":"GREENLAND","fmt":"%N%n%O%n%A%n%Z %C","require":"ACZ","zip":"39\\d{2}","id":"data/GL"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/GM.json: -------------------------------------------------------------------------------- 1 | {"key":"GM","name":"GAMBIA","id":"data/GM"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/GN.json: -------------------------------------------------------------------------------- 1 | {"zipex":"001,200,100","key":"GN","name":"GUINEA","fmt":"%N%n%O%n%Z %A %C","zip":"\\d{3}","id":"data/GN"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/GQ.json: -------------------------------------------------------------------------------- 1 | {"key":"GQ","name":"EQUATORIAL GUINEA","id":"data/GQ"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/GR.json: -------------------------------------------------------------------------------- 1 | {"zipex":"151 24,151 10,101 88","key":"GR","name":"GREECE","fmt":"%N%n%O%n%A%n%Z %C","require":"ACZ","zip":"\\d{3} ?\\d{2}","posturl":"http://www.elta.gr/findapostcode.aspx","id":"data/GR"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/GS.json: -------------------------------------------------------------------------------- 1 | {"zipex":"SIQQ 1ZZ","key":"GS","name":"SOUTH GEORGIA","fmt":"%N%n%O%n%A%n%n%C%n%Z","require":"ACZ","zip":"SIQQ 1ZZ","upper":"CZ","id":"data/GS"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/GT.json: -------------------------------------------------------------------------------- 1 | {"zipex":"09001,01501","key":"GT","name":"GUATEMALA","fmt":"%N%n%O%n%A%n%Z- %C","zip":"\\d{5}","id":"data/GT"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/GW.json: -------------------------------------------------------------------------------- 1 | {"zipex":"1000,1011","key":"GW","name":"GUINEA-BISSAU","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{4}","id":"data/GW"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/GY.json: -------------------------------------------------------------------------------- 1 | {"key":"GY","name":"GUYANA","id":"data/GY"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/HM.json: -------------------------------------------------------------------------------- 1 | {"zipex":"7050","key":"HM","name":"HEARD AND MCDONALD ISLANDS","fmt":"%O%n%N%n%A%n%C %S %Z","zip":"\\d{4}","upper":"CS","id":"data/HM"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/HN.json: -------------------------------------------------------------------------------- 1 | {"zipex":"31301","key":"HN","name":"HONDURAS","fmt":"%N%n%O%n%A%n%C, %S%n%Z","require":"ACS","zip":"\\d{5}","id":"data/HN"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/HR.json: -------------------------------------------------------------------------------- 1 | {"zipex":"10000,21001,10002","key":"HR","name":"CROATIA","fmt":"%N%n%O%n%A%nHR-%Z %C","postprefix":"HR-","zip":"\\d{5}","posturl":"http://www.posta.hr/default.aspx?pretpum","id":"data/HR"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/HT.json: -------------------------------------------------------------------------------- 1 | {"zipex":"6120,5310,6110,8510","key":"HT","name":"HAITI","fmt":"%N%n%O%n%A%nHT%Z %C","postprefix":"HT","zip":"\\d{4}","id":"data/HT"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/HU.json: -------------------------------------------------------------------------------- 1 | {"zipex":"1037,2380,1540","key":"HU","name":"HUNGARY (Rep.)","fmt":"%N%n%O%n%C%n%A%n%Z","posturl":"http://posta.hu/ugyfelszolgalat/iranyitoszam_kereso","require":"ACZ","zip":"\\d{4}","upper":"ACNO","id":"data/HU"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/IL.json: -------------------------------------------------------------------------------- 1 | {"zipex":"9614303","key":"IL","name":"ISRAEL","fmt":"%N%n%O%n%A%n%C %Z","zip":"\\d{5}(?:\\d{2})?","posturl":"http://www.israelpost.co.il/zipcode.nsf/demozip?openform","id":"data/IL"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/IO.json: -------------------------------------------------------------------------------- 1 | {"zipex":"BBND 1ZZ","key":"IO","name":"BRITISH INDIAN OCEAN TERRITORY","fmt":"%N%n%O%n%A%n%C%n%Z","require":"ACZ","zip":"BBND 1ZZ","upper":"CZ","id":"data/IO"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/IQ.json: -------------------------------------------------------------------------------- 1 | {"zipex":"31001","key":"IQ","name":"IRAQ","fmt":"%O%n%N%n%A%n%C, %S%n%Z","require":"ACS","zip":"\\d{5}","upper":"CS","id":"data/IQ"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/IS.json: -------------------------------------------------------------------------------- 1 | {"zipex":"320,121,220,110","key":"IS","name":"ICELAND","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{3}","posturl":"http://www.postur.is/einstaklingar/posthus/postnumer/","id":"data/IS"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/JO.json: -------------------------------------------------------------------------------- 1 | {"zipex":"11937,11190","key":"JO","name":"JORDAN","fmt":"%N%n%O%n%A%n%C %Z","zip":"\\d{5}","id":"data/JO"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/KE.json: -------------------------------------------------------------------------------- 1 | {"zipex":"20100,00100","key":"KE","name":"KENYA","fmt":"%N%n%O%n%A%n%C%n%Z","zip":"\\d{5}","id":"data/KE"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/KG.json: -------------------------------------------------------------------------------- 1 | {"zipex":"720001","key":"KG","name":"KYRGYZSTAN","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{6}","id":"data/KG"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/KH.json: -------------------------------------------------------------------------------- 1 | {"zipex":"12203,14206,12000","key":"KH","name":"CAMBODIA","fmt":"%N%n%O%n%A%n%C %Z","zip":"\\d{5}","id":"data/KH"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/KI.json: -------------------------------------------------------------------------------- 1 | {"key":"KI","name":"KIRIBATI","fmt":"%N%n%O%n%A%n%S%n%C","upper":"ACNOS","state_name_type":"island","id":"data/KI"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/KM.json: -------------------------------------------------------------------------------- 1 | {"key":"KM","name":"COMOROS","upper":"AC","id":"data/KM"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/KN.json: -------------------------------------------------------------------------------- 1 | {"require":"ACS","key":"KN","name":"SAINT KITTS AND NEVIS","fmt":"%N%n%O%n%A%n%C, %S","lang":"en","sub_isoids":"N~K","sub_keys":"Nevis~St. Kitts","languages":"en","state_name_type":"island","id":"data/KN"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/KW.json: -------------------------------------------------------------------------------- 1 | {"zipex":"54541,54551,54404,13009","key":"KW","name":"KUWAIT","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{5}","id":"data/KW"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/KZ.json: -------------------------------------------------------------------------------- 1 | {"zipex":"040900,050012","key":"KZ","name":"KAZAKHSTAN","fmt":"%Z%n%S%n%C%n%A%n%O%n%N","zip":"\\d{6}","id":"data/KZ"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/LA.json: -------------------------------------------------------------------------------- 1 | {"zipex":"01160,01000","key":"LA","name":"LAO (PEOPLE'S DEM. REP.)","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{5}","id":"data/LA"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/LB.json: -------------------------------------------------------------------------------- 1 | {"zipex":"2038 3054,1107 2810,1000","key":"LB","name":"LEBANON","fmt":"%N%n%O%n%A%n%C %Z","zip":"(?:\\d{4})(?: ?(?:\\d{4}))?","id":"data/LB"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/LC.json: -------------------------------------------------------------------------------- 1 | {"key":"LC","name":"SAINT LUCIA","id":"data/LC"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/LK.json: -------------------------------------------------------------------------------- 1 | {"zipex":"20000,00100","key":"LK","name":"SRI LANKA","fmt":"%N%n%O%n%A%n%C%n%Z","zip":"\\d{5}","posturl":"http://www.slpost.gov.lk/","id":"data/LK"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/LR.json: -------------------------------------------------------------------------------- 1 | {"zipex":"1000","key":"LR","name":"LIBERIA","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{4}","id":"data/LR"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/LS.json: -------------------------------------------------------------------------------- 1 | {"zipex":"100","key":"LS","name":"LESOTHO","fmt":"%N%n%O%n%A%n%C %Z","zip":"\\d{3}","id":"data/LS"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/LT.json: -------------------------------------------------------------------------------- 1 | {"zipex":"04340,03500","key":"LT","name":"LITHUANIA","fmt":"%O%n%N%n%A%nLT-%Z %C","postprefix":"LT-","zip":"\\d{5}","posturl":"http://www.post.lt/lt/?id=316","id":"data/LT"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/LV.json: -------------------------------------------------------------------------------- 1 | {"zipex":"LV-1073,LV-1000","key":"LV","name":"LATVIA","fmt":"%N%n%O%n%A%n%C, %Z","zip":"LV-\\d{4}","posturl":"http://www.pasts.lv/lv/uzzinas/nodalas/","id":"data/LV"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/LY.json: -------------------------------------------------------------------------------- 1 | {"key":"LY","name":"LIBYA","id":"data/LY"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/MA.json: -------------------------------------------------------------------------------- 1 | {"zipex":"53000,10000,20050,16052","key":"MA","name":"MOROCCO","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{5}","id":"data/MA"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/MC.json: -------------------------------------------------------------------------------- 1 | {"zipex":"98000,98020,98011,98001","key":"MC","name":"MONACO","fmt":"%N%n%O%n%A%nMC-%Z %C %X","postprefix":"MC-","zip":"980\\d{2}","id":"data/MC"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/MD.json: -------------------------------------------------------------------------------- 1 | {"zipex":"2012,2019","key":"MD","name":"Rep. MOLDOVA","fmt":"%N%n%O%n%A%nMD-%Z %C","postprefix":"MD-","zip":"\\d{4}","id":"data/MD"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/ME.json: -------------------------------------------------------------------------------- 1 | {"zipex":"81257,81258,81217,84314,85366","key":"ME","name":"MONTENEGRO","fmt":"%N%n%O%n%A%n%Z %C","zip":"8\\d{4}","id":"data/ME"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/MG.json: -------------------------------------------------------------------------------- 1 | {"zipex":"501,101","key":"MG","name":"MADAGASCAR","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{3}","id":"data/MG"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/MK.json: -------------------------------------------------------------------------------- 1 | {"zipex":"1314,1321,1443,1062","key":"MK","name":"MACEDONIA","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{4}","id":"data/MK"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/ML.json: -------------------------------------------------------------------------------- 1 | {"key":"ML","name":"MALI","id":"data/ML"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/MM.json: -------------------------------------------------------------------------------- 1 | {"zipex":"11181","key":"MM","name":"MYANMAR","fmt":"%N%n%O%n%A%n%C, %Z","zip":"\\d{5}","id":"data/MM"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/MN.json: -------------------------------------------------------------------------------- 1 | {"zipex":"65030,65270","key":"MN","name":"MONGOLIA","fmt":"%N%n%O%n%A%n%C%n%S %Z","zip":"\\d{5}","posturl":"http://www.zipcode.mn/","id":"data/MN"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/MO.json: -------------------------------------------------------------------------------- 1 | {"lfmt":"%N%n%O%n%A","key":"MO","name":"MACAO","fmt":"%A%n%O%n%N","require":"A","id":"data/MO"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/MR.json: -------------------------------------------------------------------------------- 1 | {"key":"MR","name":"MAURITANIA","upper":"AC","id":"data/MR"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/MS.json: -------------------------------------------------------------------------------- 1 | {"key":"MS","name":"MONTSERRAT","id":"data/MS"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/MT.json: -------------------------------------------------------------------------------- 1 | {"zipex":"NXR 01,ZTN 05,GPO 01,BZN 1130,SPB 6031,VCT 1753","key":"MT","name":"MALTA","fmt":"%N%n%O%n%A%n%C %Z","posturl":"http://postcodes.maltapost.com/","zip":"[A-Z]{3} ?\\d{2,4}","upper":"CZ","id":"data/MT"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/MU.json: -------------------------------------------------------------------------------- 1 | {"zipex":"42602","key":"MU","name":"MAURITIUS","fmt":"%N%n%O%n%A%n%Z%n%C","zip":"\\d{3}(?:\\d{2}|[A-Z]{2}\\d{3})","upper":"CZ","id":"data/MU"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/MV.json: -------------------------------------------------------------------------------- 1 | {"zipex":"20026","key":"MV","name":"MALDIVES","fmt":"%N%n%O%n%A%n%C %Z","zip":"\\d{5}","posturl":"http://www.maldivespost.com/?lid=10","id":"data/MV"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/MW.json: -------------------------------------------------------------------------------- 1 | {"key":"MW","name":"MALAWI","fmt":"%N%n%O%n%A%n%C %X","id":"data/MW"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/NA.json: -------------------------------------------------------------------------------- 1 | {"key":"NA","name":"NAMIBIA","id":"data/NA"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/NE.json: -------------------------------------------------------------------------------- 1 | {"zipex":"8001","key":"NE","name":"NIGER","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{4}","id":"data/NE"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/NF.json: -------------------------------------------------------------------------------- 1 | {"zipex":"2899","key":"NF","name":"NORFOLK ISLAND","fmt":"%O%n%N%n%A%n%C %S %Z","zip":"2899","upper":"CS","id":"data/NF"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/NL.json: -------------------------------------------------------------------------------- 1 | {"zipex":"1234 AB,2490 AA","key":"NL","name":"NETHERLANDS","fmt":"%O%n%N%n%A%n%Z %C","require":"ACZ","zip":"[1-9][0-9]{3} ?(?!SA|SD|SS)[A-Z]{2}","posturl":"http://www.postnl.nl/voorthuis/","id":"data/NL"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/NO.json: -------------------------------------------------------------------------------- 1 | {"zipex":"0025,0107,6631","key":"NO","name":"NORWAY","fmt":"%N%n%O%n%A%n%Z %C","locality_name_type":"post_town","require":"ACZ","zip":"\\d{4}","posturl":"http://adressesok.posten.no/nb/postal_codes/search","id":"data/NO"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/NP.json: -------------------------------------------------------------------------------- 1 | {"zipex":"44601","key":"NP","name":"NEPAL","fmt":"%N%n%O%n%A%n%C %Z","zip":"\\d{5}","posturl":"http://www.gpo.gov.np/Home/Postalcode","id":"data/NP"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/NU.json: -------------------------------------------------------------------------------- 1 | {"key":"NU","name":"NIUE","id":"data/NU"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/OM.json: -------------------------------------------------------------------------------- 1 | {"zipex":"133,112,111","key":"OM","name":"OMAN","fmt":"%N%n%O%n%A%n%Z%n%C","zip":"(?:PC )?\\d{3}","id":"data/OM"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/PA.json: -------------------------------------------------------------------------------- 1 | {"key":"PA","name":"PANAMA (REP.)","upper":"CS","fmt":"%N%n%O%n%A%n%C%n%S","id":"data/PA"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/PF.json: -------------------------------------------------------------------------------- 1 | {"zipex":"98709","key":"PF","name":"FRENCH POLYNESIA","fmt":"%N%n%O%n%A%n%Z %C %S","state_name_type":"island","require":"ACSZ","zip":"987\\d{2}","upper":"CS","id":"data/PF"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/PG.json: -------------------------------------------------------------------------------- 1 | {"zipex":"111","key":"PG","name":"PAPUA NEW GUINEA","fmt":"%N%n%O%n%A%n%C %Z %S","require":"ACS","zip":"\\d{3}","id":"data/PG"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/PK.json: -------------------------------------------------------------------------------- 1 | {"zipex":"44000","key":"PK","name":"PAKISTAN","fmt":"%N%n%O%n%A%n%C-%Z","zip":"\\d{5}","posturl":"http://www.pakpost.gov.pk/postcode.php","id":"data/PK"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/PL.json: -------------------------------------------------------------------------------- 1 | {"zipex":"00-950,05-470,48-300,32-015,00-940","key":"PL","name":"POLAND","fmt":"%N%n%O%n%A%n%Z %C","require":"ACZ","zip":"\\d{2}-\\d{3}","posturl":"http://kody.poczta-polska.pl/","id":"data/PL"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/PM.json: -------------------------------------------------------------------------------- 1 | {"zipex":"97500","key":"PM","name":"ST. PIERRE AND MIQUELON","fmt":"%O%n%N%n%A%n%Z %C %X","require":"ACZ","zip":"9[78]5\\d{2}","upper":"ACX","id":"data/PM"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/PN.json: -------------------------------------------------------------------------------- 1 | {"zipex":"PCRN 1ZZ","key":"PN","name":"PITCAIRN","fmt":"%N%n%O%n%A%n%C%n%Z","require":"ACZ","zip":"PCRN 1ZZ","upper":"CZ","id":"data/PN"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/PS.json: -------------------------------------------------------------------------------- 1 | {"key":"PS","name":"PALESTINIAN TERRITORY","id":"data/PS"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/PY.json: -------------------------------------------------------------------------------- 1 | {"zipex":"1536,1538,1209","key":"PY","name":"PARAGUAY","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{4}","id":"data/PY"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/QA.json: -------------------------------------------------------------------------------- 1 | {"key":"QA","name":"QATAR","upper":"AC","id":"data/QA"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/RO.json: -------------------------------------------------------------------------------- 1 | {"zipex":"060274,061357,200716","key":"RO","name":"ROMANIA","fmt":"%N%n%O%n%A%n%Z %C","posturl":"http://www.posta-romana.ro/zip_codes","zip":"\\d{6}","upper":"AC","id":"data/RO"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/RS.json: -------------------------------------------------------------------------------- 1 | {"zipex":"106314","key":"RS","name":"REPUBLIC OF SERBIA","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{5,6}","posturl":"http://www.posta.rs/struktura/lat/aplikacije/pronadji/nadji-postu.asp","id":"data/RS"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/RW.json: -------------------------------------------------------------------------------- 1 | {"key":"RW","name":"RWANDA","upper":"AC","id":"data/RW"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/SA.json: -------------------------------------------------------------------------------- 1 | {"zipex":"11564,11187,11142","key":"SA","name":"SAUDI ARABIA","fmt":"%N%n%O%n%A%n%C %Z","zip":"\\d{5}","id":"data/SA"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/SB.json: -------------------------------------------------------------------------------- 1 | {"key":"SB","name":"SOLOMON ISLANDS","id":"data/SB"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/SC.json: -------------------------------------------------------------------------------- 1 | {"key":"SC","name":"SEYCHELLES","fmt":"%N%n%O%n%A%n%C%n%S","upper":"S","state_name_type":"island","id":"data/SC"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/SD.json: -------------------------------------------------------------------------------- 1 | {"zipex":"11042,11113","key":"SD","name":"SUDAN","fmt":"%N%n%O%n%A%n%C%n%Z","zip":"\\d{5}","locality_name_type":"district","id":"data/SD"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/SG.json: -------------------------------------------------------------------------------- 1 | {"zipex":"546080,308125,408600","key":"SG","name":"REP. OF SINGAPORE","fmt":"%N%n%O%n%A%nSINGAPORE %Z","require":"AZ","zip":"\\d{6}","posturl":"https://www.singpost.com/find-postal-code","id":"data/SG"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/SH.json: -------------------------------------------------------------------------------- 1 | {"zipex":"STHL 1ZZ","key":"SH","name":"SAINT HELENA","fmt":"%N%n%O%n%A%n%C%n%Z","require":"ACZ","zip":"(?:ASCN|STHL) 1ZZ","upper":"CZ","id":"data/SH"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/SI.json: -------------------------------------------------------------------------------- 1 | {"zipex":"4000,1001,2500","key":"SI","name":"SLOVENIA","fmt":"%N%n%O%n%A%nSI-%Z %C","postprefix":"SI-","zip":"\\d{4}","id":"data/SI"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/SJ.json: -------------------------------------------------------------------------------- 1 | {"zipex":"9170","key":"SJ","name":"SVALBARD AND JAN MAYEN ISLANDS","fmt":"%N%n%O%n%A%n%Z %C","locality_name_type":"post_town","require":"ACZ","zip":"\\d{4}","posturl":"http://epab.posten.no/","id":"data/SJ"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/SK.json: -------------------------------------------------------------------------------- 1 | {"zipex":"010 01,023 14,972 48,921 01,975 99","key":"SK","name":"SLOVAKIA","fmt":"%N%n%O%n%A%n%Z %C","require":"ACZ","zip":"\\d{3} ?\\d{2}","posturl":"http://psc.posta.sk","id":"data/SK"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/SL.json: -------------------------------------------------------------------------------- 1 | {"key":"SL","name":"SIERRA LEONE","id":"data/SL"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/SM.json: -------------------------------------------------------------------------------- 1 | {"zipex":"47890,47891,47895,47899","key":"SM","name":"SAN MARINO","fmt":"%N%n%O%n%A%n%Z %C","require":"AZ","zip":"4789\\d","posturl":"http://www.poste.it/online/cercacap/","id":"data/SM"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/SN.json: -------------------------------------------------------------------------------- 1 | {"zipex":"12500,46024,16556,10000","key":"SN","name":"SENEGAL","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{5}","id":"data/SN"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/SS.json: -------------------------------------------------------------------------------- 1 | {"key":"SS","name":"SOUTH SUDAN","id":"data/SS"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/ST.json: -------------------------------------------------------------------------------- 1 | {"key":"ST","name":"SAO TOME AND PRINCIPE","id":"data/ST"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/SX.json: -------------------------------------------------------------------------------- 1 | {"key":"SX","name":"SINT MAARTEN","id":"data/SX"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/SY.json: -------------------------------------------------------------------------------- 1 | {"locality_name_type":"district","id":"data/SY","key":"SY","name":"SYRIA"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/SZ.json: -------------------------------------------------------------------------------- 1 | {"zipex":"H100","key":"SZ","name":"SWAZILAND","fmt":"%N%n%O%n%A%n%C%n%Z","posturl":"http://www.sptc.co.sz/swazipost/codes/index.php","zip":"[HLMS]\\d{3}","upper":"ACZ","id":"data/SZ"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/TA.json: -------------------------------------------------------------------------------- 1 | {"zipex":"TDCU 1ZZ","key":"TA","name":"TRISTAN DA CUNHA","fmt":"%N%n%O%n%A%n%C%n%Z","zip":"TDCU 1ZZ","id":"data/TA"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/TC.json: -------------------------------------------------------------------------------- 1 | {"zipex":"TKCA 1ZZ","key":"TC","name":"TURKS AND CAICOS ISLANDS","fmt":"%N%n%O%n%A%n%C%n%Z","require":"ACZ","zip":"TKCA 1ZZ","upper":"CZ","id":"data/TC"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/TD.json: -------------------------------------------------------------------------------- 1 | {"key":"TD","name":"CHAD","id":"data/TD"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/TF.json: -------------------------------------------------------------------------------- 1 | {"key":"TF","name":"FRENCH SOUTHERN TERRITORIES","id":"data/TF"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/TG.json: -------------------------------------------------------------------------------- 1 | {"key":"TG","name":"TOGO","id":"data/TG"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/TJ.json: -------------------------------------------------------------------------------- 1 | {"zipex":"735450,734025","key":"TJ","name":"TAJIKISTAN","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{6}","id":"data/TJ"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/TK.json: -------------------------------------------------------------------------------- 1 | {"key":"TK","name":"TOKELAU","id":"data/TK"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/TL.json: -------------------------------------------------------------------------------- 1 | {"key":"TL","name":"TIMOR-LESTE","id":"data/TL"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/TM.json: -------------------------------------------------------------------------------- 1 | {"zipex":"744000","key":"TM","name":"TURKMENISTAN","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{6}","id":"data/TM"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/TN.json: -------------------------------------------------------------------------------- 1 | {"zipex":"1002,8129,3100,1030","key":"TN","name":"TUNISIA","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{4}","posturl":"http://www.poste.tn/codes.php","id":"data/TN"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/TO.json: -------------------------------------------------------------------------------- 1 | {"key":"TO","name":"TONGA","id":"data/TO"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/TT.json: -------------------------------------------------------------------------------- 1 | {"key":"TT","name":"TRINIDAD AND TOBAGO","id":"data/TT"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/TZ.json: -------------------------------------------------------------------------------- 1 | {"zipex":"6090,34413","key":"TZ","name":"TANZANIA (UNITED REP.)","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{4,5}","id":"data/TZ"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/UG.json: -------------------------------------------------------------------------------- 1 | {"key":"UG","name":"UGANDA","id":"data/UG"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/UZ.json: -------------------------------------------------------------------------------- 1 | {"zipex":"702100,700000","key":"UZ","name":"UZBEKISTAN","fmt":"%N%n%O%n%A%n%Z %C%n%S","posturl":"http://www.pochta.uz/ru/uslugi/indexsearch.html","zip":"\\d{6}","upper":"CS","id":"data/UZ"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/VA.json: -------------------------------------------------------------------------------- 1 | {"zipex":"00120","key":"VA","name":"VATICAN","fmt":"%N%n%O%n%A%n%Z %C","zip":"00120","id":"data/VA"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/VG.json: -------------------------------------------------------------------------------- 1 | {"zipex":"VG1110,VG1150,VG1160","key":"VG","name":"VIRGIN ISLANDS (BRITISH)","fmt":"%N%n%O%n%A%n%C%n%Z","require":"A","zip":"VG\\d{4}","id":"data/VG"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/VU.json: -------------------------------------------------------------------------------- 1 | {"key":"VU","name":"VANUATU","id":"data/VU"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/WF.json: -------------------------------------------------------------------------------- 1 | {"zipex":"98600","key":"WF","name":"WALLIS AND FUTUNA ISLANDS","fmt":"%O%n%N%n%A%n%Z %C %X","require":"ACZ","zip":"986\\d{2}","upper":"ACX","id":"data/WF"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/WS.json: -------------------------------------------------------------------------------- 1 | {"key":"WS","name":"SAMOA","id":"data/WS"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/XK.json: -------------------------------------------------------------------------------- 1 | {"zipex":"10000","key":"XK","name":"KOSOVO","fmt":"%N%n%O%n%A%n%Z %C","zip":"[1-7]\\d{4}","id":"data/XK"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/YE.json: -------------------------------------------------------------------------------- 1 | {"key":"YE","name":"YEMEN","id":"data/YE"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/YT.json: -------------------------------------------------------------------------------- 1 | {"zipex":"97600","key":"YT","name":"MAYOTTE","fmt":"%O%n%N%n%A%n%Z %C %X","require":"ACZ","zip":"976\\d{2}","upper":"ACX","id":"data/YT"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/ZA.json: -------------------------------------------------------------------------------- 1 | {"zipex":"0083,1451,0001","key":"ZA","name":"SOUTH AFRICA","fmt":"%N%n%O%n%A%n%D%n%C%n%Z","require":"ACZ","zip":"\\d{4}","posturl":"https://www.postoffice.co.za/Questions/postalcode.html","id":"data/ZA"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/ZM.json: -------------------------------------------------------------------------------- 1 | {"zipex":"50100,50101","key":"ZM","name":"ZAMBIA","fmt":"%N%n%O%n%A%n%Z %C","zip":"\\d{5}","id":"data/ZM"} -------------------------------------------------------------------------------- /resources/chromium-i18n/ssl-address/ZW.json: -------------------------------------------------------------------------------- 1 | {"key":"ZW","name":"ZIMBABWE","id":"data/ZW"} -------------------------------------------------------------------------------- /resources/custom/custom.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | const resourceLoader = require('../helper').resourceLoader 3 | const dictPath = path.join(__dirname, `./dictionaries`) 4 | 5 | module.exports.load = resourceLoader(dictPath) 6 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/af/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | h 2 | k 3 | l 4 | n 5 | o 6 | s 7 | v 8 | w -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/af/concatenated_suffixes_inseparable.txt: -------------------------------------------------------------------------------- 1 | park|pk. -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/af/place_names.txt: -------------------------------------------------------------------------------- 1 | kasteel 2 | markt|mkt -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/af/qualifiers.txt: -------------------------------------------------------------------------------- 1 | noordekant 2 | oostekant 3 | westekant 4 | suidekant -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/all/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | ck 2 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ar/personal_titles.txt: -------------------------------------------------------------------------------- 1 | الملك 2 | الشيخ 3 | الدكتور 4 | الأمير -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ar/place_names.txt: -------------------------------------------------------------------------------- 1 | المطار -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ar/street_types.txt: -------------------------------------------------------------------------------- 1 | شارع 2 | الطريق 3 | طريق 4 | السيار 5 | نهج 6 | الطريق الدائري 7 | جادة 8 | حارة 9 | ميدان 10 | الشارع 11 | ساحة -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ast/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | s -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ast/personal_titles.txt: -------------------------------------------------------------------------------- 1 | san|s -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ast/street_types.txt: -------------------------------------------------------------------------------- 1 | cai 2 | camín|camin 3 | paséu|paseu -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/az/building_types.txt: -------------------------------------------------------------------------------- 1 | mənzil|menzil -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/az/personal_titles.txt: -------------------------------------------------------------------------------- 1 | akademik 2 | general|gen 3 | müqəddəs|muqeddes -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/az/place_names.txt: -------------------------------------------------------------------------------- 1 | aeroport -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/be/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | d 2 | h 3 | k 4 | s 5 | г 6 | д 7 | к 8 | ш -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/be/building_types.txt: -------------------------------------------------------------------------------- 1 | корпус|к 2 | korpus|k -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/be/chains.txt: -------------------------------------------------------------------------------- 1 | беларусбанк 2 | belarusbank 3 | belfius 4 | belfius bank 5 | берёзка 6 | beriozka|beryozka 7 | евроопт 8 | evroopt -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/be/house_numbers.txt: -------------------------------------------------------------------------------- 1 | дом|д 2 | dom|d -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/be/personal_titles.txt: -------------------------------------------------------------------------------- 1 | акадэміка 2 | akademika 3 | генерала|ген 4 | generala|gen 5 | святой|св 6 | sviatoj|sv -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/be/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | кватэра|кв 2 | kvatera|kv -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bg/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | s 2 | с -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bg/cross_streets.txt: -------------------------------------------------------------------------------- 1 | и 2 | i 3 | между 4 | mezhdu 5 | на ъгъла на 6 | na ŭgŭla na|na ugula na 7 | ъгъл 8 | ŭgŭl|ugul 9 | ъгъл на 10 | ŭgŭl na|ugul na -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bg/directionals.txt: -------------------------------------------------------------------------------- 1 | изток 2 | istok 3 | север 4 | sever 5 | юг 6 | yug 7 | запад 8 | zapad -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bg/entrances.txt: -------------------------------------------------------------------------------- 1 | вход|вх 2 | vkhod|vkh -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bg/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | этаж|эт 2 | etazh|et 3 | кат 4 | kat 5 | ниво 6 | nivo -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bg/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | партер 2 | parter 3 | приземен етаж|приземен ет 4 | prizemen etazh|prizemen et -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bg/number.txt: -------------------------------------------------------------------------------- 1 | номер|но|№|no 2 | nomer|№|no -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bg/place_names.txt: -------------------------------------------------------------------------------- 1 | мост 2 | most 3 | фабрика 4 | fabrika 5 | училище 6 | uchilishte -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bg/post_office.txt: -------------------------------------------------------------------------------- 1 | пощенска кутия|пк|п.к|п к 2 | poshtenska kutiya|pk|p.k|p k -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bg/qualifiers.txt: -------------------------------------------------------------------------------- 1 | блок|бл 2 | blok|bl 3 | село|с 4 | selo|s 5 | град|гр 6 | grad|gr 7 | квартал|кварт|кв|кв-л 8 | kvartal|kvart|kv|kv-l 9 | жилищен комплекс|ж.к.|жк|ж к 10 | zhilishten kompleks|z.k.|zk|z k -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bg/staircases.txt: -------------------------------------------------------------------------------- 1 | стълбище 2 | stŭlbishte|stulbishte -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bg/street_types.txt: -------------------------------------------------------------------------------- 1 | Булевард|бул 2 | bulevard|bul 3 | площад|пл 4 | ploshtad|pl 5 | улица|ул 6 | ulitsa|ul -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bg/unit_directions.txt: -------------------------------------------------------------------------------- 1 | дясно 2 | dyasno 3 | ляво 4 | lyavo -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bg/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | апартамент|ап|апт 2 | apartament|ap|apt 3 | офис|оф 4 | ofis|of 5 | стая 6 | staya -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/br/personal_titles.txt: -------------------------------------------------------------------------------- 1 | aotrou 2 | jeneral 3 | sant -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/br/place_names.txt: -------------------------------------------------------------------------------- 1 | burev 2 | kastell 3 | takad kenwerzh -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/br/qualifiers.txt: -------------------------------------------------------------------------------- 1 | amezeg -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/br/stopwords.txt: -------------------------------------------------------------------------------- 1 | a 2 | al 3 | an 4 | ar -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bs/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | c 2 | i 3 | j 4 | s 5 | z -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bs/building_types.txt: -------------------------------------------------------------------------------- 1 | zgrada -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bs/cross_streets.txt: -------------------------------------------------------------------------------- 1 | i 2 | između|izmedu 3 | na 4 | na uglu 5 | ugao 6 | uglu -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bs/directionals.txt: -------------------------------------------------------------------------------- 1 | istok|i 2 | jug|j 3 | sjever|s 4 | zapad|z -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bs/entrances.txt: -------------------------------------------------------------------------------- 1 | ulaz -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bs/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | podrum -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bs/level_types_mezzanine.txt: -------------------------------------------------------------------------------- 1 | mezanin -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bs/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | kat 2 | sprat -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bs/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | parter 2 | prizemlje -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bs/near.txt: -------------------------------------------------------------------------------- 1 | ovde 2 | u 3 | u blizini 4 | u blizini mene 5 | u blizini ovdje -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bs/no_number.txt: -------------------------------------------------------------------------------- 1 | bez broja|bb|b.b|b b|bez br -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bs/number.txt: -------------------------------------------------------------------------------- 1 | broj|br -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bs/personal_titles.txt: -------------------------------------------------------------------------------- 1 | cara 2 | doktor|dr 3 | knez 4 | kralja 5 | kraljice 6 | maršala|marsala 7 | svetog|sv 8 | vojvode -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bs/place_names.txt: -------------------------------------------------------------------------------- 1 | crkva 2 | dom 3 | džamija|dzamija 4 | gradina 5 | kula 6 | luka 7 | most 8 | školska|skolska 9 | tvornička|tvornicka -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bs/post_office.txt: -------------------------------------------------------------------------------- 1 | postanški pretinac|p.p|pp|p p|postanski pretinac -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bs/qualifiers.txt: -------------------------------------------------------------------------------- 1 | grad 2 | naselje -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bs/staircases.txt: -------------------------------------------------------------------------------- 1 | stubište|stubiste -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bs/stopwords.txt: -------------------------------------------------------------------------------- 1 | i 2 | za -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bs/street_types.txt: -------------------------------------------------------------------------------- 1 | aleja|al 2 | avenija|av 3 | bulevar|bul 4 | cesta|c 5 | drvored 6 | klanac 7 | most 8 | prilaz 9 | put 10 | šetalište|setaliste 11 | trg 12 | ulica|ul -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bs/unit_directions.txt: -------------------------------------------------------------------------------- 1 | desno 2 | lijevo -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/bs/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | apartman|ap|apt 2 | soba 3 | stan 4 | ured -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ca/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | b 3 | d 4 | e 5 | h 6 | n 7 | o 8 | s 9 | v -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ca/cross_streets.txt: -------------------------------------------------------------------------------- 1 | & 2 | a 3 | i 4 | amb 5 | cantonada 6 | cantonada de 7 | a la cantonada de 8 | entre|entre /|e / -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ca/directionals.txt: -------------------------------------------------------------------------------- 1 | est|e 2 | nord|nort|n 3 | nordest|nord est|ne|n e 4 | nordoest|nord oest|no|n o 5 | occident 6 | oest|o 7 | sud|s 8 | sudest|sud est|se|s e 9 | sudoest|sud oest|so|s o -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ca/elisions.txt: -------------------------------------------------------------------------------- 1 | l' -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ca/entrances.txt: -------------------------------------------------------------------------------- 1 | entrada|entr|entd -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ca/given_names.txt: -------------------------------------------------------------------------------- 1 | maria|mª|m.a|m.ª -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ca/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | soterrani|so -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ca/level_types_mezzanine.txt: -------------------------------------------------------------------------------- 1 | entresòl|entl|entresol -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ca/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | pis 2 | planta|pl -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ca/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | àtic|àt|atic|at 2 | baixos|bxs 3 | planta baixa|pb 4 | principal|pr|pral 5 | sobreàtic|s / àt|s / at|sobreatic|s àt|s at -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ca/level_types_sub_basement.txt: -------------------------------------------------------------------------------- 1 | sub soterrani|ss|s.s|s s -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ca/near.txt: -------------------------------------------------------------------------------- 1 | a 2 | a prop de 3 | a prop 4 | a prop d'aquí|a prop d'aqui|a prop daquí|a prop daqui 5 | a prop meu 6 | aquí|aqui 7 | dins 8 | en 9 | prop 10 | prop de 11 | proper 12 | proper a -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ca/no_number.txt: -------------------------------------------------------------------------------- 1 | sense número|s / n|s.n.|s.n|s n|sn|sense numero -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ca/number.txt: -------------------------------------------------------------------------------- 1 | número|núm|numero|num|n|# -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ca/personal_titles.txt: -------------------------------------------------------------------------------- 1 | doctor|dr 2 | doctora|dra 3 | don|d 4 | dona|dª|dna|d.a|d.ª 5 | mestre 6 | mossèn|mn|mossen 7 | pintor 8 | poeta 9 | sant|st 10 | santa|stª|st.ª|sta|st.a -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ca/post_office.txt: -------------------------------------------------------------------------------- 1 | apartat|apt -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ca/postcodes.txt: -------------------------------------------------------------------------------- 1 | codi postal|cp -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ca/staircases.txt: -------------------------------------------------------------------------------- 1 | escala|esc -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ca/unit_directions.txt: -------------------------------------------------------------------------------- 1 | dreta|d|dta 2 | esquerra|e|esq -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ca/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | apartament|apmt 2 | casa 3 | habitació|hab|habitacio 4 | lletra 5 | lot|lt 6 | oficina|of 7 | parcel·la|parc|parcella 8 | porta|pta 9 | sala 10 | unitat|un 11 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/cs/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | c 3 | j 4 | s 5 | v 6 | z -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/cs/chains.txt: -------------------------------------------------------------------------------- 1 | albert -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/cs/cross_streets.txt: -------------------------------------------------------------------------------- 1 | & 2 | a 3 | i 4 | mezi 5 | na 6 | na rohu 7 | roh 8 | rohu 9 | v -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/cs/directionals.txt: -------------------------------------------------------------------------------- 1 | jih|j 2 | sever|s 3 | východ|vychod|v 4 | západ|zapad|z -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/cs/entrances.txt: -------------------------------------------------------------------------------- 1 | vchod -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/cs/house_numbers.txt: -------------------------------------------------------------------------------- 1 | číslo popisné|č.p.|č.p|č. p.|č p|čp|č. p|cislo popisne|c.p.|c.p|c. p.|c p|cp|c. p -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/cs/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | podzemní podlaží|pp|podzemni podlazi -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/cs/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | etáž|etaz 2 | patro 3 | nadzemní podlaží|np|nadzemni podlazi -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/cs/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | přízemí|prizemi -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/cs/number.txt: -------------------------------------------------------------------------------- 1 | číslo|č|cislo|c -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/cs/personal_titles.txt: -------------------------------------------------------------------------------- 1 | doktor|dr 2 | svatý|sv|svaty -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/cs/post_office.txt: -------------------------------------------------------------------------------- 1 | poštovní přihrádka|postovni prihradka -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/cs/staircases.txt: -------------------------------------------------------------------------------- 1 | schodiště|schodiste -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/cs/stopwords.txt: -------------------------------------------------------------------------------- 1 | a|& -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/cs/street_types.txt: -------------------------------------------------------------------------------- 1 | nábřeží|nabrezi|nábř|nabr 2 | náměstí|nám|namesti|nam 3 | příčná|pricna 4 | třída|tř|trida|tr 5 | ulice|ul|u 6 | ulička|ulicka -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/cs/unit_directions.txt: -------------------------------------------------------------------------------- 1 | pravá|prava 2 | levá|leva -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/cs/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | apartmán|apartman|apt 2 | kancelář|kancelar 3 | pokoj|pok -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/cy/building_types.txt: -------------------------------------------------------------------------------- 1 | bythynnod 2 | fferm 3 | fflat 4 | tŷ|ty 5 | tyddyn 6 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/cy/directionals.txt: -------------------------------------------------------------------------------- 1 | gogledd|ogledd 2 | dwyrain|ddwyrain 3 | de|dde 4 | gorllewin|orllewin 5 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/cy/personal_titles.txt: -------------------------------------------------------------------------------- 1 | brenin 2 | sant -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/cy/qualifiers.txt: -------------------------------------------------------------------------------- 1 | pentre 2 | ynys -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/cy/stopwords.txt: -------------------------------------------------------------------------------- 1 | dan 2 | y 3 | yr -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/da/academic_degrees.txt: -------------------------------------------------------------------------------- 1 | advokat|adv -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/da/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | c 3 | n 4 | o 5 | s 6 | v 7 | ø -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/da/building_types.txt: -------------------------------------------------------------------------------- 1 | bygning 2 | hus 3 | huse -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/da/concatenated_suffixes_separable.txt: -------------------------------------------------------------------------------- 1 | banen 2 | dammen 3 | gade 4 | grænsen 5 | plads 6 | stræde|straede 7 | torv 8 | vej|v. 9 | vænge|vaenge -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/da/cross_streets.txt: -------------------------------------------------------------------------------- 1 | på hjørnet af|pa hjornet af|paa hjornet af 2 | hjørne af|hjorne af 3 | i 4 | og 5 | mellem|mell -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/da/directionals.txt: -------------------------------------------------------------------------------- 1 | centrum|c 2 | nordre|ndr 3 | nord|n 4 | nordøst|nø 5 | nordvest|nv 6 | øst|ø|ost|o 7 | østre|ostre 8 | søndre|sondre|sdr 9 | syd|s 10 | sydøst|sø 11 | sydvest|sv 12 | vest|v 13 | vestre -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/da/entrances.txt: -------------------------------------------------------------------------------- 1 | indgang -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/da/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | kælderen|kaelderen|kl|kld -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/da/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | etage|et|etg 2 | sal -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/da/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | stueetage 2 | stuen|st -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/da/number.txt: -------------------------------------------------------------------------------- 1 | nummer|nr|#|№|no -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/da/personal_titles.txt: -------------------------------------------------------------------------------- 1 | sankt|st|skt -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/da/place_names.txt: -------------------------------------------------------------------------------- 1 | akademi|akad 2 | bro 3 | broen 4 | centralpark 5 | departement|dep 6 | gaard|gård 7 | park -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/da/post_office.txt: -------------------------------------------------------------------------------- 1 | boks 2 | postboks|pb|post boks|p.b -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/da/staircases.txt: -------------------------------------------------------------------------------- 1 | stiege|stg 2 | trappe -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/da/stopwords.txt: -------------------------------------------------------------------------------- 1 | og|& -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/da/synonyms.txt: -------------------------------------------------------------------------------- 1 | store|st 2 | gammel|gl -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/da/unit_directions.txt: -------------------------------------------------------------------------------- 1 | midt for|m.f|mf|midtfor 2 | til højre|t.h|th 3 | til venstre|t.v|tv -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/da/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | hus 2 | lejlighed|lejl -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/de/academic_degrees.txt: -------------------------------------------------------------------------------- 1 | diplom ingenieur|dipl ing 2 | diplom kaufmann|dipl kfm 3 | doktor der medizin|dr med 4 | doktor der philosophie|dr phil 5 | magister|mag -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/de/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | a 3 | b 4 | ch 5 | d 6 | g 7 | h 8 | i 9 | k 10 | l 11 | n 12 | o 13 | r 14 | s 15 | u 16 | v 17 | w 18 | z -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/de/chains.txt: -------------------------------------------------------------------------------- 1 | auto teile unger|a.t.u|atu|a t u 2 | bipa 3 | kik 4 | deutsche post 5 | douglas 6 | hem 7 | kamps 8 | new yorker 9 | reno 10 | star 11 | trafik -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/de/concatenated_suffixes_inseparable.txt: -------------------------------------------------------------------------------- 1 | berg|bg. 2 | burg|bg. 3 | dorf|df. 4 | kogel|kg. 5 | universität|uni.|universitat|universitaet -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/de/cross_streets.txt: -------------------------------------------------------------------------------- 1 | an der ecke von 2 | ecke von 3 | in 4 | und 5 | zwischen|zn -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/de/entrances.txt: -------------------------------------------------------------------------------- 1 | eingang -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/de/house_numbers.txt: -------------------------------------------------------------------------------- 1 | konskriptionsnummer|konskr. nr|konskr nr|konskr.nr -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/de/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | untergeschoss|ug|u g -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/de/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | etage 2 | obergeschoss|og|o g 3 | stock -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/de/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | erdgeschoss|eg|e g 2 | oberste etage 3 | parkdeck 4 | unterste etage -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/de/number.txt: -------------------------------------------------------------------------------- 1 | nummer|nr|#|№|no -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/de/personal_suffixes.txt: -------------------------------------------------------------------------------- 1 | der jungere 2 | der altere -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/de/post_office.txt: -------------------------------------------------------------------------------- 1 | postfach|pf -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/de/qualifiers.txt: -------------------------------------------------------------------------------- 1 | bezirk|bez 2 | gemeinde|gde 3 | hauptstadt|hptst -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/de/staircases.txt: -------------------------------------------------------------------------------- 1 | stiege|stg 2 | treppe -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/de/unit_directions.txt: -------------------------------------------------------------------------------- 1 | links|l 2 | rechts|r -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/de/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | appartement|apt|app 2 | büro|buro|buero 3 | haus 4 | top 5 | wohnung|whg|w|/ w|/ / w 6 | wohnungsnummer 7 | zimmer|zi -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/el/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | el -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/el/building_types.txt: -------------------------------------------------------------------------------- 1 | κτίριο|κτιριο|κτ 2 | ktírio|ktirio|kt -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/el/entrances.txt: -------------------------------------------------------------------------------- 1 | είσοδος|εισοδος 2 | eísodos|eisodos -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/el/given_names.txt: -------------------------------------------------------------------------------- 1 | αλέξανδρου|αλεξανδρου|αλ 2 | aléxandrou|alexandrou|al 3 | γρηγορίου|γρηγοριου|γρ 4 | grigoríou|grigoriou|gr 5 | κωνσταντίνου|κωνσταντινου|κων / νου 6 | konstantínou|konstantinou|kon / nou -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/el/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | υπόγειο|υπογειο 2 | ypógeio|ypogeio -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/el/level_types_mezzanine.txt: -------------------------------------------------------------------------------- 1 | ημιώροφος|ημιωροφος 2 | imiórofos|imiorofos -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/el/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | όροφος|οροφος 2 | órofos|orofos -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/el/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | ισόγειο|ισογειο 2 | isógeio|isogelo -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/el/post_office.txt: -------------------------------------------------------------------------------- 1 | ταχυδρομική θυρίδα|τ.θ|τθ|τ θ|ταχυδρομικη θυριδα 2 | tachydromikí thyrída|t.th|tth|t thtachydromiki thyrida -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/el/postcodes.txt: -------------------------------------------------------------------------------- 1 | ταχυδρομικός κώδικας|ταχυδρομικος κωδικας|τ.κ|τκ 2 | ταχυδρομικός τομέας|ταχυδρομικος τομεας|τ.τ|ττ -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/el/qualifiers.txt: -------------------------------------------------------------------------------- 1 | δήμος|δημος|δ 2 | dímos|dimos|d 3 | νησί|νησι|ν 4 | nisí|nisi|n 5 | νομός|νομος|ν 6 | nomós|nomos|n -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/el/staircases.txt: -------------------------------------------------------------------------------- 1 | σκάλα|σκαλα 2 | skála|skala -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/el/street_types.txt: -------------------------------------------------------------------------------- 1 | οδός 2 | odós|odos|odhos 3 | λεωφόρος|λεωφορος|λ|λεωφ 4 | leofóros|leoforos|l|leof 5 | πλατεία|πλατεια|πλ 6 | plateía|plateia|pl -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/el/toponyms.txt: -------------------------------------------------------------------------------- 1 | θεσσαλονίκης|θεσσαλονικης|θεσ / νίκης|θεσ / νικης 2 | thessaloníkis|thessalonikis|thes / níkis|thes / nikis 3 | thessaloniki|thes / niki -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/el/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | διαμέρισμα|διαμερισμα 2 | diamérisma|diamerisma 3 | δωμάτιο|δωματιο 4 | domátio|domatio 5 | γραφείου|γραφειου 6 | grafeíou|grafeiou -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/en/cross_streets.txt: -------------------------------------------------------------------------------- 1 | & 2 | and 3 | @ 4 | at 5 | at the corner of|at the cnr of 6 | corner|cnr 7 | corner of|cnr of 8 | between|betw|btwn|btw|btween|b / t 9 | x -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/en/entrances.txt: -------------------------------------------------------------------------------- 1 | entrance|entr|ent -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/en/given_names.txt: -------------------------------------------------------------------------------- 1 | robert|robt 2 | william|wm -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/en/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | basement|bsm|bsmt|bsmnt|basement|bsment -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/en/level_types_mezzanine.txt: -------------------------------------------------------------------------------- 1 | mezzanine|mezz 2 | mezzanine floor|mezz fl|mezz floor 3 | mezzanine level|mezz lvl|mezz level 4 | lower mezzanine|lower mezz|lwr mezz 5 | upper mezzanine|upper mezz|uppr mezz|upr mezz -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/en/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | floor|fl|flr|/ f 2 | level|lev|levl|lvel|lvl|l|/ l 3 | platform|pf 4 | storey -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/en/level_types_sub_basement.txt: -------------------------------------------------------------------------------- 1 | sub basement|sub-basement|subbasement|sb|s.b -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/en/near.txt: -------------------------------------------------------------------------------- 1 | around 2 | around here 3 | in 4 | near 5 | near me 6 | near here 7 | nearby -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/en/no_number.txt: -------------------------------------------------------------------------------- 1 | no fixed address|nfa|n f a|n / f / a -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/en/nulls.txt: -------------------------------------------------------------------------------- 1 | not applicable|n / a|na|n a 2 | null -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/en/number.txt: -------------------------------------------------------------------------------- 1 | number|#|nbr|num|no|№|nmbr|nr -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/en/personal_suffixes.txt: -------------------------------------------------------------------------------- 1 | junior|jr|jnr 2 | senior|sr|snr -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/en/qualifiers.txt: -------------------------------------------------------------------------------- 1 | block|blk|bl|blck 2 | quadrant|qd|quad 3 | section|sec|sect|sxn 4 | township|twp|tshp 5 | village|vil|vge|vill|villag|villg|vlg|vlge|vllg|vl -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/en/staircases.txt: -------------------------------------------------------------------------------- 1 | stair 2 | staircase 3 | stairway -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/en/stopwords.txt: -------------------------------------------------------------------------------- 1 | a 2 | and|& 3 | all 4 | at 5 | between|betw|btwn|btw|btween|b / t 6 | by 7 | for 8 | in 9 | of 10 | on 11 | the 12 | to 13 | via 14 | opposite|opp -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/en/unit_directions.txt: -------------------------------------------------------------------------------- 1 | front|f|frnt 2 | left|l 3 | right|r 4 | rear|r -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/es/academic_degrees.txt: -------------------------------------------------------------------------------- 1 | licenciada|lcda|lda 2 | licenciado|lic|lcdo|ldo -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/es/cross_streets.txt: -------------------------------------------------------------------------------- 1 | & 2 | y 3 | en 4 | con 5 | x 6 | esquina|esq 7 | en la esquina de|en la esq de 8 | esquina de|esq de 9 | entre|entre /|e / -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/es/entrances.txt: -------------------------------------------------------------------------------- 1 | entrada|entr|entd 2 | portal|prtl 3 | pórtico|prtco|portico -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/es/given_names.txt: -------------------------------------------------------------------------------- 1 | federico|fco|fcº|fc° 2 | francisco|fco|fcº|franc|fc° 3 | maria|mª|m.a|m.ª -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/es/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | sótano|so|só|sotano -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/es/level_types_mezzanine.txt: -------------------------------------------------------------------------------- 1 | entresuelo|entlo -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/es/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | piso|pi|p 2 | planta|pl|p -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/es/level_types_sub_basement.txt: -------------------------------------------------------------------------------- 1 | sub sótano|ss|s.s|s s -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/es/near.txt: -------------------------------------------------------------------------------- 1 | acá 2 | aca 3 | cerca 4 | cerca de 5 | cerca de acá|cerca de aca 6 | cerca de aquí|cerca de aqui 7 | cerca de mì|cerca de mi 8 | en 9 | por aquí|por aqui 10 | próximo|proximo -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/es/no_number.txt: -------------------------------------------------------------------------------- 1 | sin número|s / n|sin numero|s.n.|s.n|s n|sn|s / nº|s / n°|s.nº|s.n°|snº|sn°|s / no -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/es/number.txt: -------------------------------------------------------------------------------- 1 | número|#|num|núm|no|numero|№|nº|n°|n.º|n.°|númr|numr|númro|numro|núm.ro|nr|num.ro|nro|n.ro|nrº|nr°|nr.º|nr.°|nmro|nmr.o|nmrº|nmr°|nmr.º|nmr.° -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/es/personal_suffixes.txt: -------------------------------------------------------------------------------- 1 | junior|iunior|jr -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/es/post_office.txt: -------------------------------------------------------------------------------- 1 | apartado|apdo|aptdo 2 | apartado de correos|apdo de correos 3 | apartado postal|apdo postal|aptdo postal 4 | casilla de correos|c.c|cc|c c -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/es/postcodes.txt: -------------------------------------------------------------------------------- 1 | codigo postal|cp|c.p|c p -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/es/staircases.txt: -------------------------------------------------------------------------------- 1 | escalera|esc|esca 2 | escalinata|escal|escalin -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/es/surnames.txt: -------------------------------------------------------------------------------- 1 | fernández|fernandez|fdez 2 | lópez|lopez|lpez 3 | hernández|hernandez|hdez 4 | gonzález|gonzalez|glez 5 | martínez|martinez|mnez 6 | rodríguez|rodriguez|rguez -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/es/unit_directions.txt: -------------------------------------------------------------------------------- 1 | derecha|dcha|d 2 | frente|fren 3 | izquierda|izq|izda|izqa|izqda|i 4 | trasera|trs|tras -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/es/unit_types_standalone.txt: -------------------------------------------------------------------------------- 1 | ático|át|atico|at|atco 2 | ático de lujo|át de lujo|atico de lujo|at de lujo|ático lujo|át lujo|atico lujo|at lujo|atco lujo 3 | cobertizo|cbtizfrente|fren 4 | sobreático|sobreatico 5 | trasera|trs|tras -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/et/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | k 3 | l 4 | p 5 | t -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/et/building_types.txt: -------------------------------------------------------------------------------- 1 | ehitusala|ehit 2 | maja 3 | talu|tl -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/et/cross_streets.txt: -------------------------------------------------------------------------------- 1 | ja 2 | nurgal 3 | nurgas 4 | vahel -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/et/directionals.txt: -------------------------------------------------------------------------------- 1 | edelasse 2 | ida 3 | kagu 4 | kirde 5 | lääs|laas 6 | loe 7 | lõuna|louna|l 8 | põhi|pohi|p 9 | põhja|pohja -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/et/entrances.txt: -------------------------------------------------------------------------------- 1 | sissepääs|sissepaas -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/et/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | kelder 2 | keldris -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/et/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | korrusel -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/et/near.txt: -------------------------------------------------------------------------------- 1 | lähedal|lahedal 2 | lähedal mulle|lahedal mulle 3 | siin lähedal|siin lahedal 4 | siinkandis -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/et/number.txt: -------------------------------------------------------------------------------- 1 | number|nr|no|#|nbr -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/et/post_office.txt: -------------------------------------------------------------------------------- 1 | abonementpostkast 2 | kast -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/et/qualifiers.txt: -------------------------------------------------------------------------------- 1 | kubermang|kub 2 | küla|kula 3 | maakond|mk 4 | oblast|obl 5 | rajoon|raj 6 | vald -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/et/staircases.txt: -------------------------------------------------------------------------------- 1 | trepikoda -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/et/stopwords.txt: -------------------------------------------------------------------------------- 1 | ja|& -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/et/street_types.txt: -------------------------------------------------------------------------------- 1 | allee 2 | esplanaadi 3 | maantee|mnt 4 | pargi 5 | plats 6 | puiestee|pst 7 | raudtee|rdt 8 | raudteejaam|rdtj 9 | tänav|tanav|tn 10 | tee|t -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/et/toponyms.txt: -------------------------------------------------------------------------------- 1 | tallinn|tln -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/et/unit_directions.txt: -------------------------------------------------------------------------------- 1 | paremal 2 | paremale 3 | vasakul 4 | vasakule -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/et/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | korter|k 2 | ruumi 3 | uks -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/eu/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | k -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/eu/cross_streets.txt: -------------------------------------------------------------------------------- 1 | & 2 | arteko 3 | eta 4 | txoko -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/eu/entrances.txt: -------------------------------------------------------------------------------- 1 | sarrera -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/eu/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | solairua|sol -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/eu/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | beheko solairua|beheko sol 2 | behe-solairua|behe solairua|behe-sol|behe sol -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/eu/near.txt: -------------------------------------------------------------------------------- 1 | hemen 2 | hemen gertu 3 | gertu 4 | gertuko 5 | me gertu -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/eu/no_number.txt: -------------------------------------------------------------------------------- 1 | zenbakirik gabe|zk.g|zk g|zk / g|zk g -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/eu/post_office.txt: -------------------------------------------------------------------------------- 1 | posta-kutxa|posta kutxa|p.-ku|p.ku|p ku|pku -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/eu/postcodes.txt: -------------------------------------------------------------------------------- 1 | posta-kodea|posta kodea|p.-k|p.k|pk|p k -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/eu/qualifiers.txt: -------------------------------------------------------------------------------- 1 | auzoa 2 | blokea|bl -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/eu/staircases.txt: -------------------------------------------------------------------------------- 1 | eskailera|eskra -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/eu/stopwords.txt: -------------------------------------------------------------------------------- 1 | eta|& -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/eu/unit_directions.txt: -------------------------------------------------------------------------------- 1 | eskuina|esk 2 | ezkerkada|ezk 3 | ezkerreko|ezk.-ko|ezk-ko|ezk.ko|ezkko -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/eu/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | apartamentu|ap|aptu|apt 2 | bulego -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fa/personal_titles.txt: -------------------------------------------------------------------------------- 1 | امام 2 | مدرس 3 | دکتر 4 | استاد 5 | شهریار 6 | شیخ -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fa/place_names.txt: -------------------------------------------------------------------------------- 1 | مسجد 2 | دانشگاه 3 | آموز -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fa/street_types.txt: -------------------------------------------------------------------------------- 1 | خیابان 2 | بلوار 3 | کوچه 4 | جاده 5 | بزرگراه 6 | آزادراه 7 | کوی -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fi/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | k 3 | p 4 | r 5 | t -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fi/building_types.txt: -------------------------------------------------------------------------------- 1 | huvila 2 | koti 3 | talo -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fi/chains.txt: -------------------------------------------------------------------------------- 1 | siwa -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fi/cross_streets.txt: -------------------------------------------------------------------------------- 1 | ja 2 | kulmassa 3 | välillä|valilla -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fi/directionals.txt: -------------------------------------------------------------------------------- 1 | etelä|etela 2 | itään|itaan 3 | länsi|lansi 4 | pohja -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fi/entrances.txt: -------------------------------------------------------------------------------- 1 | sisäänkäynti|sisaankaynti -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fi/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | kerros|krs -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fi/near.txt: -------------------------------------------------------------------------------- 1 | lähellä|lahella 2 | lähellä minua|lahella minua 3 | lähistöllä|lahistolla 4 | täällä|taalla 5 | tässä lähellä|tassa lahella -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fi/number.txt: -------------------------------------------------------------------------------- 1 | numero|nro|n:o|no|№|# -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fi/post_office.txt: -------------------------------------------------------------------------------- 1 | postilokero|pl -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fi/qualifiers.txt: -------------------------------------------------------------------------------- 1 | kerrostalo 2 | palveluta -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fi/staircases.txt: -------------------------------------------------------------------------------- 1 | portaikko -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fi/stopwords.txt: -------------------------------------------------------------------------------- 1 | ja|& -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fi/synonyms.txt: -------------------------------------------------------------------------------- 1 | kylä|kl -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fi/unit_directions.txt: -------------------------------------------------------------------------------- 1 | oikea 2 | oikealla 3 | vasen 4 | vasemmalla -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fi/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | asunto|as 2 | huone -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fil/street_types.txt: -------------------------------------------------------------------------------- 1 | daan 2 | kalye 3 | lansangan -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fr/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | a 3 | ab 4 | bc 5 | c 6 | e 7 | g 8 | m 9 | n 10 | mb 11 | nb 12 | nl 13 | ns 14 | nt 15 | nu 16 | o 17 | on 18 | p 19 | pe 20 | qc 21 | r 22 | s 23 | sk 24 | yt 25 | z 26 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fr/building_types.txt: -------------------------------------------------------------------------------- 1 | bâtiment|batiment|bat|bât|bt 2 | immeuble|imm 3 | maison 4 | villa|vla -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fr/chains.txt: -------------------------------------------------------------------------------- 1 | la poste 2 | lcl -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fr/cross_streets.txt: -------------------------------------------------------------------------------- 1 | à 2 | au 3 | l'angle de|langle de 4 | à l'angle de|a l'angle de|a langle de 5 | entre 6 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fr/elisions.txt: -------------------------------------------------------------------------------- 1 | c' 2 | d' 3 | j' 4 | l' 5 | m' 6 | n' 7 | qu' 8 | s' 9 | t' -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fr/entrances.txt: -------------------------------------------------------------------------------- 1 | entrée|entr|ent 2 | couloir -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fr/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | sous-sol|sous sol|soussol -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fr/level_types_mezzanine.txt: -------------------------------------------------------------------------------- 1 | entresol -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fr/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | étage|ét|etage|et 2 | niveau -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fr/level_types_sub_basement.txt: -------------------------------------------------------------------------------- 1 | soubassement -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fr/no_number.txt: -------------------------------------------------------------------------------- 1 | sans numéro|s / n|sans numero|s.n.|s.n|s n|sn -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fr/number.txt: -------------------------------------------------------------------------------- 1 | numéro|nº|n°|#|№|n.º|n.°|no|num|numero|numr|num.ro|nr|nro|n.ro -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fr/people.txt: -------------------------------------------------------------------------------- 1 | charles de gaulle|cdg|c.d.g|c d g -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fr/post_office.txt: -------------------------------------------------------------------------------- 1 | boîte postale|boite postale|bp|b.p.|b.p|b p|bte postale 2 | case postale|cp|c.p.|c.p|c p 3 | cedex -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fr/staircases.txt: -------------------------------------------------------------------------------- 1 | escalier|esc -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fr/unit_directions.txt: -------------------------------------------------------------------------------- 1 | arrière|arriere 2 | avant 3 | gauche|g 4 | droit|dr -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/fr/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | appartement|app|ap|appt|apt|appart 2 | bureau|bur 3 | boîte|bte 4 | chambre 5 | lotissement|lot 6 | parcelle 7 | porte|p|pte 8 | salle 9 | suite 10 | unité|u|unite -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ga/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | díonteach|dionteach -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ga/personal_titles.txt: -------------------------------------------------------------------------------- 1 | naomh -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ga/place_names.txt: -------------------------------------------------------------------------------- 1 | ambasáid|ambasaid 2 | banc 3 | bialann 4 | eaglais 5 | gaelscoil 6 | leabharlann 7 | páirc|pairc 8 | scoil 9 | scoile 10 | teach -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ga/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | árasán|arasan -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/gd/directionals.txt: -------------------------------------------------------------------------------- 1 | deas 2 | ear 3 | iar 4 | meadhain 5 | meadhanach 6 | tuath -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/gd/place_names.txt: -------------------------------------------------------------------------------- 1 | caisteal 2 | drochaid 3 | leabharlann 4 | pàirc|pairc 5 | sgoil 6 | taighean 7 | tùr|tur -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/gd/qualifiers.txt: -------------------------------------------------------------------------------- 1 | àrainn -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/gd/stopwords.txt: -------------------------------------------------------------------------------- 1 | a 2 | an -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/gl/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | e 3 | n 4 | o 5 | r 6 | s -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/gl/directionals.txt: -------------------------------------------------------------------------------- 1 | leste|este|e 2 | norte|n 3 | nordeste|ne 4 | noroeste|no 5 | oeste|o 6 | sur|s 7 | sueste|se 8 | suroeste|so -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/gl/personal_titles.txt: -------------------------------------------------------------------------------- 1 | san|s 2 | santa|stª|sta|st.ª|st.a -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/gl/unit_directions.txt: -------------------------------------------------------------------------------- 1 | dereita 2 | esquerda -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/gsw/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | w -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/gsw/concatenated_suffixes_separable.txt: -------------------------------------------------------------------------------- 1 | gass 2 | gàss 3 | hof 4 | platz|pl. 5 | stross 6 | wäg|wag|waeg|w. 7 | waj|w. 8 | wäj|waej|w. -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/gsw/street_types.txt: -------------------------------------------------------------------------------- 1 | gass 2 | gàss 3 | hof 4 | platz|pl 5 | stross 6 | wäg|wag|waeg|w 7 | waj|w 8 | wäj|waej|w. -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/he/entrances.txt: -------------------------------------------------------------------------------- 1 | כניסה 2 | knisa -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/he/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | מרתף 2 | martef -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/he/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | קומה|קוֹמָה 2 | koma -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/he/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | קומת קרקע|קוֹמַת קַרְקַע 2 | komát karká|komat karka -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/he/personal_titles.txt: -------------------------------------------------------------------------------- 1 | הרב 2 | רבי -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/he/post_office.txt: -------------------------------------------------------------------------------- 1 | תיבת דואר|ת.ד. 2 | ta doar -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/he/street_types.txt: -------------------------------------------------------------------------------- 1 | שדרות 2 | כביש 3 | סמטת 4 | כיכר 5 | רחוב 6 | צומת 7 | כביש מהיר 8 | כביש ראשי -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/he/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | דירה 2 | dira -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hi/street_types.txt: -------------------------------------------------------------------------------- 1 | bazaar|bazar 2 | marg 3 | nagar -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hr/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | c 3 | i 4 | j 5 | s 6 | z -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hr/building_types.txt: -------------------------------------------------------------------------------- 1 | zgrada -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hr/cross_streets.txt: -------------------------------------------------------------------------------- 1 | i 2 | između|izmedu 3 | na 4 | na uglu 5 | ugao 6 | uglu -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hr/directionals.txt: -------------------------------------------------------------------------------- 1 | istok|i 2 | jug|j 3 | sjever|s 4 | zapad|z -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hr/entrances.txt: -------------------------------------------------------------------------------- 1 | ulaz -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hr/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | podrum -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hr/level_types_mezzanine.txt: -------------------------------------------------------------------------------- 1 | polukat -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hr/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | kat 2 | etaža|et -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hr/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | parter 2 | prizemlje -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hr/near.txt: -------------------------------------------------------------------------------- 1 | oko ovdje 2 | u 3 | u blizini 4 | u blizini mene 5 | u blizini ovdje -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hr/no_number.txt: -------------------------------------------------------------------------------- 1 | bez broja|bb|b.b|b b|bez br -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hr/personal_titles.txt: -------------------------------------------------------------------------------- 1 | doktor|dr 2 | kardinala|kard 3 | kralja 4 | kraljice 5 | kneza 6 | svetog|sv -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hr/post_office.txt: -------------------------------------------------------------------------------- 1 | postanški pretinac|p.p|pp|p p|postanski pretinac -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hr/qualifiers.txt: -------------------------------------------------------------------------------- 1 | naselje -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hr/staircases.txt: -------------------------------------------------------------------------------- 1 | stubište|stubiste -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hr/stopwords.txt: -------------------------------------------------------------------------------- 1 | i|& -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hr/street_types.txt: -------------------------------------------------------------------------------- 1 | aleja|al 2 | avenija|av 3 | bulevar|bul 4 | cesta|c 5 | klanac 6 | most 7 | prilaz 8 | put 9 | šetalište|setaliste 10 | stube 11 | trg 12 | ulica|ul -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hr/unit_directions.txt: -------------------------------------------------------------------------------- 1 | desno 2 | lijevo -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hr/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | apartman|ap|apt 2 | soba 3 | stan 4 | ured -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hu/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | d 3 | e 4 | k 5 | n 6 | u -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hu/cross_streets.txt: -------------------------------------------------------------------------------- 1 | & 2 | és|es 3 | és a|es a 4 | és az|es az 5 | között|kozott -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hu/directionals.txt: -------------------------------------------------------------------------------- 1 | dél|del|d 2 | délnyugat|delnyugat 3 | délkeleti|delkeleti 4 | észak|eszak|e 5 | északnyugat|eszaknyugat 6 | északkeleti|eszakkeleti 7 | kelet|k 8 | nyugat|n -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hu/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | alagsor 2 | félszuterén|felszuteren 3 | szuterén|szuteren 4 | pince -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hu/level_types_mezzanine.txt: -------------------------------------------------------------------------------- 1 | félemelet|felemelet 2 | magasföldszint|magasfoldszint -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hu/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | emelet|em -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hu/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | földszint|fszt|fsz|foldszint -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hu/near.txt: -------------------------------------------------------------------------------- 1 | közelben|kozelben 2 | közelében|kozeleben 3 | közelemben|kozelemben -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hu/number.txt: -------------------------------------------------------------------------------- 1 | szám|szam -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hu/personal_titles.txt: -------------------------------------------------------------------------------- 1 | szent|szt -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hu/post_office.txt: -------------------------------------------------------------------------------- 1 | postafiók|pf|postafiok -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hu/stopwords.txt: -------------------------------------------------------------------------------- 1 | a 2 | az 3 | egy 4 | és|es|& -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hu/unit_directions.txt: -------------------------------------------------------------------------------- 1 | bal 2 | jobb -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/hu/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | iroda 2 | lakás|lakas 3 | szoba -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/id/building_types.txt: -------------------------------------------------------------------------------- 1 | apartemen|apart|aprtmn 2 | garasi|grs 3 | gedung|gd|gdg 4 | gudang|gdang 5 | kebun|kebon|kbn 6 | rumah|rmah|rmh 7 | vila|vla|vl 8 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/id/chains.txt: -------------------------------------------------------------------------------- 1 | indomart|indomaret 2 | superindo|super indo 3 | lottemart|lotte mart 4 | bonjour 5 | bright 6 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/id/cross_streets.txt: -------------------------------------------------------------------------------- 1 | & 2 | dan 3 | di 4 | di pojok|d pjk 5 | pojok|pjk 6 | di antara|d antr 7 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/id/entrances.txt: -------------------------------------------------------------------------------- 1 | masuk|msk 2 | gerbang masuk|grbg msk 3 | pintu masuk|pntu msk|pntu msuk 4 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/id/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | lantai|lt|ltai|lt. 2 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/id/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | lantai atas|lantai ats|lt ats|lt. ats|lt. atas 2 | lantai dasar|lt dsr|lt dsar|lt. dsr|lt. dasar 3 | lobi 4 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/id/near.txt: -------------------------------------------------------------------------------- 1 | sekitar|sktr 2 | dalam|dalem|dlm|dlam 3 | dekat|dkt|dkat 4 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/id/number.txt: -------------------------------------------------------------------------------- 1 | nomor|nomr|nmr|#|no|№|nr 2 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/id/stopwords.txt: -------------------------------------------------------------------------------- 1 | berlawanan|lawanan|lwnn 2 | dan|dn|n|en|& 3 | dari|dr 4 | dekat|dkt 5 | di 6 | ke 7 | lewat|lwt 8 | seberang|sebrang|sbrg 9 | semua|semoa|smua|smoa 10 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/id/street_types.txt: -------------------------------------------------------------------------------- 1 | alun-alun|alun alun|alunalun 2 | gang|gg 3 | jalan|jln|jl|jl. 4 | jalur 5 | jembatan 6 | lorong|lrong 7 | terowongan 8 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/id/unit_directions.txt: -------------------------------------------------------------------------------- 1 | belakang|blkg|blkang 2 | depan|dpn 3 | kanan|knan|knn 4 | kiri|kri|kr 5 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/is/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | a 3 | n 4 | og 5 | s 6 | v -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/is/cross_streets.txt: -------------------------------------------------------------------------------- 1 | á horninu á|a horninu a 2 | horn af 3 | og 4 | milli -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/is/directionals.txt: -------------------------------------------------------------------------------- 1 | austur|a 2 | norður|norour|n 3 | suður|suour|s 4 | vestur|v -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/is/entrances.txt: -------------------------------------------------------------------------------- 1 | inngangur -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/is/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | kjallara -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/is/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | hæð|haeo -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/is/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | jarðhæð|jarohaeo -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/is/near.txt: -------------------------------------------------------------------------------- 1 | hér|her 2 | hérna|herna 3 | í|i 4 | nálægt|nalaegt 5 | nálægt hér|nalaegt her 6 | nálægt mér|nalaegt mer -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/is/number.txt: -------------------------------------------------------------------------------- 1 | númer|numer|nr|#|№|no -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/is/post_office.txt: -------------------------------------------------------------------------------- 1 | pósthólf|ph|postholf -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/is/qualifiers.txt: -------------------------------------------------------------------------------- 1 | borg 2 | borgir -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/is/staircases.txt: -------------------------------------------------------------------------------- 1 | stigi -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/is/stopwords.txt: -------------------------------------------------------------------------------- 1 | og|& -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/is/unit_directions.txt: -------------------------------------------------------------------------------- 1 | til hægri|til haegri|t.h|th|t h 2 | til vinstri|t.v|tv|t v -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/is/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | íbúð|ibuo -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/it/academic_degrees.txt: -------------------------------------------------------------------------------- 1 | ragioniere|rag -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/it/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | c 3 | e 4 | l 5 | n 6 | o 7 | s 8 | v -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/it/building_types.txt: -------------------------------------------------------------------------------- 1 | casa|c|ca|ca' 2 | casetto|c.etto 3 | edificio|edif.o|edifo 4 | palazzina 5 | palazzo|pal.zo|palzo -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/it/chains.txt: -------------------------------------------------------------------------------- 1 | api 2 | eni 3 | erg 4 | ip 5 | poste italiane -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/it/cross_streets.txt: -------------------------------------------------------------------------------- 1 | & 2 | a 3 | all'angolo tra|allangolo tra 4 | angolo 5 | angolo di 6 | e 7 | tra -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/it/elisions.txt: -------------------------------------------------------------------------------- 1 | d' 2 | dall' 3 | dell' 4 | sant' -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/it/entrances.txt: -------------------------------------------------------------------------------- 1 | ingresso -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/it/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | cantina|c.tina|ctina 2 | seminterrato -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/it/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | livello 2 | piano|pº|p°|p.º|p.°|p.o|p.nº|p.n°|p.no|pnº|pn°|pno -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/it/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | piano nobile 2 | piano terra|pt|p.t|p t -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/it/near.txt: -------------------------------------------------------------------------------- 1 | a 2 | ad 3 | in 4 | intorno a qui 5 | nelle vicinanze 6 | presso a 7 | qui vicino 8 | vicino 9 | vicino a 10 | vicino a me -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/it/no_number.txt: -------------------------------------------------------------------------------- 1 | senza numero civico|snc|s.n.c.|s n c 2 | senza numero|sn 3 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/it/number.txt: -------------------------------------------------------------------------------- 1 | numero|nº|n°|no|n.º|n.°|n.o|n|#|№ -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/it/post_office.txt: -------------------------------------------------------------------------------- 1 | casella postale|cp|c.p.|c.p|c p|cpt|cas pos 2 | presso|co|c \ o|c / o 3 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/it/staircases.txt: -------------------------------------------------------------------------------- 1 | scala -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/it/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | appartamento|app 2 | casa|c|ca|ca' 3 | garage|g.ge|gge 4 | interno|int 5 | lotto 6 | officina|off.a|off 7 | porta 8 | sala 9 | unità|unita -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ja/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | 中 2 | 大 3 | 小 4 | 銀 5 | 高 -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ja/building_types.txt: -------------------------------------------------------------------------------- 1 | 番 2 | ban 3 | 番地 4 | banchi 5 | 番地の 6 | banchi no|banchino -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ja/directionals.txt: -------------------------------------------------------------------------------- 1 | 北 2 | kita 3 | 南 4 | minami 5 | 東 6 | higashi 7 | 西 8 | nishi 9 | 北東 10 | hokutō|hokuto|hokutou 11 | 北西 12 | hokusei 13 | 南東 14 | nantō|nanto|nantou 15 | 南西 16 | nansei -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ja/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | 階 2 | kai 3 | gai -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ja/number.txt: -------------------------------------------------------------------------------- 1 | 号 2 | go -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ja/post_office.txt: -------------------------------------------------------------------------------- 1 | 私 書 箱 2 | shishobako -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ja/postcodes.txt: -------------------------------------------------------------------------------- 1 | 〒 2 | yubinbango|yubin-bango|yubin bango -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ka/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | ქ -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ka/personal_titles.txt: -------------------------------------------------------------------------------- 1 | მეფის 2 | წმინდა 3 | მიხეილ 4 | დედა -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ka/place_names.txt: -------------------------------------------------------------------------------- 1 | სადგურის 2 | თეატრი 3 | რესტორანი 4 | ბარი 5 | ხიდი 6 | უნივერსიტეტის 7 | universiteti -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ka/stopwords.txt: -------------------------------------------------------------------------------- 1 | და|& -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ka/street_types.txt: -------------------------------------------------------------------------------- 1 | ქუჩა|ქ 2 | ქუჩის 3 | ქუჩაზე 4 | ქუცა 5 | შესახვევი|შეს 6 | გამზირი|გამზ 7 | მოედანი 8 | ხიდი 9 | ხეივანი 10 | გზატკეცილი 11 | ბულვარი 12 | ჩიხი -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ko/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | 층 2 | cheung -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ko/number.txt: -------------------------------------------------------------------------------- 1 | 호 2 | 號 3 | ho -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ko/post_office.txt: -------------------------------------------------------------------------------- 1 | 사서함 2 | saseoham -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ko/postcodes.txt: -------------------------------------------------------------------------------- 1 | 우편번호 2 | upyeon beonho -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ko/qualifiers.txt: -------------------------------------------------------------------------------- 1 | 구 2 | gu 3 | 동 4 | dong 5 | 번지 6 | beonji -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ko/street_types.txt: -------------------------------------------------------------------------------- 1 | 로 2 | ro 3 | lo 4 | no 5 | 길 6 | gil 7 | 가 8 | ga -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lb/concatenated_suffixes_separable.txt: -------------------------------------------------------------------------------- 1 | gaass 2 | strooss 3 | wee -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lb/street_types.txt: -------------------------------------------------------------------------------- 1 | gaass 2 | strooss 3 | wee -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lt/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | a 3 | g 4 | k 5 | m 6 | r -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lt/building_types.txt: -------------------------------------------------------------------------------- 1 | vienkiemis|vienk -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lt/cross_streets.txt: -------------------------------------------------------------------------------- 1 | & 2 | ir 3 | kampelis 4 | nuo -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lt/directionals.txt: -------------------------------------------------------------------------------- 1 | pietūs|pietus 2 | rytai 3 | šiaurė|siaure 4 | vakarai -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lt/entrances.txt: -------------------------------------------------------------------------------- 1 | įėjimas|iejimas -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lt/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | rūsys|rusys 2 | rūsyje|rusyje -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lt/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | aukštas|aukstas|auk 2 | aukšte|aukste|auk -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lt/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | pirmas aukštas|pirmas aukstas|pirmas auk -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lt/number.txt: -------------------------------------------------------------------------------- 1 | numeris|nr|#|no|№ -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lt/post_office.txt: -------------------------------------------------------------------------------- 1 | pašto dėžutė|pasto dezute|p.d|p d|pd -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lt/qualifiers.txt: -------------------------------------------------------------------------------- 1 | gyvenvietė|gyvenv|gyvenviete 2 | kaimas|k 3 | miestas|m 4 | miestelis|mstl 5 | rajonas|r -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lt/staircases.txt: -------------------------------------------------------------------------------- 1 | laiptai -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lt/stopwords.txt: -------------------------------------------------------------------------------- 1 | ir|& -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lt/street_types.txt: -------------------------------------------------------------------------------- 1 | aikštė|a|aikste 2 | alėja|al|aleja 3 | akligatvis 4 | gatvė|g|gatve 5 | plentas|pl 6 | prospektas|pr 7 | skersgatvis|skg -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lt/unit_directions.txt: -------------------------------------------------------------------------------- 1 | dešinėje|desineje 2 | kairėje|kaireje -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lt/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | biuro 2 | butas 3 | kambarys -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lv/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | a 3 | d 4 | g 5 | r 6 | z -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lv/cross_streets.txt: -------------------------------------------------------------------------------- 1 | & 2 | un 3 | starp 4 | stūris|sturis 5 | stūrī|sturi -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lv/directionals.txt: -------------------------------------------------------------------------------- 1 | ziemeļu|ziemelu|z 2 | dienvidu|d 3 | austrumu|a 4 | rietumu|r 5 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lv/entrances.txt: -------------------------------------------------------------------------------- 1 | ieeja -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lv/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | pagraba 2 | pagrabs -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lv/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | stāvs|stavs -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lv/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | pirmais stāvs|pirmais stavs -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lv/number.txt: -------------------------------------------------------------------------------- 1 | numurs|nr|#|no|№ -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lv/place_names.txt: -------------------------------------------------------------------------------- 1 | pils 2 | skolas -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lv/staircases.txt: -------------------------------------------------------------------------------- 1 | kāpņu|kapnu 2 | kāpņu telpa|kapnu telpa -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lv/stopwords.txt: -------------------------------------------------------------------------------- 1 | un|& -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lv/street_types.txt: -------------------------------------------------------------------------------- 1 | bulvāris|bulvaris 2 | ceļš|cels 3 | gatve|g 4 | iela 5 | prospekts -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lv/unit_directions.txt: -------------------------------------------------------------------------------- 1 | pa kreisi 2 | pa labi -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/lv/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | birojs 2 | dzīvoklis|dz|dzivoklis 3 | istaba -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ms/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ms/building_types.txt: -------------------------------------------------------------------------------- 1 | apartment|aparment|apartmen|apt 2 | bangunan|bgn 3 | dewan 4 | kondominium|kondo 5 | pangsapuri|p/puri 6 | residensi|residen 7 | rumah|rmh 8 | rumah kediaman 9 | rumah pangsa 10 | menara -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ms/company_types.txt: -------------------------------------------------------------------------------- 1 | bank 2 | berhad|bhd 3 | kelab 4 | kelab bola sepak 5 | persatuan 6 | sendirian berhad|sdn bhd 7 | syarikat 8 | yayasan -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ms/directionals.txt: -------------------------------------------------------------------------------- 1 | barat 2 | barat daya 3 | barat laut 4 | selatan 5 | tengah 6 | tenggara 7 | timur 8 | timur laut 9 | utara -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ms/given_names.txt: -------------------------------------------------------------------------------- 1 | mohammad|muhammad|mohd 2 | suleiman|sulaiman 3 | yusuf|yusof 4 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ms/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | aras 2 | tingkat|tkt 3 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ms/post_office.txt: -------------------------------------------------------------------------------- 1 | beg 2 | mel 3 | surat 4 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ms/qualifiers.txt: -------------------------------------------------------------------------------- 1 | blok 2 | kampung|kampong|kg 3 | nusa 4 | penampang 5 | pulau 6 | seksyen 7 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ms/stopwords.txt: -------------------------------------------------------------------------------- 1 | dan|& -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/mt/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/mt/number.txt: -------------------------------------------------------------------------------- 1 | numru|num|# -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/mt/personal_titles.txt: -------------------------------------------------------------------------------- 1 | dun 2 | isqof 3 | patri 4 | san 5 | santa 6 | sur -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/mt/place_names.txt: -------------------------------------------------------------------------------- 1 | knisja -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/mt/stopwords.txt: -------------------------------------------------------------------------------- 1 | il 2 | is 3 | ta 4 | tar 5 | u|& -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/mt/street_types.txt: -------------------------------------------------------------------------------- 1 | dawret 2 | pjazza 3 | sqaq 4 | trejqet 5 | triq 6 | vjal -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nb/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | g 3 | h 4 | k 5 | l 6 | n 7 | o 8 | s 9 | u 10 | v 11 | ø -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nb/building_types.txt: -------------------------------------------------------------------------------- 1 | gård|gaard 2 | gården|gaarden 3 | kontoret -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nb/concatenated_suffixes_inseparable.txt: -------------------------------------------------------------------------------- 1 | bakken 2 | bukt 3 | byen 4 | dalen 5 | flate 6 | gata|g.|gt. 7 | gate|g.|gt. 8 | gaten 9 | lia 10 | park 11 | plassen|pl. 12 | stredet 13 | svingen -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nb/concatenated_suffixes_separable.txt: -------------------------------------------------------------------------------- 1 | allè|alle 2 | allèen|alleen 3 | veg|v. 4 | vegen|v.|vn. 5 | vei|v. 6 | veien|v.|vn. -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nb/cross_streets.txt: -------------------------------------------------------------------------------- 1 | på hjørnet av|pa hjornet av|paa hjornet av 2 | hjørne av|hjorne av 3 | i 4 | og 5 | mellom|mell -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nb/directionals.txt: -------------------------------------------------------------------------------- 1 | nordre|ndr 2 | nord|n 3 | nordøst|nø 4 | nordvest|nv 5 | øst|ø|ost|o 6 | østre|ostre 7 | sentrum|s 8 | søndre|sondre|sdr 9 | syd|s 10 | sydøst|sø 11 | sydvest|sv 12 | vest|v 13 | vestre -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nb/entrances.txt: -------------------------------------------------------------------------------- 1 | inngang|inng -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nb/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | etasje|et|etg 2 | hovedetasje|h 3 | loftsetasje|l 4 | loft 5 | underetasje|u -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nb/near.txt: -------------------------------------------------------------------------------- 1 | i 2 | i nærheten av meg|i naerheten av meg 3 | i nærheten|i naerheten 4 | i nærheten av|i naerheten av 5 | i nærheten her|i naerheten her 6 | nær meg|naer meg 7 | rundt her -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nb/number.txt: -------------------------------------------------------------------------------- 1 | nummer|nr|#|№|no -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nb/personal_titles.txt: -------------------------------------------------------------------------------- 1 | sankt|st|skt -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nb/post_office.txt: -------------------------------------------------------------------------------- 1 | postboks -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nb/staircases.txt: -------------------------------------------------------------------------------- 1 | stiege|stg 2 | trapp -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nb/unit_directions.txt: -------------------------------------------------------------------------------- 1 | høyre|hoyre 2 | venstre -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nb/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | leilighet|leil -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nl/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | b 3 | h 4 | k 5 | l 6 | n 7 | o 8 | v 9 | w 10 | z -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nl/building_types.txt: -------------------------------------------------------------------------------- 1 | gebouw -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nl/chains.txt: -------------------------------------------------------------------------------- 1 | jumbo -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nl/concatenated_suffixes_inseparable.txt: -------------------------------------------------------------------------------- 1 | berg|bg. 2 | gebouw 3 | park|pk. -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nl/cross_streets.txt: -------------------------------------------------------------------------------- 1 | en 2 | hoek van 3 | op de hoek van 4 | tussen -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nl/entrances.txt: -------------------------------------------------------------------------------- 1 | ingang -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nl/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | etage|et 2 | verdieping|verdiep 3 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nl/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | begane grond|begane gro|bg 2 | benedenverdieping|benedenverdiep 3 | gelijkvloers 4 | het gelijkvloers 5 | parterre -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nl/near.txt: -------------------------------------------------------------------------------- 1 | bij 2 | in 3 | in de buurt 4 | in de buurt van 5 | in de buurt van me 6 | nabij 7 | te -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nl/number.txt: -------------------------------------------------------------------------------- 1 | nummer|nr|# -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nl/post_office.txt: -------------------------------------------------------------------------------- 1 | postbus -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nl/qualifiers.txt: -------------------------------------------------------------------------------- 1 | noordzijde|nz|n.z.|n.z|n z 2 | oostzijde|oz|o.z.|o.z|o z 3 | westzijde|wz|w.z.|w.z|w z 4 | zuidzijde|zz|z.z.|z.z|z z -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nl/staircases.txt: -------------------------------------------------------------------------------- 1 | stiege|stg 2 | trap -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nl/synonyms.txt: -------------------------------------------------------------------------------- 1 | groot|grt 2 | kleine|kl -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nl/unit_directions.txt: -------------------------------------------------------------------------------- 1 | links|l 2 | rechts|r -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/nl/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | appartement|app|apt|ap 2 | bus|b 3 | kamer -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/oc/elisions.txt: -------------------------------------------------------------------------------- 1 | l' -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/oc/stopwords.txt: -------------------------------------------------------------------------------- 1 | a 2 | al 3 | dal 4 | de 5 | del 6 | dei 7 | dera 8 | deu 9 | deus 10 | e 11 | et 12 | la 13 | las 14 | lo -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/oc/street_types.txt: -------------------------------------------------------------------------------- 1 | avenguda 2 | camin 3 | carrièra|carriera 4 | pas 5 | plaça|pl|placa|pça|pca|plç|plc -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pap/personal_titles.txt: -------------------------------------------------------------------------------- 1 | san 2 | santa|sta -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pap/street_types.txt: -------------------------------------------------------------------------------- 1 | kaya 2 | kaminda -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pl/academic_degrees.txt: -------------------------------------------------------------------------------- 1 | adwokat|adw 2 | wielmozny -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pl/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | d 3 | g 4 | k 5 | m 6 | o 7 | p 8 | u 9 | w -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pl/building_types.txt: -------------------------------------------------------------------------------- 1 | budowa|bud -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pl/chains.txt: -------------------------------------------------------------------------------- 1 | abc 2 | poczta polska 3 | żabka|zabka -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pl/company_types.txt: -------------------------------------------------------------------------------- 1 | spółka|s-ka 2 | spółka akcyjna|s-ka akc 3 | spółdzielnia|spółdz|spnia 4 | stowarzyszenie|stow -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pl/cross_streets.txt: -------------------------------------------------------------------------------- 1 | & 2 | i 3 | na rogu 4 | pomiędzy|pomiedzy 5 | rogu 6 | w -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pl/entrances.txt: -------------------------------------------------------------------------------- 1 | wejście|wejscie -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pl/house_numbers.txt: -------------------------------------------------------------------------------- 1 | dom|d -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pl/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | suterena|s -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pl/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | piętro|p|ptr -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pl/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | parter -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pl/near.txt: -------------------------------------------------------------------------------- 1 | blisko 2 | koło|kolo|k 3 | niedaleko 4 | obok 5 | przy 6 | w 7 | w pobliżu|w poblizu 8 | w pobliżu mnie|w poblizu mnie 9 | w pobliżu tutaj|w poblizu tutaj 10 | wokół tutaj|wokol tutaj 11 | we -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pl/number.txt: -------------------------------------------------------------------------------- 1 | numer|nr|#|no|№ -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pl/personal_suffixes.txt: -------------------------------------------------------------------------------- 1 | młodszy|mł 2 | starszy|st -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pl/post_office.txt: -------------------------------------------------------------------------------- 1 | skrytka pocztowa|skr poczt -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pl/qualifiers.txt: -------------------------------------------------------------------------------- 1 | blok|bl 2 | dzielnica|dziel 3 | gmina|gm 4 | kwartał|kwartal|kw 5 | okręg|ok 6 | osiedle|os 7 | wieś 8 | wyspa 9 | województwo|wojewodztwo|woj -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pl/staircases.txt: -------------------------------------------------------------------------------- 1 | schody -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pl/stopwords.txt: -------------------------------------------------------------------------------- 1 | i|& 2 | na 3 | w -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pl/street_types.txt: -------------------------------------------------------------------------------- 1 | aleja|al 2 | autostrada 3 | boczna 4 | bulwar 5 | droga 6 | obwodnica 7 | plac|pl 8 | rondo 9 | rynek 10 | szosa 11 | ulica|ul 12 | zaulek -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pl/toponyms.txt: -------------------------------------------------------------------------------- 1 | warszawa|w-wa|wwa -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pl/unit_directions.txt: -------------------------------------------------------------------------------- 1 | lewo 2 | prawo -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pl/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | mieszkanie|m 2 | pokój|pok -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pt/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | b 3 | d 4 | e 5 | e / 6 | l 7 | n 8 | o 9 | q 10 | r 11 | s 12 | v -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pt/building_types.txt: -------------------------------------------------------------------------------- 1 | bloco|bl 2 | condominio 3 | edifício|edificio|edf|edif 4 | habitação|habitacao|hab 5 | residencia|res 6 | torre|tr 7 | vivenda|vv|vvda -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pt/cross_streets.txt: -------------------------------------------------------------------------------- 1 | & 2 | e 3 | em 4 | com 5 | esquina|esq 6 | na esquina da|na esq de 7 | esquina da|esq da 8 | entre|entre /|e / -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pt/directionals.txt: -------------------------------------------------------------------------------- 1 | este|e 2 | norte|n 3 | noredeste|ne|n.e.|n.e|n e 4 | noroeste|no|n.o.|n.o|n o 5 | oeste|o 6 | sudeste|se|s.e.|s.e|s e 7 | sudoeste|so|s.o.|s.o|s o 8 | sul|s -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pt/elisions.txt: -------------------------------------------------------------------------------- 1 | d' -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pt/entrances.txt: -------------------------------------------------------------------------------- 1 | entrada|entr|entd -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pt/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | cave|cv|c / v -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pt/level_types_mezzanine.txt: -------------------------------------------------------------------------------- 1 | mezanino -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pt/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | andar 2 | nível|nivel 3 | piso|pi|p -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pt/level_types_sub_basement.txt: -------------------------------------------------------------------------------- 1 | sub cave|scv|sub cv|s / c / v|sub c / v -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pt/near.txt: -------------------------------------------------------------------------------- 1 | aqui 2 | aqui perto 3 | de 4 | em 5 | na 6 | no 7 | perto 8 | perto daqui 9 | perto de 10 | perto de mim 11 | perto do 12 | por aqui 13 | próximo|proximo -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pt/no_number.txt: -------------------------------------------------------------------------------- 1 | sem número|sem numero|sn|s.n.|s.n|s / n|s n|s / nº|s / n°|s.nº|s.n°|snº|sn°|s / no -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pt/number.txt: -------------------------------------------------------------------------------- 1 | número|#|num|núm|no|numero|№|nº|n°|n.º|n.°|númr|numr|númro|numro|núm.ro|nr|num.ro|nro|n.ro|nr.º|nr.°|nrº|nr°|nmro|nmr.o|nmrº|nmr°|nmr.º|nmr.° -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pt/personal_suffixes.txt: -------------------------------------------------------------------------------- 1 | filho|f.o 2 | júnior|junior|jr 3 | neto -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pt/post_office.txt: -------------------------------------------------------------------------------- 1 | apartado|apdo|aptdo 2 | caixa postal|cp|c.p|c p|cxp -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pt/postcodes.txt: -------------------------------------------------------------------------------- 1 | código de endereçamento postal|cep|cep :|c.e.p|c e p|c de e p|c de ep|codigo de enderecamento postal 2 | código postal|cp|c.p|c p|codigo postal -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pt/qualifiers.txt: -------------------------------------------------------------------------------- 1 | bairro|b|bº|b°|bo|brº|br°|bro 2 | distrito|dtto|dist 3 | divisao|div 4 | quadra|q|qd 5 | secao|sec 6 | superquadra|super quadra|sq|s.q.|s.q|s q 7 | urbanização|urbanizacao|urb 8 | zona|zn -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pt/staircases.txt: -------------------------------------------------------------------------------- 1 | escadaria|esc|esca -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pt/unit_directions.txt: -------------------------------------------------------------------------------- 1 | direito|dir|dto|drt 2 | esquerdo|esq 3 | frente|fte|frt|fren 4 | traseiro|tras -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pt/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | apartamento|ap|apt|apto|apt.o 2 | casa 3 | conjunto|conj|cj 4 | letra 5 | lote|lt 6 | parcela 7 | porta|pta 8 | moradia 9 | sala 10 | unidade|un -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/pt/unit_types_standalone.txt: -------------------------------------------------------------------------------- 1 | sobre loja|slj -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ro/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | e 3 | n 4 | s 5 | v -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ro/cross_streets.txt: -------------------------------------------------------------------------------- 1 | & 2 | colț|colt 3 | între|intre 4 | la colțul de pe|la coltul de pe 5 | și|si -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ro/directionals.txt: -------------------------------------------------------------------------------- 1 | est|e 2 | nord|n 3 | sud|s 4 | vest|v -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ro/entrances.txt: -------------------------------------------------------------------------------- 1 | intrare -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ro/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | etaj|et|etj -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ro/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | parter -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ro/near.txt: -------------------------------------------------------------------------------- 1 | aici 2 | aproape de aici 3 | din 4 | in apropiere de 5 | în apropiere|in apropiere 6 | în jurul aici|in jurul aici 7 | lângă mine|langa mine -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ro/no_number.txt: -------------------------------------------------------------------------------- 1 | fără număr|fara numar|fn|f.n|f n|f / n -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ro/number.txt: -------------------------------------------------------------------------------- 1 | număr|numar|nr|nº|n°|#|№|no -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ro/post_office.txt: -------------------------------------------------------------------------------- 1 | căsuță poștală|cp|casuta postala -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ro/qualifiers.txt: -------------------------------------------------------------------------------- 1 | bloc|bl -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ro/staircases.txt: -------------------------------------------------------------------------------- 1 | scara|sc -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ro/stopwords.txt: -------------------------------------------------------------------------------- 1 | și|si|& 2 | cel -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ro/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | apartament|ap|apt|apart 2 | birou 3 | lotul 4 | sală|sala -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ru/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | д 3 | d 4 | г 5 | g 6 | к 7 | k 8 | о 9 | o 10 | с 11 | s 12 | ш 13 | в 14 | v 15 | Ю 16 | y 17 | з 18 | z -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ru/building_types.txt: -------------------------------------------------------------------------------- 1 | корпус|к 2 | korpus|k -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ru/cross_streets.txt: -------------------------------------------------------------------------------- 1 | & 2 | и 3 | i 4 | между 5 | mezhdu 6 | на углу 7 | na uglu 8 | углу 9 | uglu 10 | угол 11 | ugol -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ru/entrances.txt: -------------------------------------------------------------------------------- 1 | вход 2 | vkhod -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ru/house_numbers.txt: -------------------------------------------------------------------------------- 1 | дом|д 2 | dom|d -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ru/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | подвал 2 | podval 3 | цокольный этаж|цок эт 4 | tsokol'nyy etazh|tsokolnyy etazh|tsok et -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ru/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | этаж|эт 2 | etazh|et 3 | уровень 4 | uroven'|uroven -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ru/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | первый этаж|перв эт 2 | pervyy etazh|perv et 3 | нижний этаж|ниж эт 4 | nizhniy etazh|nizh et -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ru/no_number.txt: -------------------------------------------------------------------------------- 1 | без номера|б / н|б.н.|б.н|бн -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ru/number.txt: -------------------------------------------------------------------------------- 1 | номер|но|№|no 2 | nomer|№|no -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ru/personal_titles.txt: -------------------------------------------------------------------------------- 1 | академика 2 | akademika 3 | генерала|ген 4 | generala|gen 5 | святой|св 6 | svyatoy|sv -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ru/post_office.txt: -------------------------------------------------------------------------------- 1 | абонементна скринька 2 | abonementnykh skrynʹka|abonementnykh skrynka -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ru/staircases.txt: -------------------------------------------------------------------------------- 1 | лестница 2 | lestnitsa -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ru/stopwords.txt: -------------------------------------------------------------------------------- 1 | и|& -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ru/unit_directions.txt: -------------------------------------------------------------------------------- 1 | лево 2 | levo 3 | право 4 | pravo -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ru/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | квартира|кв 2 | kvartira|kv 3 | кабинет|каб|к-т|к 4 | kabinet|kab|k-t|k 5 | литера|лит 6 | litera|lit 7 | офис|оф 8 | ofis|of 9 | помещение|пом 10 | pomeshhenie|pom -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/si/place_names.txt: -------------------------------------------------------------------------------- 1 | apana sala 2 | bank eka 3 | bet sappuwa 4 | hotela 5 | kopi 6 | tara 7 | tota 8 | vihara -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/si/qualifiers.txt: -------------------------------------------------------------------------------- 1 | duwa 2 | gama 3 | nuwara 4 | pura -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/si/street_types.txt: -------------------------------------------------------------------------------- 1 | mawatha|mw 2 | para -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sk/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | c 3 | j 4 | s 5 | v 6 | z -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sk/cross_streets.txt: -------------------------------------------------------------------------------- 1 | & 2 | a 3 | i 4 | medzi 5 | na 6 | na rohu 7 | roh 8 | v -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sk/entrances.txt: -------------------------------------------------------------------------------- 1 | vchod -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sk/house_numbers.txt: -------------------------------------------------------------------------------- 1 | súpisné číslo|s.č.|s.č|s. č.|s č|sč|s. č|supisne cislo|s.c.|s.c|s. c.|s c|sc|s. c -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sk/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | podzemné podlažie|pp|podzemne podlazie -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sk/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | etáž|etaz 2 | poschodie 3 | podlažie|podlazie 4 | nadzemné podlažie|np|nadzemne podlazie -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sk/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | prízemie|prizemie -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sk/number.txt: -------------------------------------------------------------------------------- 1 | číslo|č|cislo|c -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sk/post_office.txt: -------------------------------------------------------------------------------- 1 | poštová priehradka|postova priehradka -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sk/qualifiers.txt: -------------------------------------------------------------------------------- 1 | osada 2 | sídlisko|sídl|sidlisko 3 | stredisko|stred -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sk/staircases.txt: -------------------------------------------------------------------------------- 1 | schodisko -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sk/toponyms.txt: -------------------------------------------------------------------------------- 1 | československej|čsl|ceskoslovenskej|csl -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sk/unit_directions.txt: -------------------------------------------------------------------------------- 1 | ľavá|lavá|lava 2 | pravá|prava -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sk/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | apartmán|apartman|apt 2 | izba 3 | kancelária|kancelaria -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sl/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | c 3 | j 4 | s 5 | v 6 | z -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sl/chains.txt: -------------------------------------------------------------------------------- 1 | dm|dm drogeriemarkt -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sl/cross_streets.txt: -------------------------------------------------------------------------------- 1 | in 2 | med 3 | na 4 | na vogalu 5 | vogalu -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sl/directionals.txt: -------------------------------------------------------------------------------- 1 | jug|j 2 | sever|s 3 | vzhod|v 4 | zahod|z -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sl/entrances.txt: -------------------------------------------------------------------------------- 1 | vhod -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sl/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | kleti -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sl/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | nadstropje -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sl/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | parter 2 | pritličje|pritlicje -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sl/near.txt: -------------------------------------------------------------------------------- 1 | blizu mene 2 | okoli tukaj 3 | pri 4 | tukaj 5 | v 6 | v bližini|v blizini 7 | v bližini tukaj|v blizini tukaj -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sl/no_number.txt: -------------------------------------------------------------------------------- 1 | brez številke|brez stevilke|brez št|brez st -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sl/number.txt: -------------------------------------------------------------------------------- 1 | številke|stevilke|št|st -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sl/personal_titles.txt: -------------------------------------------------------------------------------- 1 | bratov|br 2 | sveta|sv 3 | sveti|sv -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sl/place_names.txt: -------------------------------------------------------------------------------- 1 | grajska -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sl/post_office.txt: -------------------------------------------------------------------------------- 1 | poštni predal|p.p|pp|p p|postni predal -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sl/staircases.txt: -------------------------------------------------------------------------------- 1 | stopnišče|stopnisce -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sl/stopwords.txt: -------------------------------------------------------------------------------- 1 | in|& 2 | na 3 | ob 4 | pot 5 | pri 6 | v 7 | vas -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sl/street_types.txt: -------------------------------------------------------------------------------- 1 | cesta|c 2 | pot 3 | trg 4 | ulica|ul -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sl/synonyms.txt: -------------------------------------------------------------------------------- 1 | spodnja|sp 2 | spodnje|sp 3 | spodnji|sp 4 | srednja|sr 5 | srednje|sr 6 | srednji|sr 7 | velika|v 8 | velike|v 9 | veliki|v 10 | veliko|v 11 | zgornja|zg 12 | zgornje|zg 13 | zgornji|zg -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sl/unit_directions.txt: -------------------------------------------------------------------------------- 1 | levo 2 | prav -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sl/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | soba 2 | stanovanje 3 | urad -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sr/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | и 3 | i 4 | ј 5 | j 6 | с 7 | s 8 | з 9 | z -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sr/cross_streets.txt: -------------------------------------------------------------------------------- 1 | и 2 | i 3 | између 4 | između|izmedu 5 | угао 6 | ugao 7 | на 8 | na 9 | на углу 10 | na uglu -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sr/directionals.txt: -------------------------------------------------------------------------------- 1 | исток|и 2 | istok|i 3 | југ|ј 4 | jug|j 5 | север|с 6 | sever|s 7 | запад|з 8 | zapad|z -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sr/entrances.txt: -------------------------------------------------------------------------------- 1 | улаз 2 | ulaz -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sr/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | подрум 2 | podrum -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sr/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | спрат 2 | sprat 3 | кат 4 | kat 5 | етажа|ет 6 | etaža|et -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sr/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | партер 2 | parter 3 | приземље 4 | prizemlje -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sr/number.txt: -------------------------------------------------------------------------------- 1 | број|бр 2 | broj|br -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sr/personal_titles.txt: -------------------------------------------------------------------------------- 1 | доктор|др 2 | doktor|dr 3 | генерала|ген 4 | generala|gen 5 | краља 6 | kralja 7 | кнеза 8 | kneza 9 | светог|св 10 | svetor|sv 11 | владике 12 | vladike 13 | војводе 14 | vojvode -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sr/place_names.txt: -------------------------------------------------------------------------------- 1 | банка 2 | banka 3 | црква 4 | crkva 5 | дом 6 | dom 7 | ресторан 8 | restoran 9 | школа 10 | škola|skola 11 | виноград 12 | vinograd -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sr/staircases.txt: -------------------------------------------------------------------------------- 1 | степениште 2 | stepenište|stepeniste -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sr/stopwords.txt: -------------------------------------------------------------------------------- 1 | и|& 2 | i|& -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sr/unit_directions.txt: -------------------------------------------------------------------------------- 1 | десно 2 | desno 3 | лево 4 | levo -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sr/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | апартман|ап|апт 2 | apartman|ap|apt 3 | канцеларија 4 | kancelarija 5 | соба 6 | soba 7 | стан 8 | stan -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sv/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | g 3 | l 4 | k 5 | n 6 | o 7 | s 8 | v 9 | ö -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sv/company_types.txt: -------------------------------------------------------------------------------- 1 | aktiebolag|ab 2 | publiktaktiebolag|ab ( publ )|ab publ 3 | handelsbolag|hb 4 | kommanditbolag|kb -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sv/concatenated_suffixes_inseparable.txt: -------------------------------------------------------------------------------- 1 | gränd|graend 2 | gränden|graenden 3 | liden 4 | plan 5 | torg -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sv/concatenated_suffixes_separable.txt: -------------------------------------------------------------------------------- 1 | gata|g. 2 | gatan 3 | plats|pl. 4 | platsen 5 | stig|st. 6 | stigen 7 | väg|vag|vaeg|v. 8 | vägen|vaegen -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sv/cross_streets.txt: -------------------------------------------------------------------------------- 1 | & 2 | hörnet av|hornet av 3 | i hörnet av|i hornet av 4 | mellan|mell 5 | och -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sv/directionals.txt: -------------------------------------------------------------------------------- 1 | norr|n 2 | norra|n:a 3 | öst|ost|oest|ö|o 4 | östra|ostra|oestra|ö:a|o:a 5 | söd|s|sod|soed 6 | södra|sodra|soedra|s:a 7 | väst|vast|vaest|v 8 | västra|vastra|vaestra|v:a -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sv/entrances.txt: -------------------------------------------------------------------------------- 1 | entré|entre 2 | ingång|ingaang|ingang -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sv/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | plan 2 | trappa upp|tr upp 3 | trappa|tr 4 | trappor upp|tr upp 5 | trappor|tr 6 | våning|vån|vaan|vaning|vaaning 7 | våningen|vån|vaan|vaningen|vaaningen -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sv/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | bottenvåning|bottenvaaning|bv|bottenvån 2 | entréplan|entreplan 3 | källare|kallare 4 | vindsvåningen|vindsvaaningen|vindsvaningen 5 | vinds -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sv/number.txt: -------------------------------------------------------------------------------- 1 | nummer|nr|#|№|no -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sv/personal_titles.txt: -------------------------------------------------------------------------------- 1 | doktor|dr 2 | sankt|s:t|st|skt 3 | sankta|s:ta|sta|skta -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sv/post_office.txt: -------------------------------------------------------------------------------- 1 | box 2 | postlåda|postlaada|postlada|pl -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sv/staircases.txt: -------------------------------------------------------------------------------- 1 | uppgång|uppgaang|uppgang 2 | uppgång höger|uh|u.h|u h|uppgaang hoger|uppgang hoger 3 | uppgång vänster|uv|u.v|u v|uppgaang vanster|uppgang vanster -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sv/street_types.txt: -------------------------------------------------------------------------------- 1 | allé|alle 2 | gata|g 3 | gatan 4 | gränd|graend 5 | liden 6 | plan 7 | plats|pl 8 | platsen 9 | stig|st 10 | stigen 11 | torg 12 | väg|vag|vaeg|v 13 | vägen|vagen|vaegen -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sv/synonyms.txt: -------------------------------------------------------------------------------- 1 | gamla|g:la 2 | lång|laang 3 | lilla|l 4 | stora|st -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sv/unit_directions.txt: -------------------------------------------------------------------------------- 1 | höger|hoger 2 | vänster|vanster 3 | till höger|till hoger|t.h|th 4 | till vänster|till vanster|t.v|tv -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/sv/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | bostad|bst 2 | hus 3 | lägenhet|lgh|lagenhet|laegenhet|lg 4 | lägenhetsnummer|lgh nr|lghnr|lagenhetsnummer|laegenhetsnummer|lgnr|lg nr 5 | rum -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/th/chains.txt: -------------------------------------------------------------------------------- 1 | ป.ต.ท.|ปตท|ป ต ท|ป.ต.ท 2 | ptt|p.t.t|p t t -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/th/street_types.txt: -------------------------------------------------------------------------------- 1 | ซอย 2 | soi|sxy 3 | ซอยเทศบาล 4 | soi thetsaban|sxy theṣ̄bāl|sxy tesbal 5 | ถนน 6 | thanon|t̄hnn|thnn 7 | ทางด่วน 8 | ไฮเวย์ 9 | ตรอก 10 | trok|trxk -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/tr/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | b 3 | d 4 | g 5 | k -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/tr/chains.txt: -------------------------------------------------------------------------------- 1 | bim -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/tr/cross_streets.txt: -------------------------------------------------------------------------------- 1 | arasında|arasinda 2 | köşe|kose 3 | köşesinde|kosesinde 4 | ve -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/tr/directionals.txt: -------------------------------------------------------------------------------- 1 | batı|bati|b 2 | doğu|dogu|d 3 | güney|guney|g 4 | kuzey|k 5 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/tr/entrances.txt: -------------------------------------------------------------------------------- 1 | giriş|giris -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/tr/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | bodrum -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/tr/level_types_mezzanine.txt: -------------------------------------------------------------------------------- 1 | asma kat -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/tr/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | kat|k -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/tr/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | zemin kat|zk|z.k|z k -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/tr/number.txt: -------------------------------------------------------------------------------- 1 | numara|no|no:|no : 2 | numarala|nolu -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/tr/personal_titles.txt: -------------------------------------------------------------------------------- 1 | bey 2 | hanım|hanim 3 | mimar 4 | sultan -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/tr/place_names.txt: -------------------------------------------------------------------------------- 1 | cami 2 | köprüsü|koprusu -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/tr/post_office.txt: -------------------------------------------------------------------------------- 1 | posta kutusu|pk|p.k|p k -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/tr/qualifiers.txt: -------------------------------------------------------------------------------- 1 | il 2 | ilçe|ilce 3 | köyü|koyu 4 | mahalle|mah 5 | mahallesi|mah -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/tr/staircases.txt: -------------------------------------------------------------------------------- 1 | merdiven -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/tr/stopwords.txt: -------------------------------------------------------------------------------- 1 | ve|& -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/tr/unit_directions.txt: -------------------------------------------------------------------------------- 1 | sağ|sag 2 | sol -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/tr/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | apartman|apt|ap 2 | daire|d 3 | oda 4 | ofis -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/uk/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | & 2 | д 3 | d 4 | ш 5 | с 6 | s 7 | з 8 | z -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/uk/chains.txt: -------------------------------------------------------------------------------- 1 | сбербанк 2 | sberbank 3 | приватбанк 4 | privatbank 5 | ощадбанк 6 | oschadbank 7 | wog -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/uk/cross_streets.txt: -------------------------------------------------------------------------------- 1 | і 2 | i 3 | кут 4 | kut 5 | між 6 | mizh 7 | на розі 8 | na rozi 9 | розі 10 | rozi -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/uk/directionals.txt: -------------------------------------------------------------------------------- 1 | схід|с 2 | skhid|s 3 | північ|півн 4 | pivnikh|pivn 5 | південь|півд 6 | pivden'|pivden|pivd 7 | захід|з 8 | zakhid|z -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/uk/entrances.txt: -------------------------------------------------------------------------------- 1 | вхід 2 | vkhid -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/uk/house_numbers.txt: -------------------------------------------------------------------------------- 1 | дом|д 2 | dom|d 3 | будинок|буд 4 | budynok|bud 5 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/uk/level_types_basement.txt: -------------------------------------------------------------------------------- 1 | підвал 2 | pidval 3 | цокольний поверх|цок пов 4 | tsokolʹnyy poverkh|tsokolnyy poverkh|tsok pov -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/uk/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | поверх|пов 2 | poverkh|pov 3 | рівень 4 | riven'|riven -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/uk/level_types_standalone.txt: -------------------------------------------------------------------------------- 1 | перший поверх|перш пов 2 | pershyy poverkh|persh pov 3 | нижній поверх|ниж пов 4 | nyzhniy poverkh|nyzh pov -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/uk/number.txt: -------------------------------------------------------------------------------- 1 | номер|но|№|no 2 | nomer|№|no 3 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/uk/personal_titles.txt: -------------------------------------------------------------------------------- 1 | академіка 2 | генерала 3 | маршала 4 | гетьмана 5 | архітектора 6 | братів 7 | сержанта 8 | лейтенанта 9 | професора 10 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/uk/post_office.txt: -------------------------------------------------------------------------------- 1 | абонементна скринька|а / с 2 | abonementnykh skrynʹka|abonementnykh skrynka|a / s 3 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/uk/qualifiers.txt: -------------------------------------------------------------------------------- 1 | блок|бл 2 | blok|bl 3 | квартал|кварт|кв|кв-л 4 | kvartal|kvart|kv|kv-l 5 | область|обл 6 | oblast|obl 7 | район|р-н 8 | raion|r-n 9 | -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/uk/staircases.txt: -------------------------------------------------------------------------------- 1 | сходи 2 | skhody -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/uk/stopwords.txt: -------------------------------------------------------------------------------- 1 | і|& 2 | i|& -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/uk/unit_directions.txt: -------------------------------------------------------------------------------- 1 | ліво 2 | livo 3 | право 4 | pravo -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/uk/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | квартира|кв 2 | kvartyra|kv 3 | кабінет|каб|к-т|к 4 | kabinet|kab|k-t|k 5 | кімната|км 6 | kimnata|km 7 | літера|літ 8 | litera|lit 9 | офіс|оф 10 | ofis|of -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/ur/street_types.txt: -------------------------------------------------------------------------------- 1 | گلی 2 | روڈ 3 | لین 4 | سڑک 5 | شاہراہ 6 | ایکسپریس وے 7 | ہائی وے -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/vi/ambiguous_expansions.txt: -------------------------------------------------------------------------------- 1 | d 2 | p 3 | q -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/vi/personal_titles.txt: -------------------------------------------------------------------------------- 1 | thánh|thanh -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/vi/qualifiers.txt: -------------------------------------------------------------------------------- 1 | phường|ph|p 2 | quận|quan|q 3 | thành phố|thanh pho|tp|t p 4 | thị xã|thi xa|tx|t x 5 | thị trấn|thi tran|tt|t t -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/zh/building_types.txt: -------------------------------------------------------------------------------- 1 | 栋 2 | dòng|dong -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/zh/chains.txt: -------------------------------------------------------------------------------- 1 | 全家便利商店 2 | 萊爾富 -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/zh/level_types_numbered.txt: -------------------------------------------------------------------------------- 1 | 楼 2 | 樓 3 | lóu|lou 4 | 层 5 | céng|ceng -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/zh/number.txt: -------------------------------------------------------------------------------- 1 | 号 2 | 號 3 | hào|hao -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/zh/place_names.txt: -------------------------------------------------------------------------------- 1 | 桥 2 | qiáo|qiao -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/zh/post_office.txt: -------------------------------------------------------------------------------- 1 | 邮政信箱 2 | 郵政信箱 3 | yóuzhèng xìnxiāng|youzheng xinxiang -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/zh/postcodes.txt: -------------------------------------------------------------------------------- 1 | 郵編 2 | 邮编 3 | yóubiān|youbian -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/zh/qualifiers.txt: -------------------------------------------------------------------------------- 1 | 省 2 | shěng|sheng 3 | 縣 4 | xiàn|xian 5 | 市 6 | shì|shi 7 | 區 8 | 区 9 | qū|qu 10 | 鎮 11 | zhèn|zhen 12 | 鄉 13 | xiāng|xiang 14 | 里 15 | lǐ|li 16 | 村 17 | cūn|cun 18 | 鄰 19 | lín|lin -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/zh/stopwords.txt: -------------------------------------------------------------------------------- 1 | 号 2 | hào -------------------------------------------------------------------------------- /resources/libpostal/dictionaries/zh/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | 室 2 | shì|shi -------------------------------------------------------------------------------- /resources/libpostal/resources-download.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | git clone https://github.com/openvenues/libpostal.git /tmp/libpostal 4 | 5 | rm -rf ./dictionaries 6 | cp -r /tmp/libpostal/resources/dictionaries . 7 | 8 | rm -rf /tmp/libpostal -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/af/personal_titles.txt: -------------------------------------------------------------------------------- 1 | !kort|k 2 | !korte|kte -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/all/surnames.txt: -------------------------------------------------------------------------------- 1 | !street 2 | -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/de/concatenated_suffixes_separable.txt: -------------------------------------------------------------------------------- 1 | str 2 | park 3 | kanal 4 | -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/de/place_names.txt: -------------------------------------------------------------------------------- 1 | !ma 2 | -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/de/stopwords.txt: -------------------------------------------------------------------------------- 1 | !am -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/de/street_types.txt: -------------------------------------------------------------------------------- 1 | # abbrviation for 'chaussee' conflicts with Swiss countrycode 2 | !ch -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/en/place_names.txt: -------------------------------------------------------------------------------- 1 | temple 2 | cathedral 3 | stop 4 | !dist 5 | building 6 | field 7 | !parish 8 | -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/en/stopwords.txt: -------------------------------------------------------------------------------- 1 | !in 2 | !a -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/en/street_names.txt: -------------------------------------------------------------------------------- 1 | # bad abbreviation for the very uncommon suffix "Artery" 2 | !art 3 | -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/en/unit_types_numbered.txt: -------------------------------------------------------------------------------- 1 | !shop|shp 2 | !stop 3 | !store|stor 4 | -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/es/street_types.txt: -------------------------------------------------------------------------------- 1 | # conflicts with US state abbreviation 2 | !ca -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/fr/personal_titles.txt: -------------------------------------------------------------------------------- 1 | l'amiral 2 | adjudant|l'adjudant 3 | empereur|l'empereur 4 | inspecteur|l'inspecteur -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/fr/street_types.txt: -------------------------------------------------------------------------------- 1 | cité|cite 2 | cités|cites 3 | 4 | # https://github.com/pelias/parser/pull/141#issuecomment-895230721 5 | !esplanades|esps 6 | -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/fr/subdivisions.txt: -------------------------------------------------------------------------------- 1 | bis 2 | ter -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/it/street_types.txt: -------------------------------------------------------------------------------- 1 | # this Italian contracted form of Androna causes issues in English 2 | !and -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/ko/street_types.txt: -------------------------------------------------------------------------------- 1 | !ga 2 | -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/nb/concatenated_suffixes_separable.txt: -------------------------------------------------------------------------------- 1 | # Causes a bunch of issues with Spanish addresses ("Calle" is a common prefix) 2 | !alle 3 | -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/nb/directionals.txt: -------------------------------------------------------------------------------- 1 | øvre|ovre 2 | øvste|ovste 3 | nedre 4 | midtre 5 | ytre 6 | indre 7 | sør|sor|s 8 | sørre|sorre -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/nl/concatenated_suffixes_inseparable.txt: -------------------------------------------------------------------------------- 1 | burg|brg|bg -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/nl/concatenated_suffixes_separable.txt: -------------------------------------------------------------------------------- 1 | baan 2 | daal 3 | dijk 4 | dreef 5 | !plain|pln. 6 | plein|pln 7 | plantsoen|plnts 8 | singel|sngl 9 | -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/nl/directionals.txt: -------------------------------------------------------------------------------- 1 | noordzijde|nz|n.z.|n.z|n z 2 | oostzijde|oz|o.z.|o.z|o z 3 | westzijde|wz|w.z.|w.z|w z 4 | zuidzijde|zz|z.z.|z.z|z z -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/nl/personal_suffixes.txt: -------------------------------------------------------------------------------- 1 | junior|jr|jnr 2 | senior|sr|snr 3 | # st is not a personal suffix in Dutch 4 | !st -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/pl/place_names.txt: -------------------------------------------------------------------------------- 1 | wojsko|wojska|wojsk 2 | -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/pl/synonyms.txt: -------------------------------------------------------------------------------- 1 | polskiego|polski|pol 2 | -------------------------------------------------------------------------------- /resources/pelias/dictionaries/libpostal/sv/concatenated_suffixes_separable.txt: -------------------------------------------------------------------------------- 1 | vägen|vagen|v. -------------------------------------------------------------------------------- /resources/pelias/dictionaries/whosonfirst/locality/name:fra_x_preferred.txt: -------------------------------------------------------------------------------- 1 | # https://github.com/pelias/parser/issues/140 2 | !broadway 3 | -------------------------------------------------------------------------------- /resources/pelias/dictionaries/whosonfirst/region/name:eng_x_preferred.txt: -------------------------------------------------------------------------------- 1 | # This is not used as region 2 | !paris -------------------------------------------------------------------------------- /resources/pelias/pelias.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | const resourceLoader = require('../helper').resourceLoader 3 | const dictPath = path.join(__dirname, `./dictionaries`) 4 | 5 | module.exports.load = resourceLoader(dictPath) 6 | --------------------------------------------------------------------------------