| 938 | } |
| 939 | |
| 940 | uint64_t GetDefPopulation(LocalityType localityType) |
| 941 | { |
| 942 | switch (localityType) |
| 943 | { |
| 944 | case LocalityType::Country: return 500000; |
| 945 | case LocalityType::State: return 100000; |
| 946 | case LocalityType::City: return 50000; |
| 947 | case LocalityType::Town: return 10000; |
| 948 | case LocalityType::Village: return 100; |
| 949 | default: return 0; |
| 950 | } |
| 951 | } |
| 952 | |
| 953 | uint64_t GetPopulation(FeatureType & ft) |
| 954 | { |
no outgoing calls
no test coverage detected