Feature service
A feature service is a type of data service that stores spatial data (features) and non-spatial data. It provides access to the data with feature layers and tables. You use SQL queries, spatial queries, or a combination of both to get data from a feature service. Feature services are created and managed using data management tools and are accessed with a REST API.
Mapping applications typically use client APIs and feature services to access, query, edit, analyze and display data in a map or scene.
Key features
- Securely store spatial and non-spatial data in ArcGIS.
- Access, edit (create, update, and delete), and analyze data.
- Efficiently serve features with geometry and attributes to display in maps and scenes.
- Query and filter data.
- Analyze data.
- Manage and share data.
- Access, edit, analyze and view data in maps and scenes while offline.
- Store and manage attachments (such as photographs or documents) linked to individual data records.
- Easily created and managed as hosted feature layers in ArcGIS.
How to use a feature service
You typically use a feature service, feature layers, and tables by:
- Creating a feature service using data management tools.
- Accessing the feature service's feature layers and tables.
- Getting data from a feature layer or table for display, editing, or analysis.
How a feature service works
A feature service is accessed using the base service URL and consists of:
- Feature layers for storing, accessing, and editing features.
- Tables for storing, accessing, and editing non-spatial data.
- Properties that describe the feature service and its capabilities, such as:
- The spatial reference used to store geographic data in any feature layers.
- A default geographic extent for viewing feature data.
- A bounding geographic extent for feature data across all feature layers.
- Description.
- Copyright text.
- Is editing supported?
- Can the service be used offline?
A feature service also provides:
- A REST API for programmatic access.
- A web page for exploring and interacting with the feature service and its feature layers and tables.
- Operations for working offline with data stored in the feature service.
Most typical interactions with a feature service are through individual feature layers and tables. You use the feature layers and tables to access, view, edit, and manage the data stored in the feature service.
Feature service URL
Feature services only support an enhanced endpoint. To access a feature service, use the host, unique service ID, and service name.
1
https://<host>/<uniqueID>/ArcGIS/rest/services/<serviceName>/FeatureServer/
For example:
1
https://services2.arcgis.com/ZQgQTuoyBrtmoGdP/arcgis/rest/services/Mobile_Data_Collection_WFL1/FeatureServer
Learn more about standard and enhanced endpoints in Service endpoints.
Name | Description | Examples |
---|---|---|
f | The format of the data returned. | f=json f=pjson |
token | An API key or OAuth 2.0 access token. Learn how to get an access token in Security and authentication. | token=< token=< |
Code examples
Get feature layers and tables
Get the feature service description properties for this service as formatted JSON, including the list of feature layer and tables provided by the feature service.
The service is shared with everyone, so no token
is required.
1
https://services2.arcgis.com/ZQgQTuoyBrtmoGdP/arcgis/rest/services/Mobile_Data_Collection_WFL1/FeatureServer?f=pjson
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
"layers": [
{
"id": 0,
"name": "Trees",
"parentLayerId": -1,
"defaultVisibility": true,
"subLayerIds": null,
"minScale": 0,
"maxScale": 0,
"geometryType": "esriGeometryPoint"
},
{
"id": 1,
"name": "Neighborhoods",
"parentLayerId": -1,
"defaultVisibility": true,
"subLayerIds": null,
"minScale": 0,
"maxScale": 0,
"geometryType": "esriGeometryPolygon"
}
],
"tables": [
{
"id": 2,
"name": "Inspections",
"parentLayerId": -1,
"defaultVisibility": true,
"subLayerIds": null,
"minScale": 0,
"maxScale": 0
},
{
"id": 3,
"name": "Species",
"parentLayerId": -1,
"defaultVisibility": true,
"subLayerIds": null,
"minScale": 0,
"maxScale": 0
}
Feature layers and tables
A feature service contains one or more feature layers and/or tables. Feature layers provide access to spatial data. Tables provide access to non-spatial data.
Each feature layer and table is accessed with a URL that returns properties describing the feature layer or table. Some key properties are:
- Feature layer or table name
- ID field
- Query capabilities
- Edit permissions
- Relationships with other feature layers and tables. Feature layers and tables can be related to one-another. For example, a feature layer containing trees could be related to a non-spatial table containing tree inspection data, and each tree could have a number of related inspections.
Other properties describe the data the feature layer or table provides access to, and how that data can be accessed and displayed. Properties include:
- Field definitions. Each definition include the field name, display name, type, default value, any domain values, and whether the field is required.
- Geometry type (feature layer only)
- Default display field. Client APIs typically use this to provide default feedback when interacting with data in a map or scene.
- Default visualization (feature layer only)
Feature layer/table URL
Each feature layer and table has an ID that uniquely identifies it within the feature service. To access a feature layer or table, append its ID to the service URL.
1
https://<host>/<uniqueID>/ArcGIS/rest/services/<serviceName>/FeatureServer/<Layer or Table ID>
For example:
1
https://services2.arcgis.com/ZQgQTuoyBrtmoGdP/arcgis/rest/services/Mobile_Data_Collection_WFL1/FeatureServer/0
Learn more about standard and enhanced endpoints in Service endpoints.
Name | Description | Examples |
---|---|---|
f | The format of the data returned. | f=json f=pjson f=geojson f=html |
token | An API key or OAuth 2.0 access token. Learn how to get an access token in Security and authentication. | token=< token=< |
Code examples
Get feature layer properties
Get the properties for the feature layer with ID 0 in this service as formatted JSON.
The service is shared with everyone, so no token
is required.
1
https://services2.arcgis.com/ZQgQTuoyBrtmoGdP/arcgis/rest/services/Mobile_Data_Collection_WFL1/FeatureServer/0?f=pjson
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
"supportedQueryFormats": "JSON, geoJSON, PBF",
"hasStaticData": false,
"maxRecordCount": 2000,
"standardMaxRecordCount": 32000,
"standardMaxRecordCountNoGeometry": 32000,
"tileMaxRecordCount": 8000,
"maxRecordCountFactor": 1,
"capabilities": "Create,Delete,Query,Update,Editing,Sync"
}
Query data
To access data in a feature service, you use the query
operation on a feature layer or table:
1
https://<host>/<uniqueID>/ArcGIS/rest/services/<serviceName>/FeatureServer/<Layer or Table ID>/query
Queries can include a SQL clause and/or a spatial query:
- Use SQL to specify which records to return based on their attribute values. For example, counties with a specific tax rate code, or trees that are a specific species. Use the
where
parameter to specify a SQL clause. - Use a spatial query to specify which features to return based on the relationship of a query geometry to their geometries. Spatial queries are only supported by feature layers. For example, roads that cross a water main, or mailboxes within 1000ft of your location.
- Use the
geometry
,geometry
,Type spatial
, andRel i
parameters to specify a query geometry.n S R - Use
geometry
,geometry
,Type distance
, andunits
to return features near a location.
- Use the
You can combine a spatial query with a SQL clause. For example, trees of a specific type within 200m of your home.
You can control various aspects of the data that is returned by the query, such as:
- Which attributes to return
- Whether to return geometries for features
- The detail included in returned geometries
- The spatial reference of returned geometries
Frequently used parameters are described below.
Required parameters
f
The format of the query response:
json
pjson
geojson
html
pbf
ArcGIS client APIs use json
(or pbf
when displaying content in a map view or scene view). Many open source APIs use geojson
.
To see which formats are supported for a particular feature layer, see the supports
property of the feature layer.
token
The access token used to access restricted operations or private content. The value can be an API Key or OAuth 2.0 token.
API keys are limited and do not provide access to restricted operations, but they can be used to access private content such as private feature layers, vector tile layers, image tile layers, web maps, and web scenes. API keys must be scoped to access specific content.
OAuth 2.0 tokens, however, can be used to access restricted operations and all private data types within the scope of the user's credentials.
Learn more about access tokens and authentication methods in Security and authentication.
SQL parameters
To query by attribute, you only need to provide a SQL clause.
where
The where
parameter is a SQL clause that defines which data to return based upon attribute values. To query based upon geometry, see the geometry
and spatial
parameters.
Learn more about the SQL-92 format here.
Spatial parameters
These parameters are often used when performing a spatial query.
geometry
The geometry
parameter is key to all spatial queries.
The query result will include features that relate to the geometry
parameter value according to a spatial relationship specified by the spatial
parameter.
geometry
can be specified in one of 3 formats:
- Simple point syntax:
geometry=<x>
,<y> - Simple envelope syntax:
geometry=<xmin>
,<ymin> ,<xmax> ,<ymax> - Full JSON syntax:
geometry={...}
To use the geometry
parameter, you must also provide a geometry
parameter. If you use the simple syntax for the geometry
, you should also specify the i
parameter.
geometry Type
When a geometry
parameter is provided, you must also specify the geometry
parameter. Valid values are:
esri
Geometry Point esri
Geometry Multipoint esri
Geometry Polyline esri
Geometry Polygon esri
Geometry Envelope
spatial Rel
spatial
defines how the query geometry
relates to features that should be returned in the query response.
Valid values are:
esri
(default)Spatial R e l Intersects esri
Spatial R e l Within esri
Spatial R e l Contains esri
Spatial R e l Crosses esri
Spatial R e l Overlaps esri
Spatial R e l Touches esri
Spatial R e l Envelope Intersects esri
Spatial R e l Index Intersects
For example, to query for all trees in a park, pass the park outline as the geometry
and use spatial
.
The most common spatial relationships typically used in a query are esri
, esri
, and esri
.
Learn more about spatial relationships here.
i n S R
This specifies the spatial reference of the geometry
parameter. You can specify a WKID, or full spatial reference JSON.
Common WKIDs are 4326
for GPS data (i
), and 3857
for Web Mercator data.
To learn more, see Spatial references.
distance
Buffer the geometry
parameter by an amount. The units of the amount are specified in the units
parameter.
distance
and units
parameters are useful to search near a point. Set the geometry
to a point, and specify the distance
and units
.
units
The units for the value provided in the distance
parameter. Valid values are:
esri
SRUnit_ Meter esri
SRUnit_ Statute Mile esri
SRUnit_ Foot esri
SRUnit_ Kilometer esri
SRUnit_ Nautical Mile esri
SRUnit_ USNautical Mile
Output parameters
These parameters are used to define and optimize the query response.
out S R
The spatial reference to use for feature geometries returned in the query response.
You can specify a WKID, or full spatial reference JSON.
If features are being accessed to display in a map or scene, out
typically matches the spatial reference of the map view or scene view. This avoids having to project features on the fly. Client APIs make use of out
to improve performance of mapping applications.
A common WKID is 3857
(out
), which is the spatial reference used by most basemap layers.
To learn more, see Spatial references.
out Fields
A list of field names that specifies the attributes to return with any records (for example, out
).
The more fields you request, the larger the attributes portion of the response JSON payload and the longer it could take to download. Only request the fields you need for display or analysis.
To return all fields, which can be useful during development and testing, use out
.
return Geometry
Whether to return geometries with feature results.
Geometries are returned by default when querying a feature layer. If features will not be displayed in a map or scene, you can pass return
to exclude geometries from the query response.
For other methods that reduce the payload size of geometries returned in a query response, see max
, geometry
, and quantization parameters in the REST API documentation.
order By Fields
Order the records that are included in the response by specifying which fields to sort by and a sort order for each field:
ASC
- ascending order (default)DESC
- descending
For example, order
.
Code examples
Get features with a SQL query
Get all trees in this feature layer listed as in the DOWNTOWN
neighborhood and which have a DBH (diameter at breast height) of less than 2ft. Return geometries in longitude,latitude coordinates, and order the results by DBH. Only return the Address
, Neighborhood
, and DBH
attributes.
1
https://services2.arcgis.com/ZQgQTuoyBrtmoGdP/ArcGIS/rest/services/Mobile_Data_Collection_WFL1/FeatureServer/0/query?where=Neighborhood='DOWNTOWN'+AND+DBH+<+2&outFields=Address,Neighborhood,DBH&returnGeometry=true&outSR=4326&orderByFields=DBH&f=json
To get the results as GeoJSON, replace the f=json
parameter above with f=geojson
.
1
https://services2.arcgis.com/ZQgQTuoyBrtmoGdP/ArcGIS/rest/services/Mobile_Data_Collection_WFL1/FeatureServer/0/query?where=Neighborhood='DOWNTOWN'+AND+DBH+<+2&outFields=Address,Neighborhood,DBH&returnGeometry=true&outSR=4326&orderByFields=DBH&f=geojson
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
{
"objectIdFieldName": "OBJECTID",
"uniqueIdField": {
"name": "OBJECTID",
"isSystemMaintained": true
},
"globalIdFieldName": "GlobalID",
"geometryType": "esriGeometryPoint",
"spatialReference": {
"wkid": 4326,
"latestWkid": 4326
},
"fields": [
{
"name": "Address",
"type": "esriFieldTypeString",
"alias": "Address",
"sqlType": "sqlTypeOther",
"length": 80,
"domain": null,
"defaultValue": null
},
{
"name": "Neighborhood",
"type": "esriFieldTypeString",
"alias": "Neighborhood",
"sqlType": "sqlTypeOther",
"length": 255,
"domain": null,
"defaultValue": null
},
{
"name": "DBH",
"type": "esriFieldTypeSingle",
"alias": "DBH",
"sqlType": "sqlTypeOther",
"domain": {
"type": "range",
"name": "DBH",
"range": [
0,
400
]
},
"defaultValue": null
}
],
"features": [
{
"attributes": {
"Address": "1717-1719 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 0
},
"geometry": {
"x": -122.68607078936842,
"y": 45.51281986694908
}
},
{
"attributes": {
"Address": "SW NAITO PKWY",
"Neighborhood": "DOWNTOWN",
"DBH": 0
},
"geometry": {
"x": -122.67484189772414,
"y": 45.51329175013581
}
},
{
"attributes": {
"Address": "1234 SW STARK ST",
"Neighborhood": "DOWNTOWN",
"DBH": 0
},
"geometry": {
"x": -122.68411243599779,
"y": 45.52258298063566
}
},
{
"attributes": {
"Address": "1136 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 0.3
},
"geometry": {
"x": -122.68833801946619,
"y": 45.512541094784126
}
},
{
"attributes": {
"Address": "564 SW STARK ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1
},
"geometry": {
"x": -122.67685306664353,
"y": 45.520825925132826
}
},
{
"attributes": {
"Address": "1717-1719 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1
},
"geometry": {
"x": -122.68603782209571,
"y": 45.512881110399334
}
},
{
"attributes": {
"Address": "0150 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1
},
"geometry": {
"x": -122.67571729339208,
"y": 45.50938803227702
}
},
{
"attributes": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1
},
"geometry": {
"x": -122.67704603285136,
"y": 45.51478882215225
}
},
{
"attributes": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1
},
"geometry": {
"x": -122.67660091403476,
"y": 45.51466898879057
}
},
{
"attributes": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.1
},
"geometry": {
"x": -122.67665569599582,
"y": 45.51468451915742
}
},
{
"attributes": {
"Address": "0150 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1.1
},
"geometry": {
"x": -122.6756206544305,
"y": 45.50954941522327
}
},
{
"attributes": {
"Address": "0150 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1.1
},
"geometry": {
"x": -122.67558019790324,
"y": 45.50963363314896
}
},
{
"attributes": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.1
},
"geometry": {
"x": -122.67694351261952,
"y": 45.51476169000945
}
},
{
"attributes": {
"Address": "0150 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1.1
},
"geometry": {
"x": -122.67584174868654,
"y": 45.509147917992074
}
},
{
"attributes": {
"Address": "0150 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1.1
},
"geometry": {
"x": -122.6757574624583,
"y": 45.5093096044325
}
},
{
"attributes": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.1
},
"geometry": {
"x": -122.6765311921924,
"y": 45.514650938636606
}
},
{
"attributes": {
"Address": "2020 SW 4TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.2
},
"geometry": {
"x": -122.68089559321989,
"y": 45.508427303324005
}
},
{
"attributes": {
"Address": "2020 SW 4TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.2
},
"geometry": {
"x": -122.68092483068745,
"y": 45.50837144581167
}
},
{
"attributes": {
"Address": "2020 SW 4TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.2
},
"geometry": {
"x": -122.68095406815497,
"y": 45.508315588873366
}
},
{
"attributes": {
"Address": "2020 SW 4TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.2
},
"geometry": {
"x": -122.68098213601608,
"y": 45.508261965505994
}
},
{
"attributes": {
"Address": "0150 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1.2
},
"geometry": {
"x": -122.67567087654301,
"y": 45.50946775621797
}
},
{
"attributes": {
"Address": "0150 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1.3
},
"geometry": {
"x": -122.67580095798611,
"y": 45.50922227297469
}
},
{
"attributes": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.4
},
"geometry": {
"x": -122.67706502503313,
"y": 45.51479366845764
}
},
{
"attributes": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.4
},
"geometry": {
"x": -122.67672252795802,
"y": 45.51470238801221
}
},
{
"attributes": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.4
},
"geometry": {
"x": -122.67701291196687,
"y": 45.514780167539534
}
},
{
"attributes": {
"Address": "601 SW OAK ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1.5
},
"geometry": {
"x": -122.6773669946142,
"y": 45.521867846290675
}
},
{
"attributes": {
"Address": "340 SW MORRISON ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1.5
},
"geometry": {
"x": -122.67611180651545,
"y": 45.517702559869065
}
},
{
"attributes": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.5
},
"geometry": {
"x": -122.67680047926679,
"y": 45.51472382534302
}
},
{
"attributes": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.5
},
"geometry": {
"x": -122.67678029052911,
"y": 45.51471832752698
}
},
{
"attributes": {
"Address": "SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.5
},
"geometry": {
"x": -122.6720406757838,
"y": 45.51954374291618
}
},
{
"attributes": {
"Address": "1700 SW 4TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.5
},
"geometry": {
"x": -122.67963852764224,
"y": 45.51103467134684
}
},
{
"attributes": {
"Address": "920 SW 6TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.6
},
"geometry": {
"x": -122.67933119152568,
"y": 45.51761571351487
}
},
{
"attributes": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.6
},
"geometry": {
"x": -122.67702876902831,
"y": 45.51478439948095
}
},
{
"attributes": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.6
},
"geometry": {
"x": -122.67682167052436,
"y": 45.51472874656132
}
},
{
"attributes": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.6
},
"geometry": {
"x": -122.67667523255656,
"y": 45.514689480035884
}
},
{
"attributes": {
"Address": "322 SW 11TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.6
},
"geometry": {
"x": -122.68191160846752,
"y": 45.52230906598874
}
},
{
"attributes": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.6
},
"geometry": {
"x": -122.67690692962789,
"y": 45.514752246663576
}
},
{
"attributes": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.6
},
"geometry": {
"x": -122.67658529412863,
"y": 45.514664976526724
}
},
{
"attributes": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.7
},
"geometry": {
"x": -122.67654722442526,
"y": 45.51465447753748
}
},
{
"attributes": {
"Address": "1914 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.7
},
"geometry": {
"x": -122.68450675418667,
"y": 45.51056857214466
}
},
{
"attributes": {
"Address": "2075 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.7
},
"geometry": {
"x": -122.67874005425458,
"y": 45.50870188864837
}
},
{
"attributes": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.7
},
"geometry": {
"x": -122.67685727794559,
"y": 45.51473826922472
}
},
{
"attributes": {
"Address": "2145 SW NAITO PKWY",
"Neighborhood": "DOWNTOWN",
"DBH": 1.7
},
"geometry": {
"x": -122.67762430175596,
"y": 45.507544397235044
}
},
{
"attributes": {
"Address": "2112 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.7
},
"geometry": {
"x": -122.67812433458585,
"y": 45.50782983338333
}
},
{
"attributes": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.7
},
"geometry": {
"x": -122.67692595774231,
"y": 45.51475732587716
}
},
{
"attributes": {
"Address": "0150 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1.7
},
"geometry": {
"x": -122.67588298315476,
"y": 45.50906879165747
}
},
{
"attributes": {
"Address": "1525 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.75
},
"geometry": {
"x": -122.68499854766881,
"y": 45.51399057347318
}
},
{
"attributes": {
"Address": "1037 SW BROADWAY",
"Neighborhood": "DOWNTOWN",
"DBH": 1.8
},
"geometry": {
"x": -122.68162124691648,
"y": 45.516890018719536
}
},
{
"attributes": {
"Address": "2112 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.8
},
"geometry": {
"x": -122.67839205949,
"y": 45.507831892011836
}
},
{
"attributes": {
"Address": "2112 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.8
},
"geometry": {
"x": -122.67825711007633,
"y": 45.50783121587518
}
},
{
"attributes": {
"Address": "315 SW YAMHILL ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1.8
},
"geometry": {
"x": -122.67672344603625,
"y": 45.518027720457496
}
},
{
"attributes": {
"Address": "2075 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.8
},
"geometry": {
"x": -122.67883416266211,
"y": 45.50823813407091
}
},
{
"attributes": {
"Address": "601 SW OAK ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1.8
},
"geometry": {
"x": -122.6775309218822,
"y": 45.52191052226131
}
},
{
"attributes": {
"Address": "2300-2324 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.8
},
"geometry": {
"x": -122.67857240706306,
"y": 45.50595790224385
}
},
{
"attributes": {
"Address": "1881 SW NAITO PKWY",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
},
"geometry": {
"x": -122.67729490211764,
"y": 45.50911235931466
}
},
{
"attributes": {
"Address": "1881 SW NAITO PKWY",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
},
"geometry": {
"x": -122.6771796087409,
"y": 45.50933431424195
}
},
{
"attributes": {
"Address": "2040 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
},
"geometry": {
"x": -122.67785991458365,
"y": 45.50807834200766
}
},
{
"attributes": {
"Address": "2040 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
},
"geometry": {
"x": -122.67774372828143,
"y": 45.50807973078868
}
},
{
"attributes": {
"Address": "323-333 SW 5TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
},
"geometry": {
"x": -122.67688777395286,
"y": 45.52096787142003
}
},
{
"attributes": {
"Address": "330 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
},
"geometry": {
"x": -122.6810117516743,
"y": 45.52266244042511
}
},
{
"attributes": {
"Address": "2040 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
},
"geometry": {
"x": -122.67838170730471,
"y": 45.50805203385528
}
},
{
"attributes": {
"Address": "2040 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
},
"geometry": {
"x": -122.67825830034414,
"y": 45.508061701814675
}
},
{
"attributes": {
"Address": "2040 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
},
"geometry": {
"x": -122.67812244812374,
"y": 45.50806206002708
}
},
{
"attributes": {
"Address": "2040 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
},
"geometry": {
"x": -122.67797730193338,
"y": 45.50806914621159
}
},
{
"attributes": {
"Address": " ",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
},
"geometry": {
"x": -122.68457968301472,
"y": 45.51616090668661
}
},
{
"attributes": {
"Address": "2075 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
},
"geometry": {
"x": -122.67881871343583,
"y": 45.50839447137445
}
},
{
"attributes": {
"Address": "550 SW COLLEGE ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
},
"geometry": {
"x": -122.68330568509224,
"y": 45.50959243481735
}
},
{
"attributes": {
"Address": "2112 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
},
"geometry": {
"x": -122.67798938517215,
"y": 45.507829156617085
}
},
{
"attributes": {
"Address": "2112 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
},
"geometry": {
"x": -122.67786890132967,
"y": 45.50782841752555
}
},
{
"attributes": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
},
"geometry": {
"x": -122.67669950952713,
"y": 45.51469589562652
}
}
]
}
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
{
"type": "FeatureCollection",
"crs": {
"type": "name",
"properties": {
"name": "EPSG:4326"
}
},
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.686070789368,
45.5128198669491
]
},
"properties": {
"Address": "1717-1719 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 0
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.674841897724,
45.5132917501358
]
},
"properties": {
"Address": "SW NAITO PKWY",
"Neighborhood": "DOWNTOWN",
"DBH": 0
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.684112435998,
45.5225829806357
]
},
"properties": {
"Address": "1234 SW STARK ST",
"Neighborhood": "DOWNTOWN",
"DBH": 0
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.688338019466,
45.5125410947841
]
},
"properties": {
"Address": "1136 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 0.3
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.676853066644,
45.5208259251328
]
},
"properties": {
"Address": "564 SW STARK ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.686037822096,
45.5128811103993
]
},
"properties": {
"Address": "1717-1719 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.675717293392,
45.509388032277
]
},
"properties": {
"Address": "0150 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.677046032851,
45.5147888221522
]
},
"properties": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.676600914035,
45.5146689887906
]
},
"properties": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.676655695996,
45.5146845191574
]
},
"properties": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.1
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.675620654431,
45.5095494152233
]
},
"properties": {
"Address": "0150 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1.1
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.675580197903,
45.509633633149
]
},
"properties": {
"Address": "0150 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1.1
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.67694351262,
45.5147616900095
]
},
"properties": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.1
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.675841748687,
45.5091479179921
]
},
"properties": {
"Address": "0150 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1.1
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.675757462458,
45.5093096044325
]
},
"properties": {
"Address": "0150 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1.1
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.676531192192,
45.5146509386366
]
},
"properties": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.1
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.68089559322,
45.508427303324
]
},
"properties": {
"Address": "2020 SW 4TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.2
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.680924830687,
45.5083714458117
]
},
"properties": {
"Address": "2020 SW 4TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.2
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.680954068155,
45.5083155888734
]
},
"properties": {
"Address": "2020 SW 4TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.2
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.680982136016,
45.508261965506
]
},
"properties": {
"Address": "2020 SW 4TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.2
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.675670876543,
45.509467756218
]
},
"properties": {
"Address": "0150 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1.2
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.675800957986,
45.5092222729747
]
},
"properties": {
"Address": "0150 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1.3
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.677065025033,
45.5147936684576
]
},
"properties": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.4
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.676722527958,
45.5147023880122
]
},
"properties": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.4
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.677012911967,
45.5147801675395
]
},
"properties": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.4
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.677366994614,
45.5218678462907
]
},
"properties": {
"Address": "601 SW OAK ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1.5
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.676111806515,
45.5177025598691
]
},
"properties": {
"Address": "340 SW MORRISON ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1.5
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.676800479267,
45.514723825343
]
},
"properties": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.5
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.676780290529,
45.514718327527
]
},
"properties": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.5
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.672040675784,
45.5195437429162
]
},
"properties": {
"Address": "SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.5
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.679638527642,
45.5110346713468
]
},
"properties": {
"Address": "1700 SW 4TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.5
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.679331191526,
45.5176157135149
]
},
"properties": {
"Address": "920 SW 6TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.6
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.677028769028,
45.514784399481
]
},
"properties": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.6
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.676821670524,
45.5147287465613
]
},
"properties": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.6
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.676675232557,
45.5146894800359
]
},
"properties": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.6
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.681911608468,
45.5223090659887
]
},
"properties": {
"Address": "322 SW 11TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.6
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.676906929628,
45.5147522466636
]
},
"properties": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.6
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.676585294129,
45.5146649765267
]
},
"properties": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.6
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.676547224425,
45.5146544775375
]
},
"properties": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.7
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.684506754187,
45.5105685721447
]
},
"properties": {
"Address": "1914 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.7
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.678740054255,
45.5087018886484
]
},
"properties": {
"Address": "2075 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.7
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.676857277946,
45.5147382692247
]
},
"properties": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.7
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.677624301756,
45.507544397235
]
},
"properties": {
"Address": "2145 SW NAITO PKWY",
"Neighborhood": "DOWNTOWN",
"DBH": 1.7
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.678124334586,
45.5078298333833
]
},
"properties": {
"Address": "2112 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.7
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.676925957742,
45.5147573258772
]
},
"properties": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.7
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.675882983155,
45.5090687916575
]
},
"properties": {
"Address": "0150 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1.7
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.684998547669,
45.5139905734732
]
},
"properties": {
"Address": "1525 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.75
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.681621246916,
45.5168900187195
]
},
"properties": {
"Address": "1037 SW BROADWAY",
"Neighborhood": "DOWNTOWN",
"DBH": 1.8
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.67839205949,
45.5078318920118
]
},
"properties": {
"Address": "2112 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.8
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.678257110076,
45.5078312158752
]
},
"properties": {
"Address": "2112 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.8
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.676723446036,
45.5180277204575
]
},
"properties": {
"Address": "315 SW YAMHILL ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1.8
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.678834162662,
45.5082381340709
]
},
"properties": {
"Address": "2075 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.8
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.677530921882,
45.5219105222613
]
},
"properties": {
"Address": "601 SW OAK ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1.8
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.678572407063,
45.5059579022439
]
},
"properties": {
"Address": "2300-2324 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.8
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.677294902118,
45.5091123593147
]
},
"properties": {
"Address": "1881 SW NAITO PKWY",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.677179608741,
45.5093343142419
]
},
"properties": {
"Address": "1881 SW NAITO PKWY",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.677859914584,
45.5080783420077
]
},
"properties": {
"Address": "2040 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.677743728281,
45.5080797307887
]
},
"properties": {
"Address": "2040 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.676887773953,
45.52096787142
]
},
"properties": {
"Address": "323-333 SW 5TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.681011751674,
45.5226624404251
]
},
"properties": {
"Address": "330 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.678381707305,
45.5080520338553
]
},
"properties": {
"Address": "2040 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.678258300344,
45.5080617018147
]
},
"properties": {
"Address": "2040 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.678122448124,
45.5080620600271
]
},
"properties": {
"Address": "2040 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.677977301933,
45.5080691462116
]
},
"properties": {
"Address": "2040 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.684579683015,
45.5161609066866
]
},
"properties": {
"Address": " ",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.678818713436,
45.5083944713745
]
},
"properties": {
"Address": "2075 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.683305685092,
45.5095924348174
]
},
"properties": {
"Address": "550 SW COLLEGE ST",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.677989385172,
45.5078291566171
]
},
"properties": {
"Address": "2112 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.67786890133,
45.5078284175256
]
},
"properties": {
"Address": "2112 SW 1ST AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.676699509527,
45.5146958956265
]
},
"properties": {
"Address": "1220 SW 3RD AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.9
}
}
]
}
Get features with a spatial query
Get all trees in this feature layer that are within 200m of 45.512 latitude, -122.686 longitude. Return coordinates as latitude and longitude.
1
https://services2.arcgis.com/ZQgQTuoyBrtmoGdP/ArcGIS/rest/services/Mobile_Data_Collection_WFL1/FeatureServer/0/query?geometry=-122.686,45.512&geometryType=esriGeometryPoint&inSR=4326&distance=200&units=esriSRUnit_Meter&outFields=ADDRESS,Neighborhood,DBH&returnGeometry=true&outSR=4326&orderByFields=DBH&f=json
To get the results as GeoJSON, replace the f=json
parameter above with f=geojson
.
1
https://services2.arcgis.com/ZQgQTuoyBrtmoGdP/ArcGIS/rest/services/Mobile_Data_Collection_WFL1/FeatureServer/0/query?geometry=-122.686,45.512&geometryType=esriGeometryPoint&inSR=4326&distance=200&units=esriSRUnit_Meter&outFields=ADDRESS,Neighborhood,DBH&returnGeometry=true&outSR=4326&orderByFields=DBH&f=geojson
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
{
"objectIdFieldName": "OBJECTID",
"uniqueIdField": {
"name": "OBJECTID",
"isSystemMaintained": true
},
"globalIdFieldName": "GlobalID",
"geometryType": "esriGeometryPoint",
"spatialReference": {
"wkid": 4326,
"latestWkid": 4326
},
"fields": [
{
"name": "Address",
"type": "esriFieldTypeString",
"alias": "Address",
"sqlType": "sqlTypeOther",
"length": 80,
"domain": null,
"defaultValue": null
},
{
"name": "Neighborhood",
"type": "esriFieldTypeString",
"alias": "Neighborhood",
"sqlType": "sqlTypeOther",
"length": 255,
"domain": null,
"defaultValue": null
},
{
"name": "DBH",
"type": "esriFieldTypeSingle",
"alias": "DBH",
"sqlType": "sqlTypeOther",
"domain": {
"type": "range",
"name": "DBH",
"range": [
0,
400
]
},
"defaultValue": null
}
],
"features": [
{
"attributes": {
"Address": "1717-1719 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 0
},
"geometry": {
"x": -122.68607078936842,
"y": 45.51281986694908
}
},
{
"attributes": {
"Address": "1136 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 0.3
},
"geometry": {
"x": -122.68833801946619,
"y": 45.512541094784126
}
},
{
"attributes": {
"Address": "1717-1719 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1
},
"geometry": {
"x": -122.68603782209571,
"y": 45.512881110399334
}
},
{
"attributes": {
"Address": "1914 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 1.7
},
"geometry": {
"x": -122.68450675418667,
"y": 45.51056857214466
}
},
{
"attributes": {
"Address": "1075 SW HARRISON ST",
"Neighborhood": "DOWNTOWN",
"DBH": 2.3
},
"geometry": {
"x": -122.68664579289693,
"y": 45.51197968367806
}
},
{
"attributes": {
"Address": "1802 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 2.4
},
"geometry": {
"x": -122.68609199679547,
"y": 45.512500377628406
}
},
{
"attributes": {
"Address": "1136 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 2.5
},
"geometry": {
"x": -122.68830424191313,
"y": 45.51262160490622
}
},
{
"attributes": {
"Address": "1802 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 2.6
},
"geometry": {
"x": -122.6861543838937,
"y": 45.512361053247716
}
},
{
"attributes": {
"Address": "1717-1719 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 2.7
},
"geometry": {
"x": -122.68588098792522,
"y": 45.51315394037969
}
},
{
"attributes": {
"Address": "1717-1719 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 2.8
},
"geometry": {
"x": -122.6858008950328,
"y": 45.51331838128482
}
},
{
"attributes": {
"Address": "1872 SW BROADWAY",
"Neighborhood": "DOWNTOWN",
"DBH": 2.8
},
"geometry": {
"x": -122.68378708057496,
"y": 45.511246897774775
}
},
{
"attributes": {
"Address": "1075 SW HARRISON ST",
"Neighborhood": "DOWNTOWN",
"DBH": 3.7
},
"geometry": {
"x": -122.68656803742087,
"y": 45.511807777963284
}
},
{
"attributes": {
"Address": "1717 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 3.7
},
"geometry": {
"x": -122.68493661242323,
"y": 45.51289032555317
}
},
{
"attributes": {
"Address": "1717 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 3.7
},
"geometry": {
"x": -122.68489713775469,
"y": 45.51296490850415
}
},
{
"attributes": {
"Address": "1875 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 3.8
},
"geometry": {
"x": -122.68643111890023,
"y": 45.51182372081606
}
},
{
"attributes": {
"Address": "1875 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 3.8
},
"geometry": {
"x": -122.68612465235272,
"y": 45.511232348497984
}
},
{
"attributes": {
"Address": "1875 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 3.9
},
"geometry": {
"x": -122.68638099111064,
"y": 45.511929468788956
}
},
{
"attributes": {
"Address": "1875 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 3.9
},
"geometry": {
"x": -122.6864059633773,
"y": 45.51187421467017
}
},
{
"attributes": {
"Address": "1875 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 3.9
},
"geometry": {
"x": -122.6860297121053,
"y": 45.5112079567956
}
},
{
"attributes": {
"Address": "1875 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 4
},
"geometry": {
"x": -122.68622906174161,
"y": 45.51126072814559
}
},
{
"attributes": {
"Address": "1875 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 4
},
"geometry": {
"x": -122.68606994315533,
"y": 45.51121909978932
}
},
{
"attributes": {
"Address": "1717 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 4.2
},
"geometry": {
"x": -122.68586720327718,
"y": 45.512688758277264
}
},
{
"attributes": {
"Address": "1875 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 4.2
},
"geometry": {
"x": -122.68598771945904,
"y": 45.51119506123777
}
},
{
"attributes": {
"Address": "1075 SW HARRISON ST",
"Neighborhood": "DOWNTOWN",
"DBH": 4.4
},
"geometry": {
"x": -122.68673471982167,
"y": 45.51200180757502
}
},
{
"attributes": {
"Address": "1717-1719 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 4.4
},
"geometry": {
"x": -122.68600247159272,
"y": 45.51293290446657
}
},
{
"attributes": {
"Address": "1875 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 4.5
},
"geometry": {
"x": -122.68617087606398,
"y": 45.51124516347001
}
},
{
"attributes": {
"Address": "1717-1719 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 5.2
},
"geometry": {
"x": -122.68598102970518,
"y": 45.51296796846716
}
},
{
"attributes": {
"Address": "1802 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 5.5
},
"geometry": {
"x": -122.68565221666677,
"y": 45.51251589033826
}
},
{
"attributes": {
"Address": "1075 SW HARRISON ST",
"Neighborhood": "DOWNTOWN",
"DBH": 5.8
},
"geometry": {
"x": -122.68669601231454,
"y": 45.51157717768455
}
},
{
"attributes": {
"Address": "1075 SW HARRISON ST",
"Neighborhood": "DOWNTOWN",
"DBH": 6
},
"geometry": {
"x": -122.6867255579041,
"y": 45.51151754939359
}
},
{
"attributes": {
"Address": "1802 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 6.4
},
"geometry": {
"x": -122.68578249663744,
"y": 45.51255628140315
}
},
{
"attributes": {
"Address": "1875 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 6.6
},
"geometry": {
"x": -122.68574130798336,
"y": 45.51176777917288
}
},
{
"attributes": {
"Address": "1875 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 6.9
},
"geometry": {
"x": -122.68579958528906,
"y": 45.51178572386506
}
},
{
"attributes": {
"Address": "1875 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 7
},
"geometry": {
"x": -122.68585777186497,
"y": 45.51180128839119
}
},
{
"attributes": {
"Address": "1803 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 7.1
},
"geometry": {
"x": -122.68544003549498,
"y": 45.512459908465566
}
},
{
"attributes": {
"Address": "1717-1719 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 7.1
},
"geometry": {
"x": -122.68582200005203,
"y": 45.51327691119329
}
},
{
"attributes": {
"Address": "1803 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 7.5
},
"geometry": {
"x": -122.68554947455102,
"y": 45.512486883084634
}
},
{
"attributes": {
"Address": "1136 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 7.5
},
"geometry": {
"x": -122.68826042658519,
"y": 45.512721841408485
}
},
{
"attributes": {
"Address": "1875 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 7.6
},
"geometry": {
"x": -122.68591595844082,
"y": 45.511816852912965
}
},
{
"attributes": {
"Address": "1717 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 7.7
},
"geometry": {
"x": -122.6857599444323,
"y": 45.51265718088086
}
},
{
"attributes": {
"Address": "1717-1719 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 7.8
},
"geometry": {
"x": -122.68593494343608,
"y": 45.51305499069817
}
},
{
"attributes": {
"Address": "1136 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 8
},
"geometry": {
"x": -122.6882116031494,
"y": 45.51281778395288
}
},
{
"attributes": {
"Address": "1136 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 8
},
"geometry": {
"x": -122.68817519263438,
"y": 45.51288650578748
}
},
{
"attributes": {
"Address": "1875 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 8.4
},
"geometry": {
"x": -122.68568312140748,
"y": 45.51175221400791
}
},
{
"attributes": {
"Address": "1136 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 8.5
},
"geometry": {
"x": -122.68812709413915,
"y": 45.51298667698032
}
},
{
"attributes": {
"Address": "1875 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 8.7
},
"geometry": {
"x": -122.68562502735804,
"y": 45.51173902963127
}
},
{
"attributes": {
"Address": "1075 SW HARRISON ST",
"Neighborhood": "DOWNTOWN",
"DBH": 9.1
},
"geometry": {
"x": -122.68665614598045,
"y": 45.51164152721729
}
},
{
"attributes": {
"Address": "1802 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 9.5
},
"geometry": {
"x": -122.68583729836135,
"y": 45.512571910554286
}
},
{
"attributes": {
"Address": "1075 SW HARRISON ST",
"Neighborhood": "DOWNTOWN",
"DBH": 10
},
"geometry": {
"x": -122.68661917222174,
"y": 45.51171939721738
}
},
{
"attributes": {
"Address": "1721 SW BROADWAY",
"Neighborhood": "DOWNTOWN",
"DBH": 10.3
},
"geometry": {
"x": -122.68360640242193,
"y": 45.51224041273269
}
},
{
"attributes": {
"Address": "1717 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 10.4
},
"geometry": {
"x": -122.68555568280807,
"y": 45.5126041817038
}
},
{
"attributes": {
"Address": "1075 SW HARRISON ST",
"Neighborhood": "DOWNTOWN",
"DBH": 11.4
},
"geometry": {
"x": -122.68676276971657,
"y": 45.51144586719298
}
},
{
"attributes": {
"Address": "1802 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 11.6
},
"geometry": {
"x": -122.68589548583559,
"y": 45.51258747549265
}
},
{
"attributes": {
"Address": "1802 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 11.6
},
"geometry": {
"x": -122.68597416657641,
"y": 45.5126074129095
}
},
{
"attributes": {
"Address": "1855 SW BROADWAY",
"Neighborhood": "DOWNTOWN",
"DBH": 12
},
"geometry": {
"x": -122.68432483905347,
"y": 45.51090921408401
}
},
{
"attributes": {
"Address": "1802 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 12.7
},
"geometry": {
"x": -122.68571735620297,
"y": 45.51253608587423
}
},
{
"attributes": {
"Address": "1802 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 12.9
},
"geometry": {
"x": -122.68606312314562,
"y": 45.511987914436034
}
},
{
"attributes": {
"Address": "1825 SW BROADWAY",
"Neighborhood": "DOWNTOWN",
"DBH": 13
},
"geometry": {
"x": -122.68390253834342,
"y": 45.51169605007783
}
},
{
"attributes": {
"Address": "1633 WI/ SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 13.1
},
"geometry": {
"x": -122.68474376569124,
"y": 45.513248861785165
}
},
{
"attributes": {
"Address": "1802 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 13.4
},
"geometry": {
"x": -122.6859759811732,
"y": 45.511968137952756
}
},
{
"attributes": {
"Address": "1875 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 14
},
"geometry": {
"x": -122.68656213998094,
"y": 45.511584250836336
}
},
{
"attributes": {
"Address": "1875 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 14
},
"geometry": {
"x": -122.68660392691312,
"y": 45.5115081948936
}
},
{
"attributes": {
"Address": "1633 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 14.3
},
"geometry": {
"x": -122.68468512456779,
"y": 45.51335357975569
}
},
{
"attributes": {
"Address": "631 WI/ SW HARRISON ST",
"Neighborhood": "DOWNTOWN",
"DBH": 14.3
},
"geometry": {
"x": -122.68362775447784,
"y": 45.51175422716818
}
},
{
"attributes": {
"Address": "1025 WI/ SW MILL ST",
"Neighborhood": "DOWNTOWN",
"DBH": 14.4
},
"geometry": {
"x": -122.6865563368642,
"y": 45.513755682135326
}
},
{
"attributes": {
"Address": "1825 SW BROADWAY",
"Neighborhood": "DOWNTOWN",
"DBH": 14.6
},
"geometry": {
"x": -122.68384171970385,
"y": 45.5118058101293
}
},
{
"attributes": {
"Address": "1831 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 14.7
},
"geometry": {
"x": -122.68576642667526,
"y": 45.51189233873714
}
},
{
"attributes": {
"Address": "1802 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 14.8
},
"geometry": {
"x": -122.68621860714833,
"y": 45.51202306274925
}
},
{
"attributes": {
"Address": "1025 WI/ SW MILL ST",
"Neighborhood": "DOWNTOWN",
"DBH": 14.9
},
"geometry": {
"x": -122.68658517997146,
"y": 45.513696182678935
}
},
{
"attributes": {
"Address": "1831 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 15.1
},
"geometry": {
"x": -122.6858331670094,
"y": 45.51191012223644
}
},
{
"attributes": {
"Address": "1831 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 15.3
},
"geometry": {
"x": -122.68560879300422,
"y": 45.51184532291483
}
},
{
"attributes": {
"Address": "1721 SW BROADWAY",
"Neighborhood": "DOWNTOWN",
"DBH": 15.5
},
"geometry": {
"x": -122.68353800739105,
"y": 45.51236460740041
}
},
{
"attributes": {
"Address": "1875 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 15.6
},
"geometry": {
"x": -122.68652855017586,
"y": 45.511644431763955
}
},
{
"attributes": {
"Address": "1025 SW MILL ST",
"Neighborhood": "DOWNTOWN",
"DBH": 15.6
},
"geometry": {
"x": -122.68565101651754,
"y": 45.51371180710714
}
},
{
"attributes": {
"Address": "1831 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 15.8
},
"geometry": {
"x": -122.68568079387252,
"y": 45.51186776980058
}
},
{
"attributes": {
"Address": "1802 SW 10TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 16.1
},
"geometry": {
"x": -122.6861469718943,
"y": 45.512010135902905
}
},
{
"attributes": {
"Address": "1875 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 16.3
},
"geometry": {
"x": -122.68664198044682,
"y": 45.51144078327412
}
},
{
"attributes": {
"Address": "1855 SW BROADWAY",
"Neighborhood": "DOWNTOWN",
"DBH": 17.3
},
"geometry": {
"x": -122.68417471799316,
"y": 45.511189533489926
}
},
{
"attributes": {
"Address": "1633 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 17.5
},
"geometry": {
"x": -122.68464789119595,
"y": 45.51344240990704
}
},
{
"attributes": {
"Address": "1825 SW BROADWAY",
"Neighborhood": "DOWNTOWN",
"DBH": 18.2
},
"geometry": {
"x": -122.68396655857879,
"y": 45.51158146526354
}
},
{
"attributes": {
"Address": "631 SW HARRISON ST",
"Neighborhood": "DOWNTOWN",
"DBH": 18.7
},
"geometry": {
"x": -122.68376191157734,
"y": 45.51150477225424
}
},
{
"attributes": {
"Address": "1717 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 19.2
},
"geometry": {
"x": -122.68511857067561,
"y": 45.51255700343627
}
},
{
"attributes": {
"Address": "1717 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 19.4
},
"geometry": {
"x": -122.6859138950106,
"y": 45.512801713594534
}
},
{
"attributes": {
"Address": "1855 SW BROADWAY",
"Neighborhood": "DOWNTOWN",
"DBH": 20
},
"geometry": {
"x": -122.68422782369774,
"y": 45.51109063701077
}
},
{
"attributes": {
"Address": "631 SW HARRISON ST",
"Neighborhood": "DOWNTOWN",
"DBH": 20
},
"geometry": {
"x": -122.68380650754132,
"y": 45.511431282714966
}
},
{
"attributes": {
"Address": "631 WI/ SW HARRISON ST",
"Neighborhood": "DOWNTOWN",
"DBH": 20
},
"geometry": {
"x": -122.68356455170931,
"y": 45.51187487250251
}
},
{
"attributes": {
"Address": "631 WI/ SW HARRISON ST",
"Neighborhood": "DOWNTOWN",
"DBH": 21.3
},
"geometry": {
"x": -122.6836996161073,
"y": 45.51163070283802
}
},
{
"attributes": {
"Address": "633 SW MONTGOMERY ST",
"Neighborhood": "DOWNTOWN",
"DBH": 22.1
},
"geometry": {
"x": -122.68344864837647,
"y": 45.51208846178205
}
},
{
"attributes": {
"Address": "1717 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 22.2
},
"geometry": {
"x": -122.68533670408448,
"y": 45.512547614486735
}
},
{
"attributes": {
"Address": "1855 SW BROADWAY",
"Neighborhood": "DOWNTOWN",
"DBH": 22.6
},
"geometry": {
"x": -122.68427185372308,
"y": 45.5110112049451
}
},
{
"attributes": {
"Address": "1855 SW BROADWAY",
"Neighborhood": "DOWNTOWN",
"DBH": 22.8
},
"geometry": {
"x": -122.6843816763598,
"y": 45.51081048519321
}
},
{
"attributes": {
"Address": "1721 SW BROADWAY",
"Neighborhood": "DOWNTOWN",
"DBH": 24.1
},
"geometry": {
"x": -122.68365514590751,
"y": 45.51215136476519
}
},
{
"attributes": {
"Address": "1872 SW BROADWAY",
"Neighborhood": "DOWNTOWN",
"DBH": 24.3
},
"geometry": {
"x": -122.68397252968057,
"y": 45.51115947993219
}
},
{
"attributes": {
"Address": "1717 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 24.5
},
"geometry": {
"x": -122.68524082419918,
"y": 45.512520858332486
}
},
{
"attributes": {
"Address": "1717 SW PARK AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 24.7
},
"geometry": {
"x": -122.6850855000967,
"y": 45.512621937280336
}
},
{
"attributes": {
"Address": "1824 SW 11TH AVE",
"Neighborhood": "DOWNTOWN",
"DBH": 25
},
"geometry": {
"x": -122.68647043995672,
"y": 45.51227310898486
}
},
{
"attributes": {
"Address": "1855 SW BROADWAY",
"Neighborhood": "DOWNTOWN",
"DBH": 25.4
},
"geometry": {