forked from chadly/Geocoding.net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuality.cs
More file actions
56 lines (55 loc) · 1.48 KB
/
Quality.cs
File metadata and controls
56 lines (55 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
namespace Geocoding.MapQuest
{
public enum Quality : int
{
/// <summary>
/// P1 A specific point location.
/// </summary>
POINT = 0,
/// <summary>
/// L1 A specific street address location.
/// </summary>
ADDRESS = 1,
/// <summary>
/// I1 An intersection of two or more streets.
/// </summary>
INTERSECTION = 2,
/// <summary>
/// B1 The center of a single street block. House number ranges are returned if available.
/// B2 The center of a single street block, which is located closest to the geographic center of all matching street blocks. No house number range is returned.
/// B3 The center of a single street block whose numbered range is nearest to the input number. House number range is returned.
/// </summary>
STREET = 3,
/// <summary>
/// Z2 Postal code. For USA, a ZIP+2.
/// Z3 Postal code. For USA, a ZIP+4.
/// </summary>
ZIP_EXTENDED = 4,
/// <summary>
/// Z1 Postal code, largest. For USA, a ZIP.
/// Z4 Postal code, smallest. Unused in USA.
/// </summary>
ZIP = 5,
/// <summary>
/// A5 Admin area. For USA, a city.
/// </summary>
CITY = 6,
/// <summary>
/// A4 Admin area. For USA, a county.
/// </summary>
COUNTY = 7,
/// <summary>
/// A3 Admin area. For USA, a state.
/// </summary>
STATE = 8,
/// <summary>
/// A1 Admin area, largest. For USA, a country.
/// </summary>
COUNTRY = 9,
/// <summary>
/// Admin area. For USA, a neighborhood.
/// </summary>
NEIGHBORHOOD = 10,
UNKNOWN = 11
}
}