Geocode
This module geocodes the addresses.
Overview
This module handles geocoding of records.
It utilizes the ArcGIS geocoding API and asyncio to speed up the process.
build_url(bounds, address_data, key)
Build the geocoding url.
This uses the hardcoded fat_url
and inserts the token (key
) and then encodes the bounds and address data.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
bounds
|
GeoBounds
|
The (rectangular) bounds to use for the geocoding. |
required |
address_data
|
dict[str, str | int | None]
|
The address data to use for the geocoding. |
required |
key
|
str
|
The ArcGIS token. |
required |
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
The geocoding url. |
Source code in src/opendata_pipeline/geocode.py
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
|
clean_address_string(s)
Clean street.
Removes any non-alphanumeric characters.
Returns None if the string is empty after cleaning.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
s
|
str
|
The string to clean. |
required |
Returns:
Type | Description |
---|---|
str | None
|
str | None: The cleaned string or None if the string is empty. |
Source code in src/opendata_pipeline/geocode.py
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
|
export_geocoded_results(data)
Export geocoded results to file.
Source code in src/opendata_pipeline/geocode.py
131 132 133 134 135 |
|
geocode_records(config, key)
async
Geocode records for the data source.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config
|
DataSource
|
The data source config. |
required |
key
|
str
|
The ArcGIS token. |
required |
Returns:
Type | Description |
---|---|
list[dict[str, Any]]
|
list[dict[str, Any]]: The geocoded records. |
Source code in src/opendata_pipeline/geocode.py
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 |
|
get_geo_result(client, url, id_, data_source_name, retry_number=0, max_retries=5)
async
Get the geocoding result from an async web request to ArcGIS.
If the request returns 200, will retry.
Will return None otherwise.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
session
|
ClientSession
|
The aiohttp session to use for the request. |
required |
url
|
str
|
The url to use for the request. |
required |
id_
|
int
|
The id of the record being geocoded. |
required |
data_source_name
|
str
|
The name of the data source being geocoded. |
required |
Returns:
Type | Description |
---|---|
dict[str, Any] | None
|
dict[str, Any] | None: The geocoding result or None if the request failed. |
Source code in src/opendata_pipeline/geocode.py
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 |
|
prepare_address(record, config)
Prepare address for geocoding.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
record
|
dict[str, Any]
|
The record to prepare. |
required |
Returns:
Type | Description |
---|---|
tuple[Any, dict[str, Any]] | None
|
tuple[Any, dict[str, Any]] | None: The id and address data or None if the address is invalid. |
Source code in src/opendata_pipeline/geocode.py
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
|
read_records(config)
Read records from file.
Only reads records that have not been geocoded.
Only return fields that are needed for geocoding.
Source code in src/opendata_pipeline/geocode.py
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 57 58 59 60 61 62 63 |
|
run(settings, alternate_key)
async
Run the geocoding process.
Source code in src/opendata_pipeline/geocode.py
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 |
|