-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.ts
404 lines (371 loc) · 10.8 KB
/
index.ts
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
57
58
59
60
61
62
63
64
65
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
92
93
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
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
229
230
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
import GeocoderArcGIS from 'geocoder-arcgis'
import type { GeoJSON } from 'geojson'
import { toCoordinates, toString, toPoint } from '@conveyal/lonlat'
import type { LonLatInput } from '@conveyal/lonlat'
type Point = {
x: number
y: number
}
type GeocodersMap = {
[key: string]: GeocoderArcGIS
}
type Boundary = {
rect: {
maxLat: number
maxLon: number
minLat: number
minLon: number
}
}
/**
* A geocoding candidate as received from either the findAddressCandidates or geocodeAddresses endpoint.
* See info about some attributes here: https://developers.arcgis.com/rest/geocode/api-reference/geocoding-service-output.htm
*/
type Candidate = {
attributes: Record<string, string | number>
location: {
x: number
y: number
}
}
type BaseQuery = {
clientId?: string
clientSecret?: string
url?: string
}
type SuggestOption = {
isCollection: boolean
magicKey: string
text: string
}
const arcGisGeocoders: GeocodersMap = {}
function boundaryToSearchExtent(boundary: Boundary): string {
return [
boundary.rect.minLon,
boundary.rect.maxLat,
boundary.rect.maxLon,
boundary.rect.minLat
].join(',')
}
function getGeocoder(
clientId?: string,
clientSecret?: string,
endpoint?: string
): GeocoderArcGIS {
const geocoderKey: string = [clientId, clientSecret, endpoint]
.map((s) => String(s))
.join('-')
if (!arcGisGeocoders[geocoderKey]) {
arcGisGeocoders[geocoderKey] = new GeocoderArcGIS({
client_id: clientId,
client_secret: clientSecret,
endpoint
})
}
return arcGisGeocoders[geocoderKey]
}
/**
* Translate arcgis candidate json to geojson
*/
function candidateToGeojson(candidate: Candidate): GeoJSON {
if (!candidate.location) {
// no result found for this candidate
return {
geometry: {
coordinates: [0, 0],
type: 'Point'
},
properties: {
confidence: 0,
country: '',
country_a: '',
county: '',
label: 'Address not found',
locality: '',
name: '',
neighbourhood: '',
region: '',
resultId: candidate.attributes.ResultID // this only appears in bulk geocode results
},
type: 'Feature'
}
}
if (typeof candidate.attributes.Score !== 'number') {
candidate.attributes.Score = parseInt(candidate.attributes.Score)
}
return {
geometry: {
coordinates: toCoordinates(candidate.location),
type: 'Point'
},
properties: {
confidence: candidate.attributes.Score / 100,
country: candidate.attributes.Country,
country_a: candidate.attributes.Country,
county: candidate.attributes.Subregion,
label: candidate.attributes.LongLabel,
locality: candidate.attributes.City,
name: candidate.attributes.ShortLabel,
neighbourhood: candidate.attributes.Nbrhd,
region: candidate.attributes.Region,
resultId: candidate.attributes.ResultID // this only appears in bulk geocode results
},
type: 'Feature'
}
}
/**
* Search for and address using
* ESRI's {@link https://developers.arcgis.com/rest/geocode/api-reference/geocoding-suggest.htm|suggest}
* service. This service does not return geojson, instead it returns the list
* of address suggestions and corresponding magicKeys
*
* @param {Object} $0
* @param {string} [$0.clientId]
* @param {string} [$0.clientSecret]
* @param {Object} [$0.boundary]
* @param {Object} [$0.focusPoint]
* @param {string} $0.text query text
* @param {string} [$0.url] optional URL to override ESRI suggest endpoint
* @return {Promise} A Promise that'll get resolved with the suggest result
*/
export function autocomplete({
boundary,
clientId,
clientSecret,
focusPoint,
text,
url
}: BaseQuery & {
boundary?: Boundary
focusPoint?: Point
text?: string
}): Promise<{ features: Array<SuggestOption>; query: { text: string } }> {
const geocoder: GeocoderArcGIS = getGeocoder(clientId, clientSecret, url)
const options: { location?: string; searchExtent?: string } = {}
if (focusPoint) {
options.location = toString(focusPoint)
}
if (boundary) {
options.searchExtent = boundaryToSearchExtent(boundary)
}
// make request to arcgis
return geocoder
.suggest(text, options)
.then((response: { suggestions: SuggestOption[] }) => {
// translate response
return {
features: response.suggestions,
query: {
text
}
}
})
}
/**
* Bulk geocode a list of addresses using
* ESRI's {@link https://developers.arcgis.com/rest/geocode/api-reference/geocoding-geocode-addresses.htm|geocodeAddresses}
* service.
*
* Note: GeoJSON.FeatureCollection includes a features array
*
* @param {Object} $0
* @param {Array} $0.addresses Can be array of strings or objects. Strings can be addresses or coordinates in the form `lon,lat`
* @param {string} $0.clientId
* @param {string} $0.clientSecret
* @param {Object} [$0.boundary]
* @param {Object} [$0.focusPoint]
* @param {string} [$0.url]
* @return {Promise} A Promise that'll get resolved with the bulk geocode result
*/
export function bulk({
addresses,
boundary,
clientId,
clientSecret,
focusPoint,
url
}: BaseQuery & {
addresses: Array<string>
boundary?: Boundary
focusPoint?: Point
text?: string
}): Promise<
GeoJSON.FeatureCollection & {
query: { addresses: string[] }
}
> {
const geocoder: GeocoderArcGIS = getGeocoder(clientId, clientSecret, url)
let addressesQuery: Array<string | Record<string, string>> = [...addresses]
const options: Record<string, string> = {}
if (boundary || focusPoint) {
const addressOptions: { location?: string; searchExtent?: string } = {}
if (boundary) {
addressOptions.searchExtent = boundaryToSearchExtent(boundary)
}
if (focusPoint) {
addressOptions.location = toString(focusPoint)
}
addressesQuery = addresses.map(
(address: unknown): Record<string, string> => {
// add in searchExtent and/or location to each address query
if (typeof address === 'string') {
address = {
address
}
}
return Object.assign({}, addressOptions, address)
}
)
}
// make request to arcgis
return geocoder
.geocodeAddresses(addressesQuery, options)
.then((response: { locations: Candidate[] }) => {
// translate response
// ArcGIS returns only a single response for reverse geocoding
return {
features: response.locations.map(candidateToGeojson),
query: {
addresses: addressesQuery
}
}
})
}
/**
* Reverse geocode using
* ESRI's {@link https://developers.arcgis.com/rest/geocode/api-reference/geocoding-reverse-geocode.htm|reverseGeocode}
* service.
*
* Note: GeoJSON.FeatureCollection includes a features array
*
* @param {Object} $0
* @param {string} [$0.clientId]
* @param {string} [$0.clientSecret]
* @param {boolean} [$0.forStorage=false] Specifies whether result is inteded to be stored
* @param {{lat: number, lon: number}} $0.point Point to reverse geocode
* @param {string} [$0.url] optional URL to override ESRI reverseGeocode endpoint
* @return {Promise} A Promise that'll get resolved with reverse geocode result
*/
export function reverse({
clientId,
clientSecret,
forStorage = false,
point,
url
}: BaseQuery & {
forStorage?: boolean
point: LonLatInput
}): Promise<GeoJSON.FeatureCollection & { query: Point }> {
const geocoder = getGeocoder(clientId, clientSecret, url)
const options: { forStorage?: boolean } = {}
if (forStorage) {
options.forStorage = true
}
// make request to arcgis
return geocoder
.reverse(toString(point), options)
.then(
(response: {
address: Record<string, string>
location: LonLatInput
}): GeoJSON | { query: Point } => {
// translate response
// ArcGIS returns only a single response for reverse geocoding
return {
features: [
{
geometry: {
coordinates: toCoordinates(response.location),
type: 'Point'
},
properties: {
country_a: response.address.CountryCode,
county: response.address.Subregion,
label: response.address.LongLabel,
locality: response.address.city,
name: response.address.ShortLabel,
neighbourhood: response.address.Neighborhood,
region: response.address.Region
},
type: 'Feature'
}
],
query: toPoint(point)
}
}
)
}
/**
* Search for an address using
* ESRI's {@link https://developers.arcgis.com/rest/geocode/api-reference/geocoding-find-address-candidates.htm|findAddressCandidates}
* service.
*
* @param {Object} $0
* @param {string} [$0.clientId]
* @param {string} [$0.clientSecret]
* @param {Object} [$0.boundary]
* @param {Object} [$0.focusPoint]
* @param {boolean} [$0.forStorage=false] Specifies whether result is inteded to be stored
* @param {string} [$0.magicKey] magicKey to use in searching as obtained from `suggest` results
* @param {number} [$0.size=10]
* @param {string} $0.text The address text to query for
* @param {string} [$0.url] optional URL to override ESRI reverseGeocode endpoint
* @return {Promise} A Promise that'll get resolved with search result
*/
export function search({
boundary,
clientId,
clientSecret,
focusPoint,
forStorage = false,
magicKey,
size = 10,
text,
url
}: BaseQuery & {
boundary?: Boundary
focusPoint?: Point
forStorage?: boolean
magicKey?: string
size?: number
text?: string
}): Promise<{ features: GeoJSON.FeatureCollection; query: { text: string } }> {
const geocoder: GeocoderArcGIS = getGeocoder(clientId, clientSecret, url)
const options: {
forStorage?: boolean
location?: string
magicKey?: string
maxLocations?: number
outFields?: string
searchExtent?: string
} = {}
options.outFields = '*'
if (boundary) {
options.searchExtent = boundaryToSearchExtent(boundary)
}
if (focusPoint) {
options.location = toString(focusPoint)
}
if (forStorage) {
options.forStorage = true
}
if (magicKey) {
options.magicKey = magicKey
}
if (size) {
options.maxLocations = size
}
// make request to arcgis
return geocoder
.findAddressCandidates(text, options)
.then((response: { candidates: Candidate[] }) => {
// translate response
// ArcGIS returns only a single response for reverse geocoding
return {
features: response.candidates.map(candidateToGeojson),
query: {
text
}
}
})
}