compromise
Version:
modest natural language processing
212 lines (207 loc) • 2.65 kB
JavaScript
export default [
// geology
'atoll',
'basin',
'bay',
'beach',
'bluff',
'bog',
'camp',
'canyon',
'canyons',
'cape',
'cave',
'caves',
// 'cliff',
'cliffs',
'coast',
'cove',
'coves',
'crater',
'crossing',
'creek',
'desert',
'dune',
'dunes',
'downs',
'estates',
'escarpment',
'estuary',
'falls',
'fjord',
'fjords',
'forest',
'forests',
'glacier',
'gorge',
'gorges',
'grove',
'gulf',
'gully',
'highland',
'heights',
'hollow',
'hill',
'hills',
'inlet',
'island',
'islands',
'isthmus',
'junction',
'knoll',
'lagoon',
'lake',
'lakeshore',
'marsh',
'marshes',
'mount',
'mountain',
'mountains',
'narrows',
'peninsula',
'plains',
'plateau',
'pond',
'rapids',
'ravine',
'reef',
'reefs',
'ridge',
// 'river delta',
'river',
'rivers',
'sandhill',
'shoal',
'shore',
'shoreline',
'shores',
'strait',
'straits',
'springs',
'stream',
'swamp',
'tombolo',
'trail',
'trails',
'trench',
'valley',
'vallies',
'village',
'volcano',
'waterfall',
'watershed',
'wetland',
'woods',
'acres',
// districts
'burough',
'county',
'district',
'municipality',
'prefecture',
'province',
'region',
'reservation',
'state',
'territory',
'borough',
'metropolis',
'downtown',
'uptown',
'midtown',
'city',
'town',
'township',
'hamlet',
'country',
'kingdom',
'enclave',
'neighbourhood',
'neighborhood',
'kingdom',
'ward',
'zone',
// 'range',
//building/ complex
'airport',
'amphitheater',
'arch',
'arena',
'auditorium',
'bar',
'barn',
'basilica',
'battlefield',
'bridge',
'building',
'castle',
'centre',
'coliseum',
'cineplex',
'complex',
'dam',
'farm',
'field',
'fort',
'garden',
'gardens',
// 'grounds',
'gymnasium',
'hall',
'house',
'levee',
'library',
'manor',
'memorial',
'monument',
'museum',
'gallery',
'palace',
'pillar',
'pits',
// 'pit',
// 'place',
// 'point',
// 'room',
'plantation',
'playhouse',
'quarry',
// 'ruins',
'sportsfield',
'sportsplex',
'stadium',
// 'statue',
'terrace',
'terraces',
'theater',
'tower',
'park',
'parks',
'site',
'ranch',
'raceway',
'sportsplex',
// 'sports centre',
// 'sports field',
// 'soccer complex',
// 'soccer centre',
// 'sports complex',
// 'civic centre',
// roads
'ave',
'st',
'street',
'rd',
'road',
'lane',
'landing',
'crescent',
'cr',
'way',
'tr',
'terrace',
'avenue',
].reduce((h, str) => {
h[str] = true
return h
}, {})