All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
PlaceNameCategory.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 namespace Eegeo
6 {
7  namespace Resources
8  {
9  namespace PlaceNames
10  {
11  // Only used by V1 Placename data. Converted on parsing to V2 format.
12  enum PlaceNameCategory
13  {
14  PlaceNameCategoryUnknown = 0,
15  PlaceNameCategoryCountry = 1,
16  PlaceNameCategoryState = 2,
17  PlaceNameCategoryCounty = 3,
18  PlaceNameCategoryCityCapital = 4,
19  PlaceNameCategoryCity = 5,
20  PlaceNameCategoryPark = 6,
21  PlaceNameCategoryAirport = 7,
22  PlaceNameCategoryDistrict = 8,
23  PlaceNameCategoryGolfCourse = 9,
24  PlaceNameCategoryPlaceOfInterest = 10,
25  PlaceNameCategorySmallDistrict = 11,
26  PlaceNameCategoryStation = 12,
27  PlaceNameCategoryRouteName = 13,
28  PlaceNameCategoryFacility = 14,
29  PlaceNameCategoryCrossing = 15
30  };
31  }
32  }
33 }