You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This Guide is published on Github Pages at: [https://stanfordgeospatialcenter.github.io/geocoding101/](https://stanfordgeospatialcenter.github.io/geocoding101/)
3
5
4
6
## Code Examples
5
7
@@ -43,12 +45,14 @@ Different research questions require different types of geocoding. Understanding
43
45
Address geocoding converts street addresses into coordinates, typically with high precision (rooftop or street-level accuracy). This is one of the most common geocoding tasks in research.
44
46
45
47
**Use Cases:**
48
+
46
49
- Mapping patient addresses for health studies (with appropriate privacy protections)
47
50
- Analyzing customer or business locations
48
51
- Studying residential patterns and neighborhood characteristics
49
52
- Historical address research
50
53
51
54
**Considerations:**
55
+
52
56
- Address formats vary by country and region
53
57
- Accuracy depends on the completeness and currency of reference street data
54
58
- Address standardization and cleaning often necessary before geocoding
@@ -59,12 +63,14 @@ Address geocoding converts street addresses into coordinates, typically with hig
59
63
Place name (or toponym) geocoding converts named locations—such as cities, landmarks, neighborhoods, or natural features—into coordinates. This typically returns a representative point for the named feature.
60
64
61
65
**Use Cases:**
66
+
62
67
- Geocoding historical place names from archives or texts
63
68
- Mapping event locations from news reports or social media
64
69
- Analyzing place mentions in literature or documents
65
70
- Studying geographic distributions of cultural or historical phenomena
66
71
67
72
**Considerations:**
73
+
68
74
- Place names can be ambiguous (e.g., "Springfield" exists in many states)
69
75
- Historical place names may have changed or no longer exist
70
76
- Returned coordinates are usually centroids, not precise locations
@@ -75,12 +81,14 @@ Place name (or toponym) geocoding converts named locations—such as cities, lan
75
81
Administrative geocoding converts administrative unit names (countries, states, counties, postal codes, etc.) into representative coordinates, typically the centroid of the area.
76
82
77
83
**Use Cases:**
84
+
78
85
- Mapping aggregated data reported by administrative units
79
86
- Joining datasets based on administrative geography
80
87
- Analyzing regional patterns and comparisons
81
88
- Creating choropleth maps
82
89
83
90
**Considerations:**
91
+
84
92
- Returns centroid points, not boundaries (separate boundary data needed for polygon mapping)
85
93
- Administrative boundaries change over time
86
94
- Hierarchical specificity matters (city vs. county vs. state)
Reverse geocoding works in the opposite direction: it takes coordinates and returns information about the nearest feature, such as an address, place name, or administrative unit.
92
100
93
101
**Use Cases:**
102
+
94
103
- Converting GPS coordinates to readable addresses
95
104
- Identifying locations from coordinate data
96
105
- Enriching coordinate-only datasets with contextual information
97
106
- Quality checking geocoding results
98
107
99
108
**Considerations:**
109
+
100
110
- Returns nearest match, which may not be the exact location
101
111
- Useful for validating forward geocoding results
102
112
- Can help identify what type of feature a coordinate represents
@@ -106,12 +116,14 @@ Reverse geocoding works in the opposite direction: it takes coordinates and retu
106
116
POI geocoding locates specific types of places such as businesses, landmarks, facilities, or services by name or category.
107
117
108
118
**Use Cases:**
119
+
109
120
- Mapping hospital, school, or park locations
110
121
- Analyzing access to services and amenities
111
122
- Studying commercial or institutional distributions
112
123
- Creating proximity measures to specific facility types
113
124
114
125
**Considerations:**
126
+
115
127
- POI databases vary in coverage and currency
116
128
- Business locations change frequently
117
129
- May require category codes or filters for searches
@@ -136,6 +148,7 @@ Geocoding quality varies based on:
136
148
- **Match type**: Whether the match was to an address, street segment, postal code, city, etc.
137
149
138
150
High-quality research requires attention to these metrics and often involves:
151
+
139
152
- Cleaning and standardizing input data
140
153
- Reviewing and manually correcting low-confidence matches
141
154
- Documenting geocoding methods and match rates
@@ -167,8 +180,6 @@ This guide provides a conceptual foundation for geocoding in research contexts.
167
180
168
181
Please refer to the additional documentation and tutorials provided by the Stanford Geospatial Center.
169
182
170
-
171
-
172
183
## Additional Resources
173
184
174
185
- [Esri's Introduction to Geocoding](https://pro.arcgis.com/en/pro-app/latest/help/data/geocoding/what-is-geocoding.htm)
0 commit comments