This section describes how this API works. You may want to try it out with a Free Trial Account.
- HTTP Request
- URL Composition
- Base URL: https://api.cloud.precisely.com
- Travel Boundary API : /v1/isochrone/location
- Supported Methods: GET only
- Rate Limit (Transactions per second): 100
-
Authentication and Input Fields: Data Integrity Suite's APIs provide multiple authentication methods. Whether you want to pass the API Key and Secret directly as part of the Basic Authentication header or use bearer tokens, you can do either using the same header. The two ways of authentication are:
- Basic Authentication (Using API Key and secret)
- Bearer Token Authentication
For more information about authentication, see How to Authenticate and follow the instructions.
- URL Composition
- Response
- Content-type: application/json
Query Parameters
This API takes these query parameters.
| Parameter | Type | Required | Description |
|---|---|---|---|
| coordOrder | String | No | Specifies the coordinate order used in the
request. Use If not specified the
coordinates are expected to be in the in
latitude, longitude
( This
parameter applies to the
|
| address | String | No | The address of the location which acts as the
starting point for which the isochrone lines
need to be determined. Example: POINT REYES STATION CA |
| country | String | No | Country name used only when the starting
location is provided as an address. Example: USA |
| coordinates | String | No | The coordinates of the location which acts as
the starting point for which the isochrone lines
need to be determined. Example: coordinates=1.29363713,103.8383112 |
| contours_minutes | String | No | The time, in minutes, for which an isochrone
contour needs to be determined. You can request
up to 5 time-based contours in a single request
using a comma (,) as a separator. Note: When
requesting multiple isochrones, the times
must be provided in an increasing
order.
The maximum time that can be specified is 180 minutes. This
parameter is mandatory when
Example: contours_minutes=15,25 |
| contours_meters | String | No | The distance, in meters, for which an
isochrone contour needs to be determined. You
can request up to 5 distance based contours in a
single request using a comma (,) as a separator.
Note: When requesting multiple isochrones,
the distances must be provided in an
increasing order.
The maximum distance that can be specified is 200,000 meters (200 km). This parameter is
mandatory when
Example: contours_meters=2500,3000 |
| mode | String | No | Set which driving mode the service should use
to determine the contour. For example, if you
use Default: car Allowed Values: car, truck, motorcycle, bike, walk Example: mode=car |
| contours_colors | String | No | The hex code of the color to fill isochrone
contour. When requesting multiple contours, it
is recommended to provide color codes for each
of the requested contours, separated by a comma
(,). If no colors are specified, the API will
assign a random color scheme to the output.
Format: value_1,value_2 Example: contours_colors=ff0000,bf4040 |
| polygons | Boolean | No | When true the contour is
returned as a GeoJSON polygon. The contour is
returned as a linestring when this parameter is
false. |
| denoise | Number | No | A floating point value from 0.0 to 1.0 that
can be used to remove smaller contours. A value
of 1.0 will only return the largest contour for
a given value. A value of 0.5 drops any contours
that are less than half the area of the largest
contour in the set of contours for that same
value. Maximum: 1 Default: 1 Example: denoise=0.5 |
| generalize | Number | No | A positive floating point value, in meters,
used as the tolerance for Douglas-Peucker
generalization. There is no upper
bound. As the generalization value goes higher,
more and more straight lines form the resulting
contour because of higher approximation of
actual contour boundary. If no value is specified in the request, the API will choose the most optimized generalization to use for the request. Note:
Example: generalize=110.3 |
| departure_time | Integer | No | Use this parameter to set a departure time,
expressed as UNIX epoch timestamp in seconds,
for calculating the isochrone contour. The
response will consider the typical traffic
conditions at the given time and return a
contour which can be reached under those traffic
conditions.
Note: The timestamp must be supplied in the
API as a UTC time (Universal Time
Coordinated) and will be converted to the
time zone of input co-ordinates being sent
in origins. Use an UNIX
timestamp converter to convert
values to and from UNIX timestamps.
Example: departure_time=1759154400 translates to Monday, September 29, 2025 14:00:00 UTC. If the origin coordinate sent in the request is for Kansas USA, the local time used by the API will be Monday, 29 September 2025 09:00:00 since Kansas is 5 hours behind UTC. If the requested origin is for Athens in Greece, then the local time used by the API will be Monday, 29 September 2025 16:00:00 since Greece is 2 hours ahead of UTC. Note: The
departure_time and local_departure_time
parameters are mutually exclusive. You must use either
departure_time or local_departure_time. If neither parameter is specified, then the traffic conditions at the UTC time of making the request are considered. |
| local_departure_time | String | No | Use this parameter to set a departure time,
expressed as string representing the weekday and
hour of the local time at the departure point.
The response considers the typical traffic
conditions at the given weekday and hour and
returns a contour which can be reached under
those traffic conditions.
Example:
departure_time = Monday
9:00 translates to Monday at
9am local time for all departure points. If
the origin coordinate sent in the request is
for New York USA, the local time used by the
API will be 9am. If the requested origin is
for Athens in Greece, then the local time
used by the API will still be Monday 9am.
The following requests return the same
isochrone for New York at 9 am local time:
Note:
|
origin and
destination, or address
and country.Examples
Request
https://api.cloud.precisely.com/v1/isochrone/location?coordinates=40, -74&contours_minutes=1&polygons=true&coordOrder=LonLat https://api.cloud.precisely.com/v1/isochrone/location?country=USA&contours_minutes=5&address=675 S Broadway Suite 600, Denver, CO 80209, United States&polygons=trueResponse
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"fill": "#bf4040",
"fillOpacity": 0.33,
"fillColor": "#bf4040",
"color": "#bf4040",
"contour": 1.0,
"opacity": 0.33,
"metric": "time"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-74,
40.0005
],
[
-74.0005,
40
],
[
-74,
39.9995
],
[
-73.9995,
40
],
[
-74,
40.0005
]
]
],
"polygonCoordinates": [
[
[
-74,
40.0005
],
[
-74.0005,
40
],
[
-74,
39.9995
],
[
-73.9995,
40
],
[
-74,
40.0005
]
]
],
"lineCoordinates": null
}
}
],
"status": "Ok"
}{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"fill": "#bf4040",
"fillOpacity": 0.33,
"fillColor": "#bf4040",
"color": "#bf4040",
"contour": 5.0,
"opacity": 0.33,
"metric": "time"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-105.015736,
39.733941
],
[
-105.015925,
39.729968
],
[
-105.015038,
39.728666
],
[
-105.014835,
39.725968
],
[
-105.013246,
39.725458
],
[
-105.012897,
39.723807
],
[
-105.012099,
39.723605
],
[
-105.011829,
39.722875
],
[
-105.010272,
39.722432
],
[
-105.009039,
39.720665
],
[
-105.007073,
39.719631
],
[
-105.005954,
39.71775
],
[
-105.004305,
39.717399
],
[
-105.001538,
39.714166
],
[
-105.000637,
39.711067
],
[
-104.999736,
39.710883
],
[
-104.999474,
39.709968
],
[
-104.998329,
39.709375
],
[
-104.998393,
39.707968
],
[
-104.997136,
39.706968
],
[
-104.997416,
39.703968
],
[
-104.996577,
39.702968
],
[
-104.996551,
39.701783
],
[
-104.997736,
39.699066
],
[
-104.998736,
39.701459
],
[
-104.999657,
39.698968
],
[
-104.999186,
39.698518
],
[
-104.999339,
39.697571
],
[
-105.001207,
39.697497
],
[
-105.001736,
39.699354
],
[
-105.002463,
39.697695
],
[
-105.006319,
39.696968
],
[
-105.003736,
39.696409
],
[
-105.001736,
39.694584
],
[
-104.999736,
39.694554
],
[
-104.999229,
39.693968
],
[
-104.998885,
39.692968
],
[
-104.999899,
39.692131
],
[
-105.000396,
39.689628
],
[
-105.00123,
39.689474
],
[
-105.001736,
39.690112
],
[
-105.002695,
39.688968
],
[
-105.00184,
39.688864
],
[
-105.000736,
39.6879
],
[
-105.000374,
39.688606
],
[
-104.998736,
39.689135
],
[
-104.998162,
39.690395
],
[
-104.996736,
39.690305
],
[
-104.995156,
39.691388
],
[
-104.994368,
39.691336
],
[
-104.993755,
39.689968
],
[
-104.99488,
39.689112
],
[
-104.995833,
39.688968
],
[
-104.992318,
39.688386
],
[
-104.991961,
39.685743
],
[
-104.991582,
39.685814
],
[
-104.991178,
39.68741
],
[
-104.990736,
39.687568
],
[
-104.990037,
39.686968
],
[
-104.990266,
39.684968
],
[
-104.990938,
39.683968
],
[
-104.990268,
39.682968
],
[
-104.990797,
39.681968
],
[
-104.990296,
39.680968
],
[
-104.990909,
39.679968
],
[
-104.987736,
39.67804
],
[
-104.986736,
39.679056
],
[
-104.984786,
39.679968
],
[
-104.985696,
39.680968
],
[
-104.983977,
39.681968
],
[
-104.983936,
39.682968
],
[
-104.982736,
39.682351
],
[
-104.981736,
39.685483
],
[
-104.979736,
39.683973
],
[
-104.977925,
39.683779
],
[
-104.977388,
39.681968
],
[
-104.974749,
39.680968
],
[
-104.97565,
39.679968
],
[
-104.973736,
39.678454
],
[
-104.971995,
39.679968
],
[
-104.972,
39.680968
],
[
-104.969922,
39.681968
],
[
-104.970369,
39.682968
],
[
-104.969736,
39.683377
],
[
-104.968736,
39.682343
],
[
-104.967736,
39.683678
],
[
-104.966736,
39.683135
],
[
-104.966569,
39.683968
],
[
-104.965736,
39.68462
],
[
-104.965125,
39.683968
],
[
-104.964767,
39.681968
],
[
-104.96473,
39.681974
],
[
-104.964433,
39.682665
],
[
-104.963736,
39.683081
],
[
-104.961091,
39.680968
],
[
-104.961736,
39.680302
],
[
-104.962736,
39.68131
],
[
-104.963158,
39.68039
],
[
-104.965026,
39.679968
],
[
-104.962892,
39.678968
],
[
-104.960736,
39.678858
],
[
-104.9602,
39.678504
],
[
-104.959736,
39.675789
],
[
-104.959034,
39.677266
],
[
-104.956884,
39.678117
],
[
-104.955736,
39.679502
],
[
-104.950736,
39.67958
],
[
-104.949736,
39.680542
],
[
-104.948196,
39.680968
],
[
-104.949736,
39.681381
],
[
-104.950736,
39.682493
],
[
-104.951001,
39.682233
],
[
-104.954104,
39.6826
],
[
-104.954642,
39.683968
],
[
-104.948736,
39.684298
],
[
-104.947736,
39.683421
],
[
-104.944475,
39.683229
],
[
-104.942952,
39.680968
],
[
-104.943736,
39.680553
],
[
-104.944736,
39.680747
],
[
-104.944818,
39.679968
],
[
-104.942344,
39.67936
],
[
-104.940736,
39.677996
],
[
-104.940287,
39.678519
],
[
-104.94016,
39.681393
],
[
-104.938736,
39.681327
],
[
-104.937736,
39.680338
],
[
-104.936629,
39.680075
],
[
-104.937138,
39.678371
],
[
-104.938231,
39.677968
],
[
-104.935736,
39.67715
],
[
-104.934736,
39.677516
],
[
-104.933446,
39.677258
],
[
-104.932903,
39.675801
],
[
-104.932171,
39.675533
],
[
-104.931837,
39.674867
],
[
-104.930984,
39.67472
],
[
-104.930809,
39.673895
],
[
-104.929916,
39.673788
],
[
-104.929775,
39.671929
],
[
-104.92883,
39.671874
],
[
-104.928755,
39.670949
],
[
-104.927758,
39.670946
],
[
-104.927736,
39.67026
],
[
-104.927736,
39.670984
],
[
-104.928676,
39.671028
],
[
-104.928698,
39.672006
],
[
-104.929593,
39.672111
],
[
-104.929657,
39.674047
],
[
-104.930432,
39.674272
],
[
-104.930618,
39.675086
],
[
-104.932199,
39.676505
],
[
-104.93244,
39.678264
],
[
-104.934322,
39.679382
],
[
-104.934736,
39.680386
],
[
-104.936558,
39.682146
],
[
-104.938736,
39.682406
],
[
-104.939471,
39.683233
],
[
-104.940736,
39.683794
],
[
-104.941736,
39.683647
],
[
-104.942736,
39.68443
],
[
-104.946736,
39.684567
],
[
-104.947736,
39.685594
],
[
-104.958807,
39.685897
],
[
-104.957871,
39.687968
],
[
-104.959736,
39.689475
],
[
-104.960668,
39.687968
],
[
-104.960356,
39.685968
],
[
-104.961434,
39.685666
],
[
-104.963018,
39.685686
],
[
-104.964221,
39.686483
],
[
-104.965736,
39.686654
],
[
-104.966736,
39.687809
],
[
-104.967736,
39.688028
],
[
-104.968523,
39.689968
],
[
-104.967196,
39.692428
],
[
-104.96396,
39.692744
],
[
-104.963736,
39.692319
],
[
-104.962677,
39.692968
],
[
-104.967736,
39.695452
],
[
-104.968095,
39.693968
],
[
-104.968736,
39.693527
],
[
-104.972736,
39.693515
],
[
-104.97316,
39.693968
],
[
-104.97361,
39.702968
],
[
-104.97343,
39.703662
],
[
-104.97277,
39.703968
],
[
-104.973558,
39.704968
],
[
-104.972909,
39.707141
],
[
-104.972031,
39.707968
],
[
-104.972927,
39.708968
],
[
-104.972172,
39.710404
],
[
-104.969897,
39.710968
],
[
-104.971736,
39.712101
],
[
-104.972894,
39.711968
],
[
-104.976428,
39.715276
],
[
-104.976736,
39.716056
],
[
-104.977736,
39.714901
],
[
-104.979936,
39.715768
],
[
-104.979592,
39.716968
],
[
-104.979947,
39.717757
],
[
-104.981504,
39.7192
],
[
-104.982736,
39.721646
],
[
-104.983736,
39.721517
],
[
-104.984407,
39.721968
],
[
-104.983819,
39.722968
],
[
-104.986484,
39.72522
],
[
-104.988397,
39.722968
],
[
-104.987646,
39.721968
],
[
-104.988596,
39.720968
],
[
-104.987698,
39.71993
],
[
-104.98853,
39.719762
],
[
-104.990831,
39.717968
],
[
-104.9915,
39.716968
],
[
-104.991498,
39.71573
],
[
-104.993576,
39.714968
],
[
-104.994078,
39.71331
],
[
-104.994784,
39.712968
],
[
-104.994081,
39.711968
],
[
-104.995736,
39.711401
],
[
-104.997236,
39.712968
],
[
-104.997477,
39.714709
],
[
-104.996663,
39.714968
],
[
-104.998209,
39.715495
],
[
-104.998736,
39.717939
],
[
-104.999736,
39.714874
],
[
-105.003391,
39.718313
],
[
-105.005087,
39.718617
],
[
-105.011168,
39.724536
],
[
-105.011427,
39.724968
],
[
-105.010736,
39.725718
],
[
-105.006663,
39.725968
],
[
-105.010736,
39.726218
],
[
-105.011615,
39.727089
],
[
-105.01316,
39.727544
],
[
-105.013282,
39.728968
],
[
-105.015499,
39.730968
],
[
-105.015736,
39.733941
]
]
],
"polygonCoordinates": [
[
[
-105.015736,
39.733941
],
[
-105.015925,
39.729968
],
[
-105.015038,
39.728666
],
[
-105.014835,
39.725968
],
[
-105.013246,
39.725458
],
[
-105.012897,
39.723807
],
[
-105.012099,
39.723605
],
[
-105.011829,
39.722875
],
[
-105.010272,
39.722432
],
[
-105.009039,
39.720665
],
[
-105.007073,
39.719631
],
[
-105.005954,
39.71775
],
[
-105.004305,
39.717399
],
[
-105.001538,
39.714166
],
[
-105.000637,
39.711067
],
[
-104.999736,
39.710883
],
[
-104.999474,
39.709968
],
[
-104.998329,
39.709375
],
[
-104.998393,
39.707968
],
[
-104.997136,
39.706968
],
[
-104.997416,
39.703968
],
[
-104.996577,
39.702968
],
[
-104.996551,
39.701783
],
[
-104.997736,
39.699066
],
[
-104.998736,
39.701459
],
[
-104.999657,
39.698968
],
[
-104.999186,
39.698518
],
[
-104.999339,
39.697571
],
[
-105.001207,
39.697497
],
[
-105.001736,
39.699354
],
[
-105.002463,
39.697695
],
[
-105.006319,
39.696968
],
[
-105.003736,
39.696409
],
[
-105.001736,
39.694584
],
[
-104.999736,
39.694554
],
[
-104.999229,
39.693968
],
[
-104.998885,
39.692968
],
[
-104.999899,
39.692131
],
[
-105.000396,
39.689628
],
[
-105.00123,
39.689474
],
[
-105.001736,
39.690112
],
[
-105.002695,
39.688968
],
[
-105.00184,
39.688864
],
[
-105.000736,
39.6879
],
[
-105.000374,
39.688606
],
[
-104.998736,
39.689135
],
[
-104.998162,
39.690395
],
[
-104.996736,
39.690305
],
[
-104.995156,
39.691388
],
[
-104.994368,
39.691336
],
[
-104.993755,
39.689968
],
[
-104.99488,
39.689112
],
[
-104.995833,
39.688968
],
[
-104.992318,
39.688386
],
[
-104.991961,
39.685743
],
[
-104.991582,
39.685814
],
[
-104.991178,
39.68741
],
[
-104.990736,
39.687568
],
[
-104.990037,
39.686968
],
[
-104.990266,
39.684968
],
[
-104.990938,
39.683968
],
[
-104.990268,
39.682968
],
[
-104.990797,
39.681968
],
[
-104.990296,
39.680968
],
[
-104.990909,
39.679968
],
[
-104.987736,
39.67804
],
[
-104.986736,
39.679056
],
[
-104.984786,
39.679968
],
[
-104.985696,
39.680968
],
[
-104.983977,
39.681968
],
[
-104.983936,
39.682968
],
[
-104.982736,
39.682351
],
[
-104.981736,
39.685483
],
[
-104.979736,
39.683973
],
[
-104.977925,
39.683779
],
[
-104.977388,
39.681968
],
[
-104.974749,
39.680968
],
[
-104.97565,
39.679968
],
[
-104.973736,
39.678454
],
[
-104.971995,
39.679968
],
[
-104.972,
39.680968
],
[
-104.969922,
39.681968
],
[
-104.970369,
39.682968
],
[
-104.969736,
39.683377
],
[
-104.968736,
39.682343
],
[
-104.967736,
39.683678
],
[
-104.966736,
39.683135
],
[
-104.966569,
39.683968
],
[
-104.965736,
39.68462
],
[
-104.965125,
39.683968
],
[
-104.964767,
39.681968
],
[
-104.96473,
39.681974
],
[
-104.964433,
39.682665
],
[
-104.963736,
39.683081
],
[
-104.961091,
39.680968
],
[
-104.961736,
39.680302
],
[
-104.962736,
39.68131
],
[
-104.963158,
39.68039
],
[
-104.965026,
39.679968
],
[
-104.962892,
39.678968
],
[
-104.960736,
39.678858
],
[
-104.9602,
39.678504
],
[
-104.959736,
39.675789
],
[
-104.959034,
39.677266
],
[
-104.956884,
39.678117
],
[
-104.955736,
39.679502
],
[
-104.950736,
39.67958
],
[
-104.949736,
39.680542
],
[
-104.948196,
39.680968
],
[
-104.949736,
39.681381
],
[
-104.950736,
39.682493
],
[
-104.951001,
39.682233
],
[
-104.954104,
39.6826
],
[
-104.954642,
39.683968
],
[
-104.948736,
39.684298
],
[
-104.947736,
39.683421
],
[
-104.944475,
39.683229
],
[
-104.942952,
39.680968
],
[
-104.943736,
39.680553
],
[
-104.944736,
39.680747
],
[
-104.944818,
39.679968
],
[
-104.942344,
39.67936
],
[
-104.940736,
39.677996
],
[
-104.940287,
39.678519
],
[
-104.94016,
39.681393
],
[
-104.938736,
39.681327
],
[
-104.937736,
39.680338
],
[
-104.936629,
39.680075
],
[
-104.937138,
39.678371
],
[
-104.938231,
39.677968
],
[
-104.935736,
39.67715
],
[
-104.934736,
39.677516
],
[
-104.933446,
39.677258
],
[
-104.932903,
39.675801
],
[
-104.932171,
39.675533
],
[
-104.931837,
39.674867
],
[
-104.930984,
39.67472
],
[
-104.930809,
39.673895
],
[
-104.929916,
39.673788
],
[
-104.929775,
39.671929
],
[
-104.92883,
39.671874
],
[
-104.928755,
39.670949
],
[
-104.927758,
39.670946
],
[
-104.927736,
39.67026
],
[
-104.927736,
39.670984
],
[
-104.928676,
39.671028
],
[
-104.928698,
39.672006
],
[
-104.929593,
39.672111
],
[
-104.929657,
39.674047
],
[
-104.930432,
39.674272
],
[
-104.930618,
39.675086
],
[
-104.932199,
39.676505
],
[
-104.93244,
39.678264
],
[
-104.934322,
39.679382
],
[
-104.934736,
39.680386
],
[
-104.936558,
39.682146
],
[
-104.938736,
39.682406
],
[
-104.939471,
39.683233
],
[
-104.940736,
39.683794
],
[
-104.941736,
39.683647
],
[
-104.942736,
39.68443
],
[
-104.946736,
39.684567
],
[
-104.947736,
39.685594
],
[
-104.958807,
39.685897
],
[
-104.957871,
39.687968
],
[
-104.959736,
39.689475
],
[
-104.960668,
39.687968
],
[
-104.960356,
39.685968
],
[
-104.961434,
39.685666
],
[
-104.963018,
39.685686
],
[
-104.964221,
39.686483
],
[
-104.965736,
39.686654
],
[
-104.966736,
39.687809
],
[
-104.967736,
39.688028
],
[
-104.968523,
39.689968
],
[
-104.967196,
39.692428
],
[
-104.96396,
39.692744
],
[
-104.963736,
39.692319
],
[
-104.962677,
39.692968
],
[
-104.967736,
39.695452
],
[
-104.968095,
39.693968
],
[
-104.968736,
39.693527
],
[
-104.972736,
39.693515
],
[
-104.97316,
39.693968
],
[
-104.97361,
39.702968
],
[
-104.97343,
39.703662
],
[
-104.97277,
39.703968
],
[
-104.973558,
39.704968
],
[
-104.972909,
39.707141
],
[
-104.972031,
39.707968
],
[
-104.972927,
39.708968
],
[
-104.972172,
39.710404
],
[
-104.969897,
39.710968
],
[
-104.971736,
39.712101
],
[
-104.972894,
39.711968
],
[
-104.976428,
39.715276
],
[
-104.976736,
39.716056
],
[
-104.977736,
39.714901
],
[
-104.979936,
39.715768
],
[
-104.979592,
39.716968
],
[
-104.979947,
39.717757
],
[
-104.981504,
39.7192
],
[
-104.982736,
39.721646
],
[
-104.983736,
39.721517
],
[
-104.984407,
39.721968
],
[
-104.983819,
39.722968
],
[
-104.986484,
39.72522
],
[
-104.988397,
39.722968
],
[
-104.987646,
39.721968
],
[
-104.988596,
39.720968
],
[
-104.987698,
39.71993
],
[
-104.98853,
39.719762
],
[
-104.990831,
39.717968
],
[
-104.9915,
39.716968
],
[
-104.991498,
39.71573
],
[
-104.993576,
39.714968
],
[
-104.994078,
39.71331
],
[
-104.994784,
39.712968
],
[
-104.994081,
39.711968
],
[
-104.995736,
39.711401
],
[
-104.997236,
39.712968
],
[
-104.997477,
39.714709
],
[
-104.996663,
39.714968
],
[
-104.998209,
39.715495
],
[
-104.998736,
39.717939
],
[
-104.999736,
39.714874
],
[
-105.003391,
39.718313
],
[
-105.005087,
39.718617
],
[
-105.011168,
39.724536
],
[
-105.011427,
39.724968
],
[
-105.010736,
39.725718
],
[
-105.006663,
39.725968
],
[
-105.010736,
39.726218
],
[
-105.011615,
39.727089
],
[
-105.01316,
39.727544
],
[
-105.013282,
39.728968
],
[
-105.015499,
39.730968
],
[
-105.015736,
39.733941
]
]
],
"lineCoordinates": null
}
}
],
"status": "Ok"
}