Tropical Cyclones
https://data.api.xweather.com/tropicalcyclones/
The tropical cyclones endpoint provides access to information on the active tropical cyclones, such as invests, tropical depressions, tropical storms, hurricanes, and typhoons, across the globe. Includes information on an individual storm's name, position, historical track, and forecasts. The tropical API information is based on data from the National Hurricane Center (NHC), Central Pacific Hurricane Center (CPHC), and Joint Typhoon Warning Center (JTWC).
The default limit for this endpoint is 10 to ensure all active cyclones are returned with a single query.
Requests
Every request to the endpoint must include one of the supported actions in the url.
https://data.api.xweather.com/tropicalcyclones/{action}?client_id={client_id}&client_secret={client_secret}&{params}
Supported Actions
The following actions are supported with the /tropicalcyclones endpoint:
Action | Description |
---|---|
:all | Type: stringDesignates no action is required and can be omitted from the endpoint request. Learn more. |
closest | Type: stringBased on a location search, the results will be returned in order from closest to farthest. Learn more. |
search | Type: stringA generalized action that is determined with the endpoints query parameters. Learn more. |
within | Type: stringUses a circle or polygon, define an area to search for results. Learn more. |
affects | Type: stringReturns a list of locations that are currently affected by a weather event. Criteria for the location(s) can be determined in your query parameters. Learn more. |
Response
The following is an example of what each object in the response will consist of. Depending on your requested action, the response may contain multiple instances of this object within an array.
Properties
id (string)
The tropical system ID. The storm ID will be similar too:
2017-AL-16 : YEAR-BASIN-EVENTNUMBER
YEAR: 4-digit year
BASIN: 2-character basin abbreviation
EVENTNUMBER: 2-digit event number
profile (object)
Object containing information about the location or event.
profile.basinOrigin (string)
The basin abbreviation that the storm is originated within.
AL = Atlantic
EP = Eastern Pacific
CP = Central Pacific
WP = Western Pacific
IO = Indian Ocean
SH = Southern Hemisphere
profile.basinCurrent (string)
The basin abbreviation that the storm is currently within. Null if the storm is no longer active.
profile.basins (array)
An array of basin abbreviations that the storm has been within.
profile.name (string)
The storm name without the leading storm type. For example, a value of Nate for Hurricane Nate.
The name is in mixed case. If the storm has not been named yet, this may be a number, i.e. Tropical Depression 4 would have a name of Four.
profile.year (number)
The 4-digit year of the storm.
profile.event (number)
The event number of the storm.
profile.isActive (boolean)
True if the storm is currently active, false if not.
profile.lifespan (object)
Object containing the lifespan of the storm.
profile.lifespan.startTimestamp (number)
Unix timestamp of when the first advisory was issued for the storm by the NHC or JTWC.
profile.lifespan.startDateTimeISO (string)
The ISO 8601 date and time of when the first advisory was issued for the storm by the NHC or JTWC.
profile.lifespan.endTimestamp (number)
Unix timestamp of when the last advisory was issued for the storm by the NHC or JTWC. If a system is still active, this value will be null.
profile.lifespan.endDateTimeISO (string)
The ISO 8601 date and time of when the last advisory was issued for the storm by the NHC or JTWC. If a system is still active, this value will be null.
profile.maxStormType (string)
The maximum type of storm (based on wind speed), abbreviated
DB = Disturbance
EX = Extra-Tropical
TD = Tropical Depression
SD = Subtropical Depression
TS = Tropical Storm
SS = Subtropical Storm
H = Hurricane
TY = Typhoon
STY = Super Typhoon
profile.maxStormCat (string)
The maximum strength category the storm achieved, based on wind speed.
DB = Disturbance
EX = Extra-Tropical
TD = Tropical Depression
SD = Subtropical Depression
TS = Tropical Storm
SS = Subtropical Storm
H1 = Category 1 Hurricane
H2 = Category 2 Hurricane
H3 = Category 3 Hurricane
H4 = Category 4 Hurricane
H5 = Category 5 Hurricane
TY = Typhoon
STY = Super Typhoon
profile.maxStormName (string)
The maximum name of the storm (based on wind speed). For example, a value of Nate for Hurricane Nate.
The name may be in mixed case. If the storm has not been named yet, this may be a number, i.e. Tropical Depression 4 would have a name of Four.
profile.windSpeed (object)
Object containing the maximum wind speed information
profile.windSpeed.maxKTS (number)
Maximum reported wind speed of the storm during its lifetime in knots.
profile.windSpeed.maxKPH (number)
Maximum reported wind speed of the storm during its lifetime in kilometers per hour.
profile.windSpeed.maxMPH (number)
The maximum reported wind speed of the storm during its lifetime in miles per hour.
profile.windSpeed.maxMPS (number)
The maximum reported wind speed of the storm during its lifetime in meters per second.
profile.windSpeed.maxTimestamp (number)
The Unix timestamp of when the maximum wind speed was recorded.
profile.windSpeed.maxDateTimeISO (string)
The ISO 8601 date and time of when the maximum wind speed was recorded.
profile.pressure (object)
The minimum pressure of the storm during its lifetime.
profile.pressure.minMB (number)
The minimum reported pressure of the storm during its lifetime in millibars.
profile.pressure.minIN (number)
The minimum reported pressure of the storm during its lifetime in inches of mercury.
profile.pressure.minTimestamp (number)
The Unix timestamp of when the minimum pressure was recorded.
profile.pressure.minDateTimeISO (string)
The ISO 8601 date and time of when the minimum pressure was recorded.
profile.boundingBox (array)
An array of coordinates that define the bounding box of the storm, including the past track, current position, and forecast track and error cone. The coordinates are in the order of: southwest latitude, southwest longitude, northeast latitude, northeast longitude.
profile.tz (string)
Timezone name of the location, such as America/New_York
.
position (object)
Object containing the latest storm position information. NULL for inactive storms.
position.location (object)
The GeoJSON point object of the location of the tropical system.
position.location.type (string)
The GeoJSON type of the location object. Will always be Point
.
position.location.coordinates (array)
The GeoJSON coordinates of the location object. The order is longitude, latitude.
position.details (object)
Object containing the latest storm details.
position.details.basin (string)
The two letter abbreviation of the basin the storm is located within.
position.details.stormType (string)
The current storm type. Uses the same codes as profile.maxStormType.
position.details.stormCat (string)
The current storm strength category, based on wind speed. Uses the same codes as profile.maxStormCat.
position.details.stormName (string)
The full name of the storm at the time of the advisory, based on wind speed. Example: Tropical Storm Lee
position.details.stormShortName (string)
The storm name without the leading storm type. For example, a value of Nate for Hurricane Nate.
The name is in mixed case. If the storm has not been named yet, this may be a number, i.e. Tropical Depression 4 would have a name of Four.
position.details.advisoryNumber (string)
The latest advisory number that the position information is based on.
NOTE: This value is a string, as the NHC will issue intermediate advisories for storms close to landfall. These intermediate advisories may include letters, such as an Advisory Number of 4A
position.details.movement (object)
Object containing the movement information. NULL if movement information is not available.
position.details.movement.directionDEG (number)
The direction the storm is moving in cardinal coordinates.
position.details.movement.direction (string)
The direction the storm is moving in degrees, 0 to 360, with 0 being North.
position.details.movement.speedKTS (number)
The speed of the storm in knots
position.details.movement.speedKPH (number)
The speed of the storm in kilometers per hour
position.details.movement.speedMPH (number)
The speed of the storm in miles per hour
position.details.movement.speedMPS (number)
The speed of the storm in meters per second
position.details.windSpeedKTS (number)
The wind speed of the storm in knots
position.details.windSpeedKPH (number)
The wind speed of the storm in kilometers per hour
position.details.windSpeedMPH (number)
The wind speed of the storm in miles per hour
position.details.windSpeedMPS (number)
The wind speed of the storm in meters per second
position.details.gustSpeedKTS (number)
The maximum wind gust speed as reported in the advisory in knots. NULL is not available.
position.details.gustSpeedKPH (number)
The maximum wind gust speed as reported in the advisory in kilometers per hour. NULL is not available.
position.details.gustSpeedMPH (number)
The maximum wind gust speed as reported in the advisory in miles per hour. NULL is not available.
position.details.gustSpeedMPS (number)
The maximum wind gust speed as reported in the advisory in meters per second. NULL is not available.
position.details.pressureMB (number)
The minimum pressure of the storm in millibars. NULL if not available.
position.details.pressureIN (number)
The minimum pressure of the storm in inches of mercury. NULL if not available.
position.timestamp (number)
Unix timestamp of the date/time of the advisory for this data set, as issued by the NHC or JTWC.
position.dateTimeISO (string)
The ISO 8601 date and time of the advisory for this data set, as issued by the NHC or JTWC.
position.loc (object)
Object containing the classic API location format of the latest reported position of the cyclone.
position.loc.long (number)
The longitude of the latest reported position of the cyclone.
position.loc.lat (number)
The latitude of the latest reported position of the cyclone.
position.details.windRadii (array)
Array of wind radii information for the cyclones current position. Null if no wind radii information.
position.details.windRadii.#.windSpeedKTS (number)
The wind speed in knots the wind radii information is for. Normally, 34, 50 or 64 knots
position.details.windRadii.#.windSpeedKPH (number)
The wind speed in kilometers per hour the wind radii information is for. Normally, 34, 50 or 64 knots
position.details.windRadii.#.windSpeedMPH (number)
The wind speed in miles per hour the wind radii information is for. Normally, 34, 50 or 64 knots
position.details.windRadii.#.windSpeedMPS (number)
The wind speed in meters per second the wind radii information is for. Normally, 34, 50 or 64 knots
position.details.windRadii.#.quadrants (object)
Object of wind radii information. Separate objects for the 34, 50 and 64 knot wind radii information, as needed for the specific storm.
position.details.windRadii.#.quadrants.ne (object)
Object containing the wind radii information for the NE quadrant.
position.details.windRadii.#.quadrants.ne.distanceKM (number)
The distance in kilometers of the NE quadrant wind radii.
position.details.windRadii.#.quadrants.ne.distanceMI (number)
The distance in miles of the NE quadrant wind radii.
position.details.windRadii.#.quadrants.ne.distanceNM (number)
The distance in nautical miles of the NE quadrant wind radii.
position.details.windRadii.#.quadrants.ne.loc (object)
Position object for the north east extent of the wind fields.
position.details.windRadii.#.quadrants.ne.loc.long (number)
The longitude of the north east extent of the wind fields.
position.details.windRadii.#.quadrants.ne.loc.lat (number)
The latitude of the north east extent of the wind fields.
position.details.windRadii.#.quadrants.se (object)
Object containing the wind radii information for the SE quadrant.
position.details.windRadii.#.quadrants.se.distanceKM (number)
The distance in kilometers of the SE quadrant wind radii.
position.details.windRadii.#.quadrants.se.distanceMI (number)
The distance in miles of the SE quadrant wind radii.
position.details.windRadii.#.quadrants.se.distanceNM (number)
The distance in nautical miles of the SE quadrant wind radii.
position.details.windRadii.#.quadrants.se.loc (object)
Position object for the south east extent of the wind fields.
position.details.windRadii.#.quadrants.se.loc.long (number)
The longitude of the south east extent of the wind fields.
position.details.windRadii.#.quadrants.se.loc.lat (number)
The latitude of the south east extent of the wind fields.
position.details.windRadii.#.quadrants.sw (object)
Object containing the wind radii information for the SW quadrant.
position.details.windRadii.#.quadrants.sw.distanceKM (number)
The distance in kilometers of the SW quadrant wind radii.
position.details.windRadii.#.quadrants.sw.distanceMI (number)
The distance in miles of the SW quadrant wind radii.
position.details.windRadii.#.quadrants.sw.distanceNM (number)
The distance in nautical miles of the SW quadrant wind radii.
position.details.windRadii.#.quadrants.sw.loc (object)
Position object for the south west extent of the wind fields.
position.details.windRadii.#.quadrants.sw.loc.long (number)
The longitude of the south west extent of the wind fields.
position.details.windRadii.#.quadrants.sw.loc.lat (number)
The latitude of the south west extent of the wind fields.
position.details.windRadii.#.quadrants.nw (object)
Object containing the wind radii information for the NW quadrant.
position.details.windRadii.#.quadrants.nw.distanceKM (number)
The distance in kilometers of the NW quadrant wind radii.
position.details.windRadii.#.quadrants.nw.distanceMI (number)
The distance in miles of the NW quadrant wind radii.
position.details.windRadii.#.quadrants.nw.distanceNM (number)
The distance in nautical miles of the NW quadrant wind radii.
position.details.windRadii.#.quadrants.nw.loc (object)
Position object for the north west extent of the wind fields.
position.details.windRadii.#.quadrants.nw.loc.long (number)
The longitude of the north west extent of the wind fields.
position.details.windRadii.#.quadrants.nw.loc.lat (number)
The latitude of the north west extent of the wind fields.
track (array)
Array containing the historical track information. The track information is sorted descending.
track.#.timestamp (number)
The Unix timestamp of the date/time of the advisory for this data set, as issued by the NHC or JTWC.
track.#.dateTimeISO (string)
The ISO 8601 date and time of the advisory for this data set, as issued by the NHC or JTWC.
track.#.location (object)
The GeoJSON point object of the location of the tropical system.
track.#.location.type (string)
The GeoJSON type of the location object. Will always be Point
.
track.#.location.coordinates (array)
The GeoJSON coordinates of the location object. The order is longitude, latitude.
track.#.details (object)
Object containing the tropical system details.
track.#.details.basin (string)
The two letter abbreviation of the basin the storm is located within.
track.#.details.stormType (string)
The current storm type. Uses the same codes as profile.maxStormType.
track.#.details.stormCat (string)
The current storm strength category, based on wind speed. Uses the same codes as profile.maxStormCat.
track.#.details.stormName (string)
The full name of the storm at the time of the advisory, based on wind speed. Example: Tropical Storm Lee
track.#.details.stormShortName (string)
The storm name without the leading storm type. For example, a value of Nate for Hurricane Nate.
The name is in mixed case. If the storm has not been named yet, this may be a number, i.e. Tropical Depression 4 would have a name of Four.
track.#.details.advisoryNumber (string)
The latest advisory number that the position information is based on.
NOTE: This value is a string, as the NHC will issue intermediate advisories for storms close to landfall. These intermediate advisories may include letters, such as an Advisory Number of 4A
track.#.details.movement (object)
The movement information. NULL if movement information is not available.
track.#.details.movement.directionDEG (number)
The direction the storm is moving in degrees, 0 to 259, with 0 being North.
track.#.details.movement.direction (string)
The direction the storm is moving in cardinal coordinates., N, NNE, NE, ENE, E, ESE, SE, SSE, S, SSW, SW, WSW, W, WNW, NW, NNW
track.#.details.movement.speedKTS (number)
The speed of the storm in knots
track.#.details.movement.speedKPH (number)
The speed of the storm in kilometers per hour
track.#.details.movement.speedMPH (number)
The speed of the storm in miles per hour
track.#.details.movement.speedMPS (number)
The speed of the storm in meters per second
track.#.details.windSpeedKTS (number)
The wind speed of the storm in knots
track.#.details.windSpeedKPH (number)
The wind speed of the storm in kilometers per hour
track.#.details.windSpeedMPH (number)
The wind speed of the storm in miles per hour
track.#.details.windSpeedMPS (number)
The wind speed of the storm in meters per second
track.#.details.gustSpeedKTS (number)
The maximum wind gust speed as reported in the advisory in knots. NULL is not available.
track.#.details.gustSpeedKPH (number)
The maximum wind gust speed as reported in the advisory in kilometers per hour. NULL is not available.
track.#.details.gustSpeedMPH (number)
The maximum wind gust speed as reported in the advisory in miles per hour. NULL is not available.
track.#.details.gustSpeedMPS (number)
The maximum wind gust speed as reported in the advisory in meters per second. NULL is not available.
track.#.details.pressureMB (number)
The minimum pressure of the storm in millibars. NULL if not available.
track.#.details.pressureIN (number)
The minimum pressure of the storm in inches of mercury. NULL if not available.
track.#.loc (object)
The classic API location format of the latest reported position of the cyclone.
track.#.loc.long (number)
The longitude of the latest reported position of the cyclone.
track.#.loc.lat (number)
The latitude of the latest reported position of the cyclone.
forecast (array)
Array containing the forecast information. The track information is sorted ascending. NULL if the storm is not active or the forecast is unavailable.
forecast.#.timestamp (number)
Unix timestamp of the date/time of the forecast point information.
forecast.#.dateTimeISO (string)
The ISO 8601 date and time of the forecast point information.
forecast.#.location (object)
The GeoJSON point object of the location of the tropical system.
forecast.#.location.type (string)
The GeoJSON type of the location object. Will always be Point
.
forecast.#.location.coordinates (array)
The GeoJSON coordinates of the location object. The order is longitude, latitude.
forecast.#.details (object)
The forecast details.
forecast.#.details.basin (string)
The two letter abbreviation of the basin the storm is located within.
forecast.#.details.stormType (string)
The current storm type. Uses the same codes as profile.maxStormType.
forecast.#.details.stormCat (string)
The current storm strength category, based on wind speed. Uses the same codes as profile.maxStormCat.
forecast.#.details.stormName (string)
The full name of the storm at the time of the advisory, based on wind speed. Example: Tropical Storm Lee
forecast.#.details.stormShortName (string)
The storm name without the leading storm type. For example, a value of Nate for Hurricane Nate.
The name is in mixed case. If the storm has not been named yet, this may be a number, i.e. Tropical Depression 4 would have a name of Four.
forecast.#.details.advisoryNumber (string)
The latest advisory number that the position information is based on.
NOTE: This value is a string, as the NHC will issue intermediate advisories for storms close to landfall. These intermediate advisories may include letters, such as an Advisory Number of 4A
forecast.#.details.windSpeedKTS (number)
The wind speed of the storm in knots
forecast.#.details.windSpeedKPH (number)
The wind speed of the storm in kilometers per hour
forecast.#.details.windSpeedMPH (number)
The wind speed of the storm in miles per hour
forecast.#.details.windSpeedMPS (number)
The wind speed of the storm in meters per second
forecast.#.details.gustSpeedKTS (number)
The maximum wind gust speed as reported in the advisory in knots. NULL is not available.
forecast.#.details.gustSpeedKPH (number)
The maximum wind gust speed as reported in the advisory in kilometers per hour. NULL is not available.
forecast.#.details.gustSpeedMPH (number)
The maximum wind gust speed as reported in the advisory in miles per hour. NULL is not available.
forecast.#.details.gustSpeedMPS (number)
The maximum wind gust speed as reported in the advisory in meters per second. NULL is not available.
forecast.#.details.pressureMB (number)
The minimum pressure of the storm in millibars. NULL if not available.
forecast.#.details.pressureIN (number)
The minimum pressure of the storm in inches of mercury. NULL if not available.
forecast.#.loc (object)
The classic API location format of the latest reported position of the cyclone.
forecast.#.loc.long (number)
The longitude of the latest reported position of the cyclone.
forecast.#.loc.lat (number)
The latitude of the latest reported position of the cyclone.
breakPointAlerts (array)
An array of NHC issued warnings and watches along the coastlines. NULL if not available.
Only available for the Atlantic and East Pacific basins.
The breakpoint alerts are commonly used to draw lines along the coastlines. These should not be confused with the official tropical and hurricane-related alerts issued by the local National Weather Service offices.
breakPointAlerts.#.alertType (string)
The type of alert issued.
TR.A = Tropical Storm Watch
TR.W = Tropical Storm Warning
HU.A = Hurricane Watch
HU.W = Hurricane Warning
breakPointAlerts.#.coords (object)
GeoJSON LineString object of NHC issued breakpoint alerts along the coasts.
breakPointAlerts.#.coords.type (string)
The GeoJSON type of the location object. Will always be LineString
.
breakPointAlerts.#.coords.coordinates (array)
The GeoJSON coordinates of the location object. The order is longitude, latitude.
errorCone (object)
The GeoJSON object associated with the cyclone's error cone.
errorCone.type (string)
The geometry object type based on GeoJSON conventions.
errorCone.coordinates (array)
The GeoJSON coordinates of the location object. The order is longitude, latitude.
[
{
"id": "2017-AL-80",
"profile": {
"basinOrigin": "AL",
"basinCurrent": "AL",
"basins": [
"AL"
],
"name": "Nate",
"year": 2017,
"event": 16,
"isActive": true,
"lifespan": {
"startTimestamp": 1507129200,
"startDateTimeISO": "2017-10-04T10:00:00-05:00",
"endTimestamp": null,
"endDateTimeISO": null
},
"maxStormType": "H",
"maxStormCat": "H1",
"maxStormName": "Hurricane Nate",
"windSpeed": {
"maxKTS": 78.1,
"maxKPH": 145,
"maxMPH": 90,
"maxMPS": 40,
"maxTimestamp": 1507388400,
"maxDateTimeISO": "2017-10-07T10:00:00-05:00"
},
"pressure": {
"minMB": 981,
"minIN": 28.97,
"minTimestamp": 1507410000,
"minDateTimeISO": "2017-10-07T16:00:00-05:00"
},
"boundingBox": [
12.2,
-90.58588,
44.65614,
-66.46459
],
"tz": "America/Cancun"
},
"position": {
"location": {
"type": "Point",
"coordinates": [
-85,
18.7
]
},
"details": {
"basin": "AL",
"stormType": "TS",
"stormCat": "TS",
"stormName": "Tropical Storm Nate",
"stormShortName": "Nate",
"advisoryNumber": "9",
"movement": {
"directionDEG": 337.5,
"direction": "NNW",
"speedKTS": 18.2,
"speedKPH": 34,
"speedMPH": 21,
"speedMPS": 9
},
"windSpeedKTS": 43.4,
"windSpeedKPH": 80,
"windSpeedMPH": 50,
"windSpeedMPS": 22,
"gustSpeedKTS": null,
"gustSpeedKPH": null,
"gustSpeedMPH": null,
"gustSpeedMPS": null,
"pressureMB": 996,
"pressureIN": 29.41
},
"timestamp": 1507302000,
"dateTimeISO": "2017-10-06T10:00:00-05:00",
"loc": {
"long": -85,
"lat": 18.7
}
},
"track": [
{
"location": {
"type": "Point",
"coordinates": [
-81.9,
12.2
]
},
"details": {
"basin": "AL",
"stormType": "TD",
"stormCat": "TD",
"stormName": "Tropical Depression Sixteen",
"stormShortName": "Sixteen",
"advisoryNumber": "1",
"movement": {
"directionDEG": 315,
"direction": "NW",
"speedKTS": 6,
"speedKPH": 11,
"speedMPH": 7,
"speedMPS": 3
},
"windSpeedKTS": 30.3,
"windSpeedKPH": 56,
"windSpeedMPH": 35,
"windSpeedMPS": 16,
"gustSpeedKTS": null,
"gustSpeedKPH": null,
"gustSpeedMPH": null,
"gustSpeedMPS": null,
"pressureMB": 1005,
"pressureIN": 29.68
},
"timestamp": 1507129200,
"dateTimeISO": "2017-10-04T10:00:00-05:00",
"loc": {
"long": -81.9,
"lat": 12.2
}
},
{
"location": {
"type": "Point",
"coordinates": [
-82.3,
12.3
]
},
"details": {
"basin": "AL",
"stormType": "TD",
"stormCat": "TD",
"stormName": "Tropical Depression Sixteen",
"stormShortName": "Sixteen",
"advisoryNumber": "1A",
"movement": {
"directionDEG": 315,
"direction": "NW",
"speedKTS": 6,
"speedKPH": 11,
"speedMPH": 7,
"speedMPS": 3
},
"windSpeedKTS": 30.3,
"windSpeedKPH": 56,
"windSpeedMPH": 35,
"windSpeedMPS": 16,
"gustSpeedKTS": null,
"gustSpeedKPH": null,
"gustSpeedMPH": null,
"gustSpeedMPS": null,
"pressureMB": 1005,
"pressureIN": 29.68
},
"timestamp": 1507140000,
"dateTimeISO": "2017-10-04T13:00:00-05:00",
"loc": {
"long": -82.3,
"lat": 12.3
}
},
{
"location": {
"type": "Point",
"coordinates": [
-82.5,
12.5
]
},
"details": {
"basin": "AL",
"stormType": "TD",
"stormCat": "TD",
"stormName": "Tropical Depression Sixteen",
"stormShortName": "Sixteen",
"advisoryNumber": "2",
"movement": {
"directionDEG": 315,
"direction": "NW",
"speedKTS": 6,
"speedKPH": 11,
"speedMPH": 7,
"speedMPS": 3
},
"windSpeedKTS": 30.3,
"windSpeedKPH": 56,
"windSpeedMPH": 35,
"windSpeedMPS": 16,
"gustSpeedKTS": null,
"gustSpeedKPH": null,
"gustSpeedMPH": null,
"gustSpeedMPS": null,
"pressureMB": 1005,
"pressureIN": 29.68
},
"timestamp": 1507150800,
"dateTimeISO": "2017-10-04T16:00:00-05:00",
"loc": {
"long": -82.5,
"lat": 12.5
}
},
{
"location": {
"type": "Point",
"coordinates": [
-82.6,
12.6
]
},
"details": {
"basin": "AL",
"stormType": "TD",
"stormCat": "TD",
"stormName": "Tropical Depression Sixteen",
"stormShortName": "Sixteen",
"advisoryNumber": "2A",
"movement": {
"directionDEG": 315,
"direction": "NW",
"speedKTS": 6,
"speedKPH": 11,
"speedMPH": 7,
"speedMPS": 3
},
"windSpeedKTS": 30.3,
"windSpeedKPH": 56,
"windSpeedMPH": 35,
"windSpeedMPS": 16,
"gustSpeedKTS": null,
"gustSpeedKPH": null,
"gustSpeedMPH": null,
"gustSpeedMPS": null,
"pressureMB": 1005,
"pressureIN": 29.68
},
"timestamp": 1507161600,
"dateTimeISO": "2017-10-04T19:00:00-05:00",
"loc": {
"long": -82.6,
"lat": 12.6
}
},
{
"location": {
"type": "Point",
"coordinates": [
-82.7,
12.8
]
},
"details": {
"basin": "AL",
"stormType": "TD",
"stormCat": "TD",
"stormName": "Tropical Depression Sixteen",
"stormShortName": "Sixteen",
"advisoryNumber": "3",
"movement": {
"directionDEG": 315,
"direction": "NW",
"speedKTS": 5.2,
"speedKPH": 10,
"speedMPH": 6,
"speedMPS": 3
},
"windSpeedKTS": 30.3,
"windSpeedKPH": 56,
"windSpeedMPH": 35,
"windSpeedMPS": 16,
"gustSpeedKTS": null,
"gustSpeedKPH": null,
"gustSpeedMPH": null,
"gustSpeedMPS": null,
"pressureMB": 1004,
"pressureIN": 29.65
},
"timestamp": 1507172400,
"dateTimeISO": "2017-10-04T22:00:00-05:00",
"loc": {
"long": -82.7,
"lat": 12.8
}
},
{
"location": {
"type": "Point",
"coordinates": [
-83,
13
]
},
"details": {
"basin": "AL",
"stormType": "TD",
"stormCat": "TD",
"stormName": "Tropical Depression Sixteen",
"stormShortName": "Sixteen",
"advisoryNumber": "3A",
"movement": {
"directionDEG": 315,
"direction": "NW",
"speedKTS": 5.2,
"speedKPH": 10,
"speedMPH": 6,
"speedMPS": 3
},
"windSpeedKTS": 30.3,
"windSpeedKPH": 56,
"windSpeedMPH": 35,
"windSpeedMPS": 16,
"gustSpeedKTS": null,
"gustSpeedKPH": null,
"gustSpeedMPH": null,
"gustSpeedMPS": null,
"pressureMB": 1004,
"pressureIN": 29.65
},
"timestamp": 1507183200,
"dateTimeISO": "2017-10-05T01:00:00-05:00",
"loc": {
"long": -83,
"lat": 13
}
},
{
"location": {
"type": "Point",
"coordinates": [
-83.3,
13.3
]
},
"details": {
"basin": "AL",
"stormType": "TD",
"stormCat": "TD",
"stormName": "Tropical Depression Sixteen",
"stormShortName": "Sixteen",
"advisoryNumber": "4",
"movement": {
"directionDEG": 315,
"direction": "NW",
"speedKTS": 6,
"speedKPH": 11,
"speedMPH": 7,
"speedMPS": 3
},
"windSpeedKTS": 30.3,
"windSpeedKPH": 56,
"windSpeedMPH": 35,
"windSpeedMPS": 16,
"gustSpeedKTS": null,
"gustSpeedKPH": null,
"gustSpeedMPH": null,
"gustSpeedMPS": null,
"pressureMB": 1004,
"pressureIN": 29.65
},
"timestamp": 1507194000,
"dateTimeISO": "2017-10-05T04:00:00-05:00",
"loc": {
"long": -83.3,
"lat": 13.3
}
},
{
"location": {
"type": "Point",
"coordinates": [
-83.4,
13.9
]
},
"details": {
"basin": "AL",
"stormType": "TS",
"stormCat": "TS",
"stormName": "Tropical Storm Nate",
"stormShortName": "Nate",
"advisoryNumber": "4A",
"movement": {
"directionDEG": 315,
"direction": "NW",
"speedKTS": 6.9,
"speedKPH": 13,
"speedMPH": 8,
"speedMPS": 4
},
"windSpeedKTS": 34.7,
"windSpeedKPH": 64,
"windSpeedMPH": 40,
"windSpeedMPS": 18,
"gustSpeedKTS": null,
"gustSpeedKPH": null,
"gustSpeedMPH": null,
"gustSpeedMPS": null,
"pressureMB": 999,
"pressureIN": 29.5
},
"timestamp": 1507204800,
"dateTimeISO": "2017-10-05T07:00:00-05:00",
"loc": {
"long": -83.4,
"lat": 13.9
}
},
{
"location": {
"type": "Point",
"coordinates": [
-83.7,
14.3
]
},
"details": {
"basin": "AL",
"stormType": "TS",
"stormCat": "TS",
"stormName": "Tropical Storm Nate",
"stormShortName": "Nate",
"advisoryNumber": "5",
"movement": {
"directionDEG": 315,
"direction": "NW",
"speedKTS": 7.8,
"speedKPH": 14,
"speedMPH": 9,
"speedMPS": 4
},
"windSpeedKTS": 34.7,
"windSpeedKPH": 64,
"windSpeedMPH": 40,
"windSpeedMPS": 18,
"gustSpeedKTS": null,
"gustSpeedKPH": null,
"gustSpeedMPH": null,
"gustSpeedMPS": null,
"pressureMB": 999,
"pressureIN": 29.5
},
"timestamp": 1507215600,
"dateTimeISO": "2017-10-05T10:00:00-05:00",
"loc": {
"long": -83.7,
"lat": 14.3
}
},
{
"location": {
"type": "Point",
"coordinates": [
-84,
14.5
]
},
"details": {
"basin": "AL",
"stormType": "TS",
"stormCat": "TS",
"stormName": "Tropical Storm Nate",
"stormShortName": "Nate",
"advisoryNumber": "5A",
"movement": {
"directionDEG": 315,
"direction": "NW",
"speedKTS": 7.8,
"speedKPH": 14,
"speedMPH": 9,
"speedMPS": 4
},
"windSpeedKTS": 34.7,
"windSpeedKPH": 64,
"windSpeedMPH": 40,
"windSpeedMPS": 18,
"gustSpeedKTS": null,
"gustSpeedKPH": null,
"gustSpeedMPH": null,
"gustSpeedMPS": null,
"pressureMB": 1001,
"pressureIN": 29.56
},
"timestamp": 1507226400,
"dateTimeISO": "2017-10-05T13:00:00-05:00",
"loc": {
"long": -84,
"lat": 14.5
}
},
{
"location": {
"type": "Point",
"coordinates": [
-84.3,
14.9
]
},
"details": {
"basin": "AL",
"stormType": "TS",
"stormCat": "TS",
"stormName": "Tropical Storm Nate",
"stormShortName": "Nate",
"advisoryNumber": "6",
"movement": {
"directionDEG": 337.5,
"direction": "NNW",
"speedKTS": 8.6,
"speedKPH": 16,
"speedMPH": 10,
"speedMPS": 4
},
"windSpeedKTS": 34.7,
"windSpeedKPH": 64,
"windSpeedMPH": 40,
"windSpeedMPS": 18,
"gustSpeedKTS": null,
"gustSpeedKPH": null,
"gustSpeedMPH": null,
"gustSpeedMPS": null,
"pressureMB": 1000,
"pressureIN": 29.53
},
"timestamp": 1507237200,
"dateTimeISO": "2017-10-05T16:00:00-05:00",
"loc": {
"long": -84.3,
"lat": 14.9
}
},
{
"location": {
"type": "Point",
"coordinates": [
-84.5,
15.3
]
},
"details": {
"basin": "AL",
"stormType": "TS",
"stormCat": "TS",
"stormName": "Tropical Storm Nate",
"stormShortName": "Nate",
"advisoryNumber": "6A",
"movement": {
"directionDEG": 337.5,
"direction": "NNW",
"speedKTS": 8.6,
"speedKPH": 16,
"speedMPH": 10,
"speedMPS": 4
},
"windSpeedKTS": 34.7,
"windSpeedKPH": 64,
"windSpeedMPH": 40,
"windSpeedMPS": 18,
"gustSpeedKTS": null,
"gustSpeedKPH": null,
"gustSpeedMPH": null,
"gustSpeedMPS": null,
"pressureMB": 1000,
"pressureIN": 29.53
},
"timestamp": 1507248000,
"dateTimeISO": "2017-10-05T19:00:00-05:00",
"loc": {
"long": -84.5,
"lat": 15.3
}
},
{
"location": {
"type": "Point",
"coordinates": [
-84.7,
15.8
]
},
"details": {
"basin": "AL",
"stormType": "TS",
"stormCat": "TS",
"stormName": "Tropical Storm Nate",
"stormShortName": "Nate",
"advisoryNumber": "7",
"movement": {
"directionDEG": 315,
"direction": "NW",
"speedKTS": 10.4,
"speedKPH": 19,
"speedMPH": 12,
"speedMPS": 5
},
"windSpeedKTS": 34.7,
"windSpeedKPH": 64,
"windSpeedMPH": 40,
"windSpeedMPS": 18,
"gustSpeedKTS": null,
"gustSpeedKPH": null,
"gustSpeedMPH": null,
"gustSpeedMPS": null,
"pressureMB": 1000,
"pressureIN": 29.53
},
"timestamp": 1507258800,
"dateTimeISO": "2017-10-05T22:00:00-05:00",
"loc": {
"long": -84.7,
"lat": 15.8
}
},
{
"location": {
"type": "Point",
"coordinates": [
-84.8,
16.1
]
},
"details": {
"basin": "AL",
"stormType": "TS",
"stormCat": "TS",
"stormName": "Tropical Storm Nate",
"stormShortName": "Nate",
"advisoryNumber": "7A",
"movement": {
"directionDEG": 315,
"direction": "NW",
"speedKTS": 10.4,
"speedKPH": 19,
"speedMPH": 12,
"speedMPS": 5
},
"windSpeedKTS": 39,
"windSpeedKPH": 72,
"windSpeedMPH": 45,
"windSpeedMPS": 20,
"gustSpeedKTS": null,
"gustSpeedKPH": null,
"gustSpeedMPH": null,
"gustSpeedMPS": null,
"pressureMB": 999,
"pressureIN": 29.5
},
"timestamp": 1507269600,
"dateTimeISO": "2017-10-06T01:00:00-05:00",
"loc": {
"long": -84.8,
"lat": 16.1
}
},
{
"location": {
"type": "Point",
"coordinates": [
-85.1,
16.9
]
},
"details": {
"basin": "AL",
"stormType": "TS",
"stormCat": "TS",
"stormName": "Tropical Storm Nate",
"stormShortName": "Nate",
"advisoryNumber": "8",
"movement": {
"directionDEG": 337.5,
"direction": "NNW",
"speedKTS": 12.1,
"speedKPH": 22,
"speedMPH": 14,
"speedMPS": 6
},
"windSpeedKTS": 39,
"windSpeedKPH": 72,
"windSpeedMPH": 45,
"windSpeedMPS": 20,
"gustSpeedKTS": null,
"gustSpeedKPH": null,
"gustSpeedMPH": null,
"gustSpeedMPS": null,
"pressureMB": 999,
"pressureIN": 29.5
},
"timestamp": 1507280400,
"dateTimeISO": "2017-10-06T04:00:00-05:00",
"loc": {
"long": -85.1,
"lat": 16.9
}
},
{
"location": {
"type": "Point",
"coordinates": [
-84.8,
17.8
]
},
"details": {
"basin": "AL",
"stormType": "TS",
"stormCat": "TS",
"stormName": "Tropical Storm Nate",
"stormShortName": "Nate",
"advisoryNumber": "8A",
"movement": {
"directionDEG": 337.5,
"direction": "NNW",
"speedKTS": 12.1,
"speedKPH": 22,
"speedMPH": 14,
"speedMPS": 6
},
"windSpeedKTS": 39,
"windSpeedKPH": 72,
"windSpeedMPH": 45,
"windSpeedMPS": 20,
"gustSpeedKTS": null,
"gustSpeedKPH": null,
"gustSpeedMPH": null,
"gustSpeedMPS": null,
"pressureMB": 996,
"pressureIN": 29.41
},
"timestamp": 1507291200,
"dateTimeISO": "2017-10-06T07:00:00-05:00",
"loc": {
"long": -84.8,
"lat": 17.8
}
},
{
"location": {
"type": "Point",
"coordinates": [
-85,
18.7
]
},
"details": {
"basin": "AL",
"stormType": "TS",
"stormCat": "TS",
"stormName": "Tropical Storm Nate",
"stormShortName": "Nate",
"advisoryNumber": "9",
"movement": {
"directionDEG": 337.5,
"direction": "NNW",
"speedKTS": 18.2,
"speedKPH": 34,
"speedMPH": 21,
"speedMPS": 9
},
"windSpeedKTS": 43.4,
"windSpeedKPH": 80,
"windSpeedMPH": 50,
"windSpeedMPS": 22,
"gustSpeedKTS": null,
"gustSpeedKPH": null,
"gustSpeedMPH": null,
"gustSpeedMPS": null,
"pressureMB": 996,
"pressureIN": 29.41
},
"timestamp": 1507302000,
"dateTimeISO": "2017-10-06T10:00:00-05:00",
"loc": {
"long": -85,
"lat": 18.7
}
}
],
"forecast": [
{
"location": {
"type": "Point",
"coordinates": [
-86.3,
21.3
]
},
"details": {
"basin": "AL",
"stormType": "TS",
"stormCat": "TS",
"stormName": "Tropical Storm Nate",
"stormShortName": "Nate",
"advisoryNumber": "9",
"movement": null,
"windSpeedKTS": 50,
"windSpeedKPH": 93,
"windSpeedMPH": 58,
"windSpeedMPS": 26,
"gustSpeedKTS": 60,
"gustSpeedKPH": 111,
"gustSpeedMPH": 69,
"gustSpeedMPS": 31,
"pressureMB": null,
"pressureIN": null
},
"timestamp": 1507334400,
"dateTimeISO": "2017-10-06T19:00:00-05:00",
"loc": {
"long": -86.3,
"lat": 21.3
}
},
{
"location": {
"type": "Point",
"coordinates": [
-88.3,
24.8
]
},
"details": {
"basin": "AL",
"stormType": "TS",
"stormCat": "TS",
"stormName": "Tropical Storm Nate",
"stormShortName": "Nate",
"advisoryNumber": "9",
"movement": null,
"windSpeedKTS": 60,
"windSpeedKPH": 111,
"windSpeedMPH": 69,
"windSpeedMPS": 31,
"gustSpeedKTS": 75,
"gustSpeedKPH": 139,
"gustSpeedMPH": 86,
"gustSpeedMPS": 39,
"pressureMB": null,
"pressureIN": null
},
"timestamp": 1507377600,
"dateTimeISO": "2017-10-07T07:00:00-05:00",
"loc": {
"long": -88.3,
"lat": 24.8
}
},
{
"location": {
"type": "Point",
"coordinates": [
-89.3,
28.1
]
},
"details": {
"basin": "AL",
"stormType": "H",
"stormCat": "H1",
"stormName": "Hurricane Nate",
"stormShortName": "Nate",
"advisoryNumber": "9",
"movement": null,
"windSpeedKTS": 70,
"windSpeedKPH": 130,
"windSpeedMPH": 81,
"windSpeedMPS": 36,
"gustSpeedKTS": 85,
"gustSpeedKPH": 157,
"gustSpeedMPH": 98,
"gustSpeedMPS": 44,
"pressureMB": null,
"pressureIN": null
},
"timestamp": 1507420800,
"dateTimeISO": "2017-10-07T19:00:00-05:00",
"loc": {
"long": -89.3,
"lat": 28.1
}
},
{
"location": {
"type": "Point",
"coordinates": [
-88.1,
31.1
]
},
"details": {
"basin": "AL",
"stormType": "TS",
"stormCat": "TS",
"stormName": "Tropical Storm Nate",
"stormShortName": "Nate",
"advisoryNumber": "9",
"movement": null,
"windSpeedKTS": 60,
"windSpeedKPH": 111,
"windSpeedMPH": 69,
"windSpeedMPS": 31,
"gustSpeedKTS": 75,
"gustSpeedKPH": 139,
"gustSpeedMPH": 86,
"gustSpeedMPS": 39,
"pressureMB": null,
"pressureIN": null
},
"timestamp": 1507464000,
"dateTimeISO": "2017-10-08T07:00:00-05:00",
"loc": {
"long": -88.1,
"lat": 31.1
}
},
{
"location": {
"type": "Point",
"coordinates": [
-80.5,
37.5
]
},
"details": {
"basin": "AL",
"stormType": "TD",
"stormCat": "TD",
"stormName": "Tropical Depression Nate",
"stormShortName": "Nate",
"advisoryNumber": "9",
"movement": null,
"windSpeedKTS": 30,
"windSpeedKPH": 56,
"windSpeedMPH": 35,
"windSpeedMPS": 15,
"gustSpeedKTS": 40,
"gustSpeedKPH": 74,
"gustSpeedMPH": 46,
"gustSpeedMPS": 21,
"pressureMB": null,
"pressureIN": null
},
"timestamp": 1507550400,
"dateTimeISO": "2017-10-09T07:00:00-05:00",
"loc": {
"long": -80.5,
"lat": 37.5
}
},
{
"location": {
"type": "Point",
"coordinates": [
-70,
42
]
},
"details": {
"basin": "AL",
"stormType": "LO",
"stormCat": "LO",
"stormName": "Post-tropical Nate",
"stormShortName": "Nate",
"advisoryNumber": "9",
"movement": null,
"windSpeedKTS": 25,
"windSpeedKPH": 46,
"windSpeedMPH": 29,
"windSpeedMPS": 13,
"gustSpeedKTS": 35,
"gustSpeedKPH": 65,
"gustSpeedMPH": 40,
"gustSpeedMPS": 18,
"pressureMB": null,
"pressureIN": null
},
"timestamp": 1507636800,
"dateTimeISO": "2017-10-10T07:00:00-05:00",
"loc": {
"long": -70,
"lat": 42
}
}
],
"breakPointAlerts": [
{
"alertType": "TR.A",
"coords": {
"type": "LineString",
"coordinates": [
[
-86.4,
30.38
],
[
-86.33,
30.48
],
[
-85.98,
30.28
],
[
-85.7,
30.12
],
[
-85.42,
29.95
],
[
-85.27,
29.68
]
]
}
},
{
"alertType": "TR.A",
"coords": {
"type": "LineString",
"coordinates": [
[
-92.04,
29.62
],
[
-91.54,
29.53
],
[
-91.29,
29.48
]
]
}
},
{
"alertType": "TR.A",
"coords": {
"type": "LineString",
"coordinates": [
[
-82.52,
21.6
],
[
-82.66,
21.9
],
[
-83,
21.9
],
[
-83.11,
21.5
],
[
-82.52,
21.6
]
]
}
},
{
"alertType": "HU.A",
"coords": {
"type": "LineString",
"coordinates": [
[
-88.18,
21.61
],
[
-87.1,
21.61
],
[
-86.82,
21.18
],
[
-86.98,
20.48
],
[
-87.43,
20.21
],
[
-87.47,
19.78
],
[
-87.45,
19.31
]
]
}
},
{
"alertType": "HU.A",
"coords": {
"type": "LineString",
"coordinates": [
[
-90.49,
30.34
],
[
-90.44,
30.26
],
[
-90.54,
30.17
],
[
-90.57,
30.25
],
[
-90.49,
30.34
]
]
}
},
{
"alertType": "HU.A",
"coords": {
"type": "LineString",
"coordinates": [
[
-90.24,
30.37
],
[
-89.75,
30.17
],
[
-90.09,
30.04
],
[
-90.42,
30.11
],
[
-90.24,
30.37
]
]
}
},
{
"alertType": "HU.A",
"coords": {
"type": "LineString",
"coordinates": [
[
-87.55,
30.27
],
[
-87.44,
30.3
],
[
-87.13,
30.53
],
[
-86.4,
30.38
]
]
}
},
{
"alertType": "HU.A",
"coords": {
"type": "LineString",
"coordinates": [
[
-91.29,
29.48
],
[
-91.28,
29.48
],
[
-90.85,
29.08
],
[
-90.1,
29.15
],
[
-89.96,
29.25
]
]
}
},
{
"alertType": "TR.W",
"coords": {
"type": "LineString",
"coordinates": [
[
-88.18,
21.61
],
[
-87.1,
21.61
],
[
-86.82,
21.18
],
[
-86.98,
20.48
],
[
-87.43,
20.21
],
[
-87.47,
19.78
],
[
-87.45,
19.31
]
]
}
},
{
"alertType": "TR.W",
"coords": {
"type": "LineString",
"coordinates": [
[
-90.24,
30.37
],
[
-89.75,
30.17
],
[
-90.09,
30.04
],
[
-90.42,
30.11
],
[
-90.24,
30.37
]
]
}
},
{
"alertType": "TR.W",
"coords": {
"type": "LineString",
"coordinates": [
[
-90.49,
30.34
],
[
-90.44,
30.26
],
[
-90.54,
30.17
],
[
-90.57,
30.25
],
[
-90.49,
30.34
]
]
}
},
{
"alertType": "TR.W",
"coords": {
"type": "LineString",
"coordinates": [
[
-82.83,
22.61
],
[
-83.39,
22.23
],
[
-84.92,
21.83
],
[
-84.93,
21.83
],
[
-84.2,
22.7
],
[
-82.95,
23.02
]
]
}
},
{
"alertType": "TR.W",
"coords": {
"type": "LineString",
"coordinates": [
[
-91.29,
29.48
],
[
-91.28,
29.48
],
[
-90.85,
29.08
],
[
-90.1,
29.15
],
[
-89.96,
29.25
]
]
}
},
{
"alertType": "HU.W",
"coords": {
"type": "LineString",
"coordinates": [
[
-89.96,
29.25
],
[
-89.98,
29.47
],
[
-89.1,
29.12
],
[
-89.1,
29.13
],
[
-89.1,
29.13
],
[
-89.1,
29.13
],
[
-89.1,
29.13
],
[
-89.1,
29.17
],
[
-89.65,
29.5
],
[
-89.44,
30
],
[
-89.73,
29.94
],
[
-89.6,
30.15
],
[
-89.08,
30.37
],
[
-88.55,
30.35
],
[
-88.32,
30.38
],
[
-88.33,
30.38
],
[
-88.2,
30.33
],
[
-88.03,
30.68
],
[
-87.94,
30.27
],
[
-87.55,
30.27
]
]
}
}
],
"errorCone": {
"type": "Polygon",
"coordinates": [
[
[
-85.04926,
18.36815
],
[
-85.01604,
18.36752
],
[
-84.98138,
18.3717
],
[
-84.94505,
18.37965
],
[
-84.90808,
18.39074
],
[
-84.87154,
18.40476
],
[
-84.81891,
18.43007
],
[
-84.78716,
18.45057
],
[
-84.75834,
18.474
],
[
-84.73285,
18.50078
],
[
-84.71052,
18.53028
],
[
-84.69151,
18.56228
],
[
-84.6702,
18.61521
],
[
-84.66164,
18.65224
],
[
-84.6581,
18.69011
],
[
-84.65976,
18.7286
],
[
-84.66582,
18.76772
],
[
-84.67522,
18.80684
],
[
-84.68733,
18.84533
],
[
-84.70112,
18.88341
],
[
-84.72325,
18.93968
],
[
-84.7314,
18.95767
],
[
-84.74789,
18.99344
],
[
-84.76439,
19.02922
],
[
-84.78089,
19.06499
],
[
-84.79739,
19.10076
],
[
-84.81305,
19.13737
],
[
-84.82788,
19.17482
],
[
-84.84271,
19.21227
],
[
-84.85754,
19.24971
],
[
-84.87215,
19.28737
],
[
-84.88719,
19.3246
],
[
-84.90265,
19.36142
],
[
-84.91768,
19.39866
],
[
-84.9323,
19.43632
],
[
-84.94713,
19.47377
],
[
-84.96196,
19.51121
],
[
-84.97658,
19.54887
],
[
-84.99162,
19.58611
],
[
-85.00708,
19.62292
],
[
-85.02211,
19.66016
],
[
-85.03673,
19.69782
],
[
-85.05156,
19.73526
],
[
-85.06638,
19.77271
],
[
-85.08121,
19.81016
],
[
-85.09687,
19.84676
],
[
-85.11337,
19.88254
],
[
-85.12987,
19.91832
],
[
-85.14637,
19.95409
],
[
-85.16286,
19.98986
],
[
-85.17853,
20.02647
],
[
-85.19336,
20.06392
],
[
-85.20818,
20.10136
],
[
-85.22301,
20.13881
],
[
-85.23784,
20.17626
],
[
-85.25351,
20.21287
],
[
-85.27,
20.24864
],
[
-85.2865,
20.28441
],
[
-85.303,
20.32018
],
[
-85.31949,
20.35596
],
[
-85.33516,
20.39257
],
[
-85.34999,
20.43002
],
[
-85.36481,
20.46746
],
[
-85.37964,
20.50491
],
[
-85.39447,
20.54235
],
[
-85.41013,
20.57896
],
[
-85.42664,
20.61474
],
[
-85.44313,
20.65051
],
[
-85.46799,
20.70407
],
[
-85.47614,
20.72206
],
[
-85.49179,
20.75867
],
[
-85.50662,
20.79612
],
[
-85.52145,
20.83356
],
[
-85.53627,
20.87101
],
[
-85.5511,
20.90845
],
[
-85.56677,
20.94506
],
[
-85.58327,
20.98083
],
[
-85.59998,
21.0164
],
[
-85.6171,
21.05154
],
[
-85.63464,
21.08627
],
[
-85.65198,
21.12121
],
[
-85.66931,
21.15615
],
[
-85.68685,
21.19087
],
[
-85.70419,
21.22581
],
[
-85.72152,
21.26075
],
[
-85.73906,
21.29547
],
[
-85.75619,
21.33062
],
[
-85.77289,
21.36618
],
[
-85.78939,
21.40195
],
[
-85.80505,
21.43857
],
[
-85.81988,
21.47601
],
[
-85.83472,
21.51346
],
[
-85.84953,
21.55091
],
[
-85.86436,
21.58835
],
[
-85.88004,
21.62496
],
[
-85.89653,
21.66073
],
[
-85.91323,
21.6963
],
[
-85.93036,
21.73144
],
[
-85.94791,
21.76617
],
[
-85.96524,
21.80111
],
[
-85.98257,
21.83604
],
[
-86.00011,
21.87077
],
[
-86.01745,
21.90571
],
[
-86.03478,
21.94064
],
[
-86.05232,
21.97537
],
[
-86.06966,
22.01031
],
[
-86.08699,
22.04524
],
[
-86.10454,
22.07997
],
[
-86.12187,
22.11491
],
[
-86.13921,
22.14984
],
[
-86.15675,
22.18457
],
[
-86.17409,
22.21951
],
[
-86.19141,
22.25444
],
[
-86.20896,
22.28917
],
[
-86.22629,
22.32411
],
[
-86.24363,
22.35904
],
[
-86.26117,
22.39377
],
[
-86.2785,
22.42871
],
[
-86.29584,
22.46364
],
[
-86.31338,
22.49837
],
[
-86.33071,
22.53331
],
[
-86.34805,
22.56824
],
[
-86.36559,
22.60297
],
[
-86.38292,
22.63791
],
[
-86.40025,
22.67284
],
[
-86.41779,
22.70757
],
[
-86.43513,
22.7425
],
[
-86.45247,
22.77744
],
[
-86.47001,
22.81217
],
[
-86.48734,
22.8471
],
[
-86.50468,
22.88204
],
[
-86.52243,
22.91656
],
[
-86.54038,
22.95086
],
[
-86.55876,
22.98476
],
[
-86.57799,
23.01781
],
[
-86.59782,
23.05024
],
[
-86.61787,
23.08245
],
[
-86.63792,
23.11467
],
[
-86.65776,
23.14709
],
[
-86.67697,
23.18015
],
[
-86.69535,
23.21404
],
[
-86.71331,
23.24835
],
[
-86.73106,
23.28287
],
[
-86.7484,
23.3178
],
[
-86.76573,
23.35274
],
[
-86.78327,
23.38747
],
[
-86.80061,
23.4224
],
[
-86.81794,
23.45734
],
[
-86.83549,
23.49207
],
[
-86.85281,
23.527
],
[
-86.87016,
23.56194
],
[
-86.8877,
23.59667
],
[
-86.90503,
23.6316
],
[
-86.92236,
23.66654
],
[
-86.9399,
23.70127
],
[
-86.95724,
23.7362
],
[
-86.97457,
23.77114
],
[
-86.99211,
23.80586
],
[
-87.00945,
23.8408
],
[
-87.02678,
23.87574
],
[
-87.04432,
23.91046
],
[
-87.06145,
23.94561
],
[
-87.07816,
23.98117
],
[
-87.09467,
24.01694
],
[
-87.11032,
24.05356
],
[
-87.12514,
24.091
],
[
-87.13997,
24.12845
],
[
-87.1548,
24.1659
],
[
-87.16963,
24.20334
],
[
-87.18529,
24.23995
],
[
-87.2018,
24.27573
],
[
-87.2185,
24.31129
],
[
-87.23563,
24.34644
],
[
-87.25316,
24.38116
],
[
-87.27029,
24.41631
],
[
-87.287,
24.45187
],
[
-87.3035,
24.48765
],
[
-87.31917,
24.52425
],
[
-87.33399,
24.5617
],
[
-87.34882,
24.59915
],
[
-87.36363,
24.63659
],
[
-87.37826,
24.67425
],
[
-87.3933,
24.71149
],
[
-87.40875,
24.74831
],
[
-87.42378,
24.78554
],
[
-87.4382,
24.82341
],
[
-87.45239,
24.86148
],
[
-87.46619,
24.89998
],
[
-87.47934,
24.9391
],
[
-87.49229,
24.97843
],
[
-87.50545,
25.01755
],
[
-87.51861,
25.05667
],
[
-87.53156,
25.096
],
[
-87.5445,
25.13533
],
[
-87.55766,
25.17445
],
[
-87.57082,
25.21357
],
[
-87.58376,
25.2529
],
[
-87.59671,
25.29222
],
[
-87.60986,
25.33134
],
[
-87.62302,
25.37046
],
[
-87.63597,
25.4098
],
[
-87.64892,
25.44913
],
[
-87.66208,
25.48825
],
[
-87.67523,
25.52737
],
[
-87.68818,
25.5667
],
[
-87.70113,
25.60603
],
[
-87.71429,
25.64515
],
[
-87.72745,
25.68427
],
[
-87.74039,
25.72359
],
[
-87.75334,
25.76292
],
[
-87.7665,
25.80204
],
[
-87.77966,
25.84116
],
[
-87.7926,
25.88049
],
[
-87.80555,
25.91982
],
[
-87.81871,
25.95894
],
[
-87.83187,
25.99807
],
[
-87.84482,
26.0374
],
[
-87.85776,
26.07673
],
[
-87.87071,
26.11605
],
[
-87.88324,
26.1558
],
[
-87.89514,
26.19618
],
[
-87.90663,
26.23697
],
[
-87.9177,
26.27818
],
[
-87.92835,
26.31981
],
[
-87.9388,
26.36165
],
[
-87.94923,
26.40349
],
[
-87.95968,
26.44533
],
[
-87.97012,
26.48717
],
[
-87.98056,
26.52901
],
[
-87.991,
26.57085
],
[
-88.00144,
26.61269
],
[
-88.01189,
26.65453
],
[
-88.02234,
26.69637
],
[
-88.03278,
26.73821
],
[
-88.043,
26.78026
],
[
-88.05261,
26.82294
],
[
-88.06139,
26.86645
],
[
-88.06931,
26.9108
],
[
-88.07642,
26.95599
],
[
-88.0831,
27.00159
],
[
-88.09021,
27.04678
],
[
-88.09793,
27.09134
],
[
-88.10587,
27.13569
],
[
-88.1136,
27.18025
],
[
-88.12049,
27.22565
],
[
-88.1257,
27.27272
],
[
-88.12904,
27.32167
],
[
-88.13094,
27.37208
],
[
-88.13176,
27.42355
],
[
-88.13197,
27.47564
],
[
-88.13197,
27.52794
],
[
-88.13197,
27.58024
],
[
-88.13197,
27.63254
],
[
-88.13197,
27.68484
],
[
-88.13197,
27.73714
],
[
-88.13176,
27.78923
],
[
-88.13094,
27.84069
],
[
-88.12905,
27.89111
],
[
-88.12571,
27.94006
],
[
-88.12048,
27.98713
],
[
-88.11359,
28.03253
],
[
-88.10587,
28.07709
],
[
-88.09814,
28.12165
],
[
-88.09124,
28.16704
],
[
-88.08603,
28.21411
],
[
-88.08269,
28.26307
],
[
-88.0806,
28.31327
],
[
-88.07893,
28.3639
],
[
-88.07684,
28.41411
],
[
-88.07349,
28.46306
],
[
-88.06828,
28.51013
],
[
-88.06137,
28.55553
],
[
-88.05365,
28.60009
],
[
-88.04572,
28.64444
],
[
-88.03799,
28.689
],
[
-88.0309,
28.73418
],
[
-88.02421,
28.77979
],
[
-88.01691,
28.82476
],
[
-88.00834,
28.86849
],
[
-87.99852,
28.91096
],
[
-87.98725,
28.95196
],
[
-87.9743,
28.99129
],
[
-87.96031,
29.02957
],
[
-87.94569,
29.06723
],
[
-87.93002,
29.10384
],
[
-87.91331,
29.1394
],
[
-87.89598,
29.17434
],
[
-87.87761,
29.20823
],
[
-87.85777,
29.24065
],
[
-87.84753,
29.25655
],
[
-87.82623,
29.28751
],
[
-87.80408,
29.31764
],
[
-87.78111,
29.34693
],
[
-87.75856,
29.37663
],
[
-87.73643,
29.40676
],
[
-87.71429,
29.43688
],
[
-87.69216,
29.46701
],
[
-87.6579,
29.51115
],
[
-87.64621,
29.52558
],
[
-87.62157,
29.5532
],
[
-87.5965,
29.58039
],
[
-87.57062,
29.60675
],
[
-87.54471,
29.63311
],
[
-87.51881,
29.65947
],
[
-87.49375,
29.68667
],
[
-87.45741,
29.72872
],
[
-87.44572,
29.74315
],
[
-87.42316,
29.77286
],
[
-87.40103,
29.80298
],
[
-87.37889,
29.83311
],
[
-87.35634,
29.86281
],
[
-87.33295,
29.89168
],
[
-87.3083,
29.9193
],
[
-87.28323,
29.94649
],
[
-87.25734,
29.97285
],
[
-87.23145,
29.99921
],
[
-87.20514,
30.02515
],
[
-87.17924,
30.05151
],
[
-87.15292,
30.07745
],
[
-87.12703,
30.10381
],
[
-87.10071,
30.12975
],
[
-87.0744,
30.15569
],
[
-87.04726,
30.18079
],
[
-87.01968,
30.20548
],
[
-86.99087,
30.22891
],
[
-86.96121,
30.2515
],
[
-86.93113,
30.27368
],
[
-86.90106,
30.29586
],
[
-86.8714,
30.31845
],
[
-86.84258,
30.34188
],
[
-86.81501,
30.36657
],
[
-86.78786,
30.39167
],
[
-86.76155,
30.41761
],
[
-86.73523,
30.44355
],
[
-86.70934,
30.46991
],
[
-86.68303,
30.49585
],
[
-86.65713,
30.52221
],
[
-86.63081,
30.54815
],
[
-86.6045,
30.57409
],
[
-86.57735,
30.59919
],
[
-86.54979,
30.62388
],
[
-86.52097,
30.64731
],
[
-86.49131,
30.6699
],
[
-86.46124,
30.69208
],
[
-86.43117,
30.71425
],
[
-86.40151,
30.73685
],
[
-86.37268,
30.76028
],
[
-86.34512,
30.78496
],
[
-86.31798,
30.81007
],
[
-86.29166,
30.83601
],
[
-86.26535,
30.86195
],
[
-86.23944,
30.88831
],
[
-86.21313,
30.91425
],
[
-86.18723,
30.94061
],
[
-86.16092,
30.96655
],
[
-86.1346,
30.99249
],
[
-86.10746,
31.01759
],
[
-86.0799,
31.04228
],
[
-86.05107,
31.06571
],
[
-86.02142,
31.0883
],
[
-85.99134,
31.11048
],
[
-85.96127,
31.13265
],
[
-85.93161,
31.15524
],
[
-85.9028,
31.17868
],
[
-85.87523,
31.20336
],
[
-85.84808,
31.22847
],
[
-85.82176,
31.25441
],
[
-85.79545,
31.28035
],
[
-85.76913,
31.30629
],
[
-85.74199,
31.33139
],
[
-85.71442,
31.35608
],
[
-85.6856,
31.37951
],
[
-85.65594,
31.4021
],
[
-85.62586,
31.42427
],
[
-85.59579,
31.44645
],
[
-85.56614,
31.46905
],
[
-85.53732,
31.49247
],
[
-85.50975,
31.51716
],
[
-85.4826,
31.54227
],
[
-85.45628,
31.56821
],
[
-85.42998,
31.59415
],
[
-85.40366,
31.62009
],
[
-85.37651,
31.64519
],
[
-85.34894,
31.66988
],
[
-85.32013,
31.69331
],
[
-85.29047,
31.7159
],
[
-85.26039,
31.73808
],
[
-85.23032,
31.76025
],
[
-85.20067,
31.78284
],
[
-85.17184,
31.80627
],
[
-85.14427,
31.83096
],
[
-85.11713,
31.85606
],
[
-85.09039,
31.88158
],
[
-85.06325,
31.90669
],
[
-85.03568,
31.93137
],
[
-85.00687,
31.95481
],
[
-84.9772,
31.9774
],
[
-84.94713,
31.99957
],
[
-84.91705,
32.02175
],
[
-84.88741,
32.04435
],
[
-84.85858,
32.06778
],
[
-84.83102,
32.09246
],
[
-84.80386,
32.11756
],
[
-84.77713,
32.14309
],
[
-84.74998,
32.16819
],
[
-84.72241,
32.19287
],
[
-84.6936,
32.2163
],
[
-84.66394,
32.2389
],
[
-84.63386,
32.26107
],
[
-84.60379,
32.28325
],
[
-84.57414,
32.30584
],
[
-84.54532,
32.32927
],
[
-84.51775,
32.35396
],
[
-84.4906,
32.37906
],
[
-84.46387,
32.40459
],
[
-84.43672,
32.42969
],
[
-84.40915,
32.45437
],
[
-84.38034,
32.4778
],
[
-84.35068,
32.5004
],
[
-84.3206,
32.52257
],
[
-84.29053,
32.54475
],
[
-84.26087,
32.56734
],
[
-84.23206,
32.59077
],
[
-84.20407,
32.61504
],
[
-84.17609,
32.63931
],
[
-84.1481,
32.66357
],
[
-84.11929,
32.687
],
[
-84.08962,
32.7096
],
[
-84.05955,
32.73177
],
[
-84.02947,
32.75395
],
[
-83.99982,
32.77654
],
[
-83.97101,
32.79997
],
[
-83.94301,
32.82424
],
[
-83.91503,
32.84851
],
[
-83.88704,
32.87277
],
[
-83.85823,
32.89621
],
[
-83.82857,
32.9188
],
[
-83.79849,
32.94097
],
[
-83.76842,
32.96315
],
[
-83.73877,
32.98574
],
[
-83.70995,
33.00917
],
[
-83.68196,
33.03344
],
[
-83.65398,
33.0577
],
[
-83.62599,
33.08197
],
[
-83.59717,
33.1054
],
[
-83.56752,
33.12799
],
[
-83.53745,
33.15017
],
[
-83.50737,
33.17235
],
[
-83.47729,
33.19452
],
[
-83.44765,
33.21711
],
[
-83.4184,
33.24013
],
[
-83.38875,
33.26272
],
[
-83.35867,
33.2849
],
[
-83.3286,
33.30707
],
[
-83.29852,
33.32925
],
[
-83.26888,
33.35184
],
[
-83.24005,
33.37527
],
[
-83.21207,
33.39954
],
[
-83.18408,
33.42381
],
[
-83.1561,
33.44807
],
[
-83.12729,
33.4715
],
[
-83.09763,
33.49409
],
[
-83.06755,
33.51627
],
[
-83.03748,
33.53844
],
[
-83.0074,
33.56062
],
[
-82.97775,
33.58321
],
[
-82.94852,
33.60622
],
[
-82.91885,
33.62882
],
[
-82.88878,
33.65099
],
[
-82.8587,
33.67317
],
[
-82.82864,
33.69534
],
[
-82.79856,
33.71752
],
[
-82.76891,
33.74011
],
[
-82.73967,
33.76312
],
[
-82.71001,
33.78572
],
[
-82.67994,
33.80789
],
[
-82.64944,
33.82965
],
[
-82.61854,
33.85099
],
[
-82.58722,
33.87191
],
[
-82.55589,
33.89283
],
[
-82.52457,
33.91375
],
[
-82.49365,
33.93509
],
[
-82.46316,
33.95684
],
[
-82.43308,
33.97902
],
[
-82.40343,
34.00161
],
[
-82.37419,
34.02462
],
[
-82.34454,
34.04722
],
[
-82.31447,
34.06939
],
[
-82.28439,
34.09157
],
[
-82.25432,
34.11374
],
[
-82.22424,
34.13592
],
[
-82.1946,
34.15851
],
[
-82.16535,
34.18152
],
[
-82.1357,
34.20412
],
[
-82.10562,
34.22629
],
[
-82.07513,
34.24805
],
[
-82.04423,
34.26939
],
[
-82.0129,
34.29031
],
[
-81.98157,
34.31123
],
[
-81.95025,
34.33215
],
[
-81.91892,
34.35307
],
[
-81.8876,
34.37399
],
[
-81.85627,
34.39491
],
[
-81.82494,
34.41582
],
[
-81.79362,
34.43674
],
[
-81.7627,
34.45808
],
[
-81.73221,
34.47984
],
[
-81.70214,
34.50202
],
[
-81.67249,
34.52461
],
[
-81.64325,
34.54762
],
[
-81.61359,
34.57022
],
[
-81.58352,
34.59239
],
[
-81.55303,
34.61415
],
[
-81.52212,
34.63549
],
[
-81.49079,
34.65641
],
[
-81.45947,
34.67733
],
[
-81.42814,
34.69825
],
[
-81.39681,
34.71917
],
[
-81.36549,
34.74009
],
[
-81.33416,
34.76101
],
[
-81.30283,
34.78193
],
[
-81.27151,
34.80285
],
[
-81.24018,
34.82376
],
[
-81.20885,
34.84468
],
[
-81.17753,
34.8656
],
[
-81.1462,
34.88652
],
[
-81.11488,
34.90744
],
[
-81.08355,
34.92836
],
[
-81.05222,
34.94928
],
[
-81.0209,
34.9702
],
[
-80.98957,
34.99112
],
[
-80.95824,
35.01204
],
[
-80.92692,
35.03296
],
[
-80.89559,
35.05388
],
[
-80.86427,
35.0748
],
[
-80.83252,
35.09531
],
[
-80.80036,
35.11539
],
[
-80.76778,
35.13506
],
[
-80.73478,
35.1543
],
[
-80.70137,
35.17313
],
[
-80.66837,
35.19238
],
[
-80.63579,
35.21204
],
[
-80.60364,
35.23212
],
[
-80.57188,
35.25262
],
[
-80.54056,
35.27354
],
[
-80.50923,
35.29446
],
[
-80.47791,
35.31538
],
[
-80.44658,
35.3363
],
[
-80.41483,
35.3568
],
[
-80.38268,
35.37689
],
[
-80.3501,
35.39655
],
[
-80.3171,
35.4158
],
[
-80.28368,
35.43463
],
[
-80.25069,
35.45387
],
[
-80.21811,
35.47354
],
[
-80.18594,
35.49362
],
[
-80.15378,
35.51371
],
[
-80.12162,
35.53379
],
[
-80.08904,
35.55345
],
[
-80.05605,
35.5727
],
[
-80.02263,
35.59153
],
[
-79.98963,
35.61077
],
[
-79.95706,
35.63044
],
[
-79.9249,
35.65052
],
[
-79.89273,
35.67061
],
[
-79.86057,
35.69069
],
[
-79.82799,
35.71035
],
[
-79.79457,
35.72918
],
[
-79.76031,
35.74717
],
[
-79.72607,
35.76516
],
[
-79.69183,
35.78316
],
[
-79.65757,
35.80115
],
[
-79.62416,
35.81997
],
[
-79.59158,
35.83964
],
[
-79.55942,
35.85972
],
[
-79.52725,
35.87981
],
[
-79.49509,
35.89989
],
[
-79.46252,
35.91955
],
[
-79.42911,
35.93838
],
[
-79.39485,
35.95637
],
[
-79.3606,
35.97436
],
[
-79.32593,
35.99193
],
[
-79.3084,
36.00051
],
[
-79.25618,
36.02666
],
[
-79.22151,
36.04423
],
[
-79.20377,
36.0526
],
[
-79.1505,
36.07771
],
[
-79.13255,
36.08586
],
[
-79.07742,
36.10909
],
[
-79.05862,
36.11641
],
[
-79.02124,
36.13126
],
[
-78.98386,
36.14611
],
[
-78.92789,
36.1685
],
[
-78.89196,
36.18482
],
[
-78.85645,
36.20155
],
[
-78.8387,
36.20992
],
[
-78.78629,
36.23586
],
[
-78.75162,
36.25343
],
[
-78.73386,
36.2618
],
[
-78.68061,
36.28691
],
[
-78.64469,
36.30322
],
[
-78.62611,
36.31076
],
[
-78.58872,
36.32561
],
[
-78.55134,
36.34046
],
[
-78.49516,
36.36264
],
[
-78.47658,
36.37017
],
[
-78.42206,
36.39402
],
[
-78.38657,
36.41075
],
[
-78.35065,
36.42707
],
[
-78.31514,
36.44381
],
[
-78.27922,
36.46012
],
[
-78.24204,
36.47519
],
[
-78.22324,
36.48251
],
[
-78.18587,
36.49736
],
[
-78.12968,
36.51954
],
[
-78.11089,
36.52686
],
[
-78.05534,
36.54966
],
[
-78.03696,
36.5574
],
[
-77.99979,
36.57246
],
[
-77.96219,
36.5871
],
[
-77.9248,
36.60196
],
[
-77.88742,
36.61681
],
[
-77.84984,
36.63145
],
[
-77.79428,
36.65426
],
[
-77.75753,
36.66974
],
[
-77.73874,
36.67706
],
[
-77.70093,
36.6915
],
[
-77.64392,
36.71283
],
[
-77.60507,
36.72622
],
[
-77.58544,
36.73271
],
[
-77.54639,
36.74589
],
[
-77.48895,
36.76681
],
[
-77.45094,
36.78103
],
[
-77.41336,
36.79568
],
[
-77.3766,
36.81116
],
[
-77.33984,
36.82664
],
[
-77.30225,
36.84129
],
[
-77.28325,
36.8484
],
[
-77.22624,
36.86974
],
[
-77.20681,
36.87643
],
[
-77.16776,
36.88961
],
[
-77.12871,
36.90279
],
[
-77.09027,
36.9166
],
[
-77.05227,
36.93082
],
[
-77.01447,
36.94526
],
[
-76.95891,
36.96806
],
[
-76.92216,
36.98354
],
[
-76.88457,
36.99818
],
[
-76.86556,
37.00529
],
[
-76.80855,
37.02664
],
[
-76.78912,
37.03333
],
[
-76.73044,
37.05299
],
[
-76.69118,
37.06596
],
[
-76.65234,
37.07935
],
[
-76.63271,
37.08584
],
[
-76.59344,
37.09881
],
[
-76.55418,
37.11178
],
[
-76.51512,
37.12495
],
[
-76.47607,
37.13814
],
[
-76.43681,
37.15111
],
[
-76.37791,
37.17057
],
[
-76.35849,
37.17726
],
[
-76.2998,
37.19692
],
[
-76.28018,
37.20341
],
[
-76.22128,
37.22286
],
[
-76.20186,
37.22956
],
[
-76.14317,
37.24922
],
[
-76.12355,
37.25571
],
[
-76.08427,
37.26868
],
[
-76.04523,
37.28186
],
[
-76.00618,
37.29504
],
[
-75.96691,
37.30801
],
[
-75.90802,
37.32746
],
[
-75.8886,
37.33415
],
[
-75.82992,
37.35382
],
[
-75.81029,
37.36031
],
[
-75.77102,
37.37328
],
[
-75.73196,
37.38646
],
[
-75.69292,
37.39964
],
[
-75.65366,
37.41261
],
[
-75.6144,
37.42558
],
[
-75.57533,
37.43876
],
[
-75.53628,
37.45193
],
[
-75.49702,
37.46491
],
[
-75.45775,
37.47787
],
[
-75.41871,
37.49106
],
[
-75.37965,
37.50423
],
[
-75.34039,
37.5172
],
[
-75.30113,
37.53018
],
[
-75.26186,
37.54314
],
[
-75.22218,
37.5557
],
[
-75.18188,
37.56763
],
[
-75.14115,
37.57913
],
[
-75.10001,
37.59022
],
[
-75.05867,
37.6011
],
[
-75.01752,
37.61218
],
[
-74.9768,
37.62369
],
[
-74.93649,
37.63562
],
[
-74.87717,
37.65465
],
[
-74.85754,
37.66113
],
[
-74.79865,
37.68059
],
[
-74.7594,
37.69356
],
[
-74.73997,
37.70026
],
[
-74.70091,
37.71344
],
[
-74.66165,
37.7264
],
[
-74.60276,
37.74586
],
[
-74.58334,
37.75256
],
[
-74.54428,
37.76574
],
[
-74.4854,
37.78519
],
[
-74.46576,
37.79168
],
[
-74.40686,
37.81113
],
[
-74.38681,
37.8172
],
[
-74.32625,
37.83498
],
[
-74.30578,
37.84063
],
[
-74.26463,
37.85172
],
[
-74.22328,
37.86259
],
[
-74.18214,
37.87368
],
[
-74.12116,
37.89104
],
[
-74.10112,
37.89711
],
[
-74.06144,
37.90966
],
[
-74.02217,
37.92263
],
[
-73.98291,
37.9356
],
[
-73.94365,
37.94857
],
[
-73.88477,
37.96803
],
[
-73.84467,
37.98016
],
[
-73.8244,
37.98602
],
[
-73.78368,
37.99753
],
[
-73.72186,
38.01405
],
[
-73.70119,
38.01949
],
[
-73.66005,
38.03058
],
[
-73.59906,
38.04795
],
[
-73.57901,
38.05402
],
[
-73.53912,
38.06635
],
[
-73.49924,
38.0787
],
[
-73.43866,
38.09648
],
[
-73.4182,
38.10213
],
[
-73.37706,
38.11322
],
[
-73.33571,
38.1241
],
[
-73.29457,
38.13519
],
[
-73.25385,
38.14669
],
[
-73.21353,
38.15862
],
[
-73.17386,
38.17117
],
[
-73.1346,
38.18414
],
[
-73.0757,
38.20359
],
[
-73.05608,
38.21008
],
[
-73.01681,
38.22305
],
[
-72.97713,
38.2356
],
[
-72.93683,
38.24752
],
[
-72.8961,
38.25903
],
[
-72.85496,
38.27011
],
[
-72.81361,
38.28099
],
[
-72.77247,
38.29208
],
[
-72.73174,
38.30359
],
[
-72.67139,
38.32158
],
[
-72.65175,
38.32806
],
[
-72.61249,
38.34103
],
[
-72.55359,
38.36049
],
[
-72.53397,
38.36697
],
[
-72.49471,
38.37994
],
[
-72.45502,
38.3925
],
[
-72.41472,
38.40442
],
[
-72.37399,
38.41593
],
[
-72.33286,
38.42701
],
[
-72.2915,
38.43789
],
[
-72.25035,
38.44898
],
[
-72.18938,
38.46634
],
[
-72.16933,
38.47241
],
[
-72.12944,
38.48475
],
[
-72.08955,
38.49709
],
[
-72.04924,
38.50902
],
[
-72.00851,
38.52053
],
[
-71.96738,
38.53161
],
[
-71.92603,
38.54249
],
[
-71.88489,
38.55358
],
[
-71.84415,
38.56509
],
[
-71.78381,
38.58308
],
[
-71.76418,
38.58956
],
[
-71.72491,
38.60253
],
[
-71.68565,
38.6155
],
[
-71.64639,
38.62848
],
[
-71.60713,
38.64144
],
[
-71.56744,
38.654
],
[
-71.52713,
38.66592
],
[
-71.48641,
38.67743
],
[
-71.44527,
38.68851
],
[
-71.40392,
38.69939
],
[
-71.36278,
38.71048
],
[
-71.32205,
38.72198
],
[
-71.28175,
38.73391
],
[
-71.22244,
38.75295
],
[
-71.2028,
38.75943
],
[
-71.16354,
38.7724
],
[
-71.10465,
38.79185
],
[
-71.08502,
38.79834
],
[
-71.04535,
38.8109
],
[
-71.00504,
38.82281
],
[
-70.96431,
38.83433
],
[
-70.92317,
38.84541
],
[
-70.88182,
38.85629
],
[
-70.84068,
38.86738
],
[
-70.79996,
38.87889
],
[
-70.75964,
38.89081
],
[
-70.71996,
38.90336
],
[
-70.6807,
38.91633
],
[
-70.62181,
38.93579
],
[
-70.60218,
38.94227
],
[
-70.54327,
38.96173
],
[
-70.50317,
38.97386
],
[
-70.48293,
38.97972
],
[
-70.4422,
38.99123
],
[
-70.40106,
39.00231
],
[
-70.35971,
39.01319
],
[
-70.31857,
39.02428
],
[
-70.27785,
39.03579
],
[
-70.23753,
39.04771
],
[
-70.19786,
39.06026
],
[
-70.15859,
39.07323
],
[
-70.11934,
39.0862
],
[
-70.06044,
39.10566
],
[
-70.04102,
39.11235
],
[
-70.00197,
39.12553
],
[
-69.94307,
39.14499
],
[
-69.92344,
39.15147
],
[
-69.88438,
39.16465
],
[
-69.8257,
39.18431
],
[
-69.80606,
39.1908
],
[
-69.7668,
39.20377
],
[
-69.70791,
39.22323
],
[
-69.68787,
39.22929
],
[
-69.64755,
39.24122
],
[
-69.60683,
39.25272
],
[
-69.56569,
39.26381
],
[
-69.52434,
39.27469
],
[
-69.4832,
39.28578
],
[
-69.44247,
39.29729
],
[
-69.40216,
39.30921
],
[
-69.36249,
39.32176
],
[
-69.32323,
39.33473
],
[
-69.28397,
39.3477
],
[
-69.24471,
39.36067
],
[
-69.18622,
39.38055
],
[
-69.16659,
39.38703
],
[
-69.12733,
39.4
],
[
-69.08806,
39.41297
],
[
-69.04902,
39.42616
],
[
-69.00996,
39.43933
],
[
-68.95107,
39.45879
],
[
-68.93144,
39.46527
],
[
-68.89238,
39.47845
],
[
-68.8337,
39.49812
],
[
-68.81407,
39.5046
],
[
-68.7748,
39.51757
],
[
-68.73575,
39.53075
],
[
-68.6967,
39.54393
],
[
-68.65744,
39.5569
],
[
-68.61818,
39.56987
],
[
-68.57912,
39.58305
],
[
-68.54006,
39.59623
],
[
-68.48117,
39.61568
],
[
-68.46175,
39.62238
],
[
-68.40431,
39.6433
],
[
-68.36631,
39.65752
],
[
-68.34772,
39.66505
],
[
-68.29321,
39.6889
],
[
-68.25772,
39.70564
],
[
-68.22221,
39.72237
],
[
-68.18755,
39.73994
],
[
-68.15288,
39.75752
],
[
-68.1178,
39.77467
],
[
-68.10045,
39.78346
],
[
-68.04845,
39.80982
],
[
-68.01337,
39.82697
],
[
-67.9787,
39.84455
],
[
-67.94445,
39.86254
],
[
-67.91019,
39.88053
],
[
-67.87679,
39.89936
],
[
-67.84421,
39.91903
],
[
-67.81204,
39.93911
],
[
-67.7803,
39.95961
],
[
-67.74897,
39.98053
],
[
-67.71765,
40.00145
],
[
-67.68632,
40.02237
],
[
-67.65499,
40.04329
],
[
-67.62366,
40.06421
],
[
-67.59235,
40.08513
],
[
-67.56143,
40.10647
],
[
-67.53094,
40.12822
],
[
-67.50086,
40.1504
],
[
-67.47121,
40.17299
],
[
-67.44197,
40.196
],
[
-67.41232,
40.21859
],
[
-67.38225,
40.24077
],
[
-67.35217,
40.26295
],
[
-67.3221,
40.28512
],
[
-67.29245,
40.30772
],
[
-67.26363,
40.33115
],
[
-67.23605,
40.35583
],
[
-67.20891,
40.38094
],
[
-67.18259,
40.40688
],
[
-67.15628,
40.43282
],
[
-67.13039,
40.45918
],
[
-67.09196,
40.49914
],
[
-67.07943,
40.51273
],
[
-67.04308,
40.55478
],
[
-67.03139,
40.56921
],
[
-66.99776,
40.61398
],
[
-66.97563,
40.64411
],
[
-66.95349,
40.67423
],
[
-66.93114,
40.70415
],
[
-66.90838,
40.73365
],
[
-66.88561,
40.76315
],
[
-66.86327,
40.79306
],
[
-66.84135,
40.82339
],
[
-66.83049,
40.83867
],
[
-66.79874,
40.88532
],
[
-66.77806,
40.91691
],
[
-66.7578,
40.94892
],
[
-66.73796,
40.98134
],
[
-66.71875,
41.0144
],
[
-66.70037,
41.04829
],
[
-66.68241,
41.0826
],
[
-66.66467,
41.11711
],
[
-66.64754,
41.15226
],
[
-66.63083,
41.18782
],
[
-66.61433,
41.22359
],
[
-66.59868,
41.2602
],
[
-66.58405,
41.29786
],
[
-66.57006,
41.33614
],
[
-66.5569,
41.37526
],
[
-66.54478,
41.41543
],
[
-66.5333,
41.45622
],
[
-66.52223,
41.49744
],
[
-66.51158,
41.53906
],
[
-66.50135,
41.58111
],
[
-66.49174,
41.62379
],
[
-66.48318,
41.66751
],
[
-66.47607,
41.7127
],
[
-66.47086,
41.75977
],
[
-66.46751,
41.80872
],
[
-66.46564,
41.85914
],
[
-66.4648,
41.9106
],
[
-66.46459,
41.96269
],
[
-66.46459,
42.01499
],
[
-66.46459,
42.06729
],
[
-66.46459,
42.11959
],
[
-66.46459,
42.17189
],
[
-66.4648,
42.22398
],
[
-66.46564,
42.27544
],
[
-66.46751,
42.32586
],
[
-66.47086,
42.37482
],
[
-66.47629,
42.42168
],
[
-66.48402,
42.46624
],
[
-66.49362,
42.50891
],
[
-66.50468,
42.55013
],
[
-66.51701,
42.59008
],
[
-66.52995,
42.62941
],
[
-66.54291,
42.66874
],
[
-66.55606,
42.70786
],
[
-66.56985,
42.74635
],
[
-66.58405,
42.78443
],
[
-66.59867,
42.82208
],
[
-66.61433,
42.85869
],
[
-66.63083,
42.89447
],
[
-66.64754,
42.93003
],
[
-66.66466,
42.96518
],
[
-66.68242,
42.99969
],
[
-66.70038,
43.034
],
[
-66.71875,
43.06789
],
[
-66.73796,
43.10094
],
[
-66.7578,
43.13337
],
[
-66.77806,
43.16538
],
[
-66.79874,
43.19697
],
[
-66.81983,
43.22814
],
[
-66.84134,
43.25889
],
[
-66.86348,
43.28902
],
[
-66.88644,
43.31831
],
[
-66.91026,
43.34676
],
[
-66.93448,
43.37479
],
[
-66.95871,
43.40282
],
[
-66.98252,
43.43127
],
[
-67.00549,
43.46056
],
[
-67.02784,
43.49047
],
[
-67.05019,
43.52039
],
[
-67.07316,
43.54968
],
[
-67.09739,
43.57771
],
[
-67.12349,
43.60386
],
[
-67.15147,
43.62813
],
[
-67.18073,
43.65114
],
[
-67.22562,
43.68461
],
[
-67.24045,
43.69591
],
[
-67.26968,
43.71892
],
[
-67.29787,
43.74298
],
[
-67.32523,
43.76788
],
[
-67.35217,
43.79319
],
[
-67.37912,
43.8185
],
[
-67.40646,
43.84339
],
[
-67.43466,
43.86745
],
[
-67.47873,
43.90176
],
[
-67.49397,
43.91264
],
[
-67.52467,
43.93419
],
[
-67.55579,
43.95532
],
[
-67.58733,
43.97603
],
[
-67.63536,
44.00636
],
[
-67.66794,
44.02603
],
[
-67.70135,
44.04485
],
[
-67.7356,
44.06285
],
[
-67.76985,
44.08084
],
[
-67.80452,
44.09841
],
[
-67.8396,
44.11556
],
[
-67.87428,
44.13314
],
[
-67.90894,
44.15071
],
[
-67.94403,
44.16786
],
[
-67.9787,
44.18544
],
[
-68.01337,
44.20301
],
[
-68.04845,
44.22016
],
[
-68.08313,
44.23774
],
[
-68.11779,
44.25531
],
[
-68.15329,
44.27205
],
[
-68.1888,
44.28878
],
[
-68.22472,
44.3051
],
[
-68.26189,
44.32016
],
[
-68.2999,
44.33438
],
[
-68.35732,
44.35531
],
[
-68.39638,
44.36848
],
[
-68.43565,
44.38145
],
[
-68.45528,
44.38794
],
[
-68.49413,
44.40133
],
[
-68.53339,
44.4143
],
[
-68.57265,
44.42727
],
[
-68.61191,
44.44024
],
[
-68.65117,
44.45321
],
[
-68.69127,
44.46535
],
[
-68.73178,
44.47706
],
[
-68.7934,
44.4938
],
[
-68.81406,
44.49923
],
[
-68.85583,
44.5097
],
[
-68.91933,
44.52455
],
[
-68.94063,
44.52936
],
[
-69.00536,
44.54296
],
[
-69.04901,
44.55154
],
[
-69.07094,
44.55573
],
[
-69.13611,
44.5689
],
[
-69.17975,
44.57748
],
[
-69.22402,
44.58543
],
[
-69.26934,
44.59233
],
[
-69.31612,
44.59777
],
[
-69.36417,
44.60195
],
[
-69.41261,
44.60572
],
[
-69.46065,
44.60991
],
[
-69.50742,
44.61535
],
[
-69.55273,
44.62225
],
[
-69.59722,
44.62999
],
[
-69.64171,
44.63773
],
[
-69.68703,
44.64463
],
[
-69.73402,
44.64986
],
[
-69.78289,
44.65321
],
[
-69.83322,
44.65509
],
[
-69.8846,
44.65593
],
[
-69.9366,
44.65614
],
[
-69.98881,
44.65614
],
[
-70.04102,
44.65614
],
[
-70.09302,
44.65593
],
[
-70.14439,
44.65509
],
[
-70.19472,
44.65321
],
[
-70.24359,
44.64986
],
[
-70.29059,
44.64463
],
[
-70.3359,
44.63773
],
[
-70.38039,
44.62999
],
[
-70.42487,
44.62225
],
[
-70.47018,
44.61534
],
[
-70.51697,
44.6099
],
[
-70.565,
44.60572
],
[
-70.61345,
44.60195
],
[
-70.66148,
44.59777
],
[
-70.70827,
44.59233
],
[
-70.75359,
44.58543
],
[
-70.79787,
44.57748
],
[
-70.84151,
44.5689
],
[
-70.88495,
44.56011
],
[
-70.9286,
44.55154
],
[
-70.97224,
44.54295
],
[
-71.01547,
44.53397
],
[
-71.05829,
44.52455
],
[
-71.10068,
44.51472
],
[
-71.14265,
44.50447
],
[
-71.18443,
44.494
],
[
-71.2262,
44.48354
],
[
-71.26796,
44.47308
],
[
-71.30973,
44.46262
],
[
-71.3515,
44.45216
],
[
-71.39305,
44.4415
],
[
-71.4342,
44.43041
],
[
-71.47492,
44.4189
],
[
-71.51502,
44.40676
],
[
-71.57329,
44.38668
],
[
-71.59229,
44.37957
],
[
-71.6489,
44.35781
],
[
-71.68565,
44.34233
],
[
-71.72241,
44.32685
],
[
-71.7412,
44.31953
],
[
-71.77879,
44.30489
],
[
-71.83476,
44.2825
],
[
-71.87235,
44.26786
],
[
-71.89094,
44.26033
],
[
-71.94545,
44.23648
],
[
-71.98096,
44.21974
],
[
-72.01645,
44.20301
],
[
-72.05112,
44.18543
],
[
-72.08578,
44.16787
],
[
-72.12088,
44.15071
],
[
-72.15555,
44.13313
],
[
-72.18979,
44.11515
],
[
-72.22404,
44.09715
],
[
-72.25745,
44.07833
],
[
-72.29004,
44.05866
],
[
-72.3222,
44.03858
],
[
-72.35437,
44.0185
],
[
-72.38652,
43.99841
],
[
-72.4191,
43.97875
],
[
-72.45251,
43.95992
],
[
-72.48676,
43.94193
],
[
-72.52101,
43.92393
],
[
-72.55568,
43.90636
],
[
-72.59076,
43.88921
],
[
-72.62544,
43.87164
],
[
-72.6601,
43.85406
],
[
-72.69519,
43.83691
],
[
-72.72986,
43.81934
],
[
-72.76453,
43.80176
],
[
-72.79961,
43.78461
],
[
-72.83429,
43.76704
],
[
-72.86895,
43.74947
],
[
-72.90402,
43.73231
],
[
-72.93871,
43.71474
],
[
-72.97337,
43.69717
],
[
-73.00845,
43.68001
],
[
-73.04312,
43.66244
],
[
-73.07779,
43.64487
],
[
-73.11287,
43.62771
],
[
-73.14754,
43.61014
],
[
-73.18221,
43.59256
],
[
-73.21729,
43.57541
],
[
-73.25197,
43.55784
],
[
-73.28663,
43.54027
],
[
-73.32172,
43.52311
],
[
-73.35638,
43.50554
],
[
-73.39105,
43.48797
],
[
-73.42613,
43.47081
],
[
-73.46082,
43.45324
],
[
-73.49548,
43.43567
],
[
-73.53055,
43.41851
],
[
-73.56523,
43.40094
],
[
-73.5999,
43.38337
],
[
-73.63498,
43.36621
],
[
-73.66965,
43.34864
],
[
-73.70432,
43.33107
],
[
-73.7394,
43.31391
],
[
-73.77406,
43.29634
],
[
-73.80874,
43.27877
],
[
-73.84382,
43.26161
],
[
-73.87849,
43.24404
],
[
-73.91315,
43.22646
],
[
-73.94824,
43.20931
],
[
-73.98291,
43.19173
],
[
-74.01758,
43.17416
],
[
-74.05267,
43.15701
],
[
-74.08734,
43.13943
],
[
-74.12201,
43.12187
],
[
-74.15708,
43.10471
],
[
-74.19176,
43.08714
],
[
-74.22643,
43.06957
],
[
-74.24396,
43.06099
],
[
-74.29617,
43.03484
],
[
-74.33084,
43.01727
],
[
-74.36594,
43.00011
],
[
-74.40059,
42.98254
],
[
-74.43526,
42.96497
],
[
-74.47076,
42.94823
],
[
-74.50627,
42.9315
],
[
-74.54219,
42.91518
],
[
-74.56078,
42.90765
],
[
-74.61696,
42.88548
],
[
-74.65413,
42.87041
],
[
-74.69173,
42.85576
],
[
-74.7289,
42.84071
],
[
-74.76482,
42.82439
],
[
-74.80032,
42.80765
],
[
-74.83582,
42.79092
],
[
-74.8705,
42.77334
],
[
-74.90516,
42.75577
],
[
-74.94025,
42.73861
],
[
-74.97491,
42.72104
],
[
-75.00958,
42.70347
],
[
-75.04466,
42.68631
],
[
-75.07935,
42.66874
],
[
-75.11401,
42.65117
],
[
-75.14908,
42.63401
],
[
-75.18376,
42.61644
],
[
-75.21843,
42.59887
],
[
-75.25351,
42.58171
],
[
-75.28818,
42.56414
],
[
-75.32285,
42.54657
],
[
-75.35793,
42.52942
],
[
-75.39259,
42.51184
],
[
-75.42726,
42.49427
],
[
-75.46234,
42.47712
],
[
-75.49702,
42.45954
],
[
-75.53168,
42.44197
],
[
-75.56677,
42.42481
],
[
-75.60144,
42.40724
],
[
-75.63611,
42.38967
],
[
-75.67119,
42.37251
],
[
-75.70587,
42.35494
],
[
-75.74053,
42.33737
],
[
-75.75828,
42.329
],
[
-75.81154,
42.3039
],
[
-75.84746,
42.28758
],
[
-75.88463,
42.27252
],
[
-75.92223,
42.25787
],
[
-75.9594,
42.24281
],
[
-75.99699,
42.22817
],
[
-76.01557,
42.22064
],
[
-76.07008,
42.19679
],
[
-76.10559,
42.18005
],
[
-76.14108,
42.16331
],
[
-76.17576,
42.14574
],
[
-76.21042,
42.12817
],
[
-76.24551,
42.11102
],
[
-76.28018,
42.09344
],
[
-76.31485,
42.07587
],
[
-76.34992,
42.05871
],
[
-76.3846,
42.04114
],
[
-76.41927,
42.02357
],
[
-76.45435,
42.00642
],
[
-76.48902,
41.98885
],
[
-76.52368,
41.97127
],
[
-76.55878,
41.95412
],
[
-76.59344,
41.93655
],
[
-76.62811,
41.91897
],
[
-76.66319,
41.90182
],
[
-76.69786,
41.88424
],
[
-76.73253,
41.86667
],
[
-76.76761,
41.84951
],
[
-76.80228,
41.83194
],
[
-76.83694,
41.81437
],
[
-76.87204,
41.79722
],
[
-76.90671,
41.77965
],
[
-76.94138,
41.76207
],
[
-76.97645,
41.74492
],
[
-77.01112,
41.72735
],
[
-77.04579,
41.70977
],
[
-77.08087,
41.69262
],
[
-77.11555,
41.67505
],
[
-77.15021,
41.65747
],
[
-77.1853,
41.64032
],
[
-77.21997,
41.62275
],
[
-77.25464,
41.60518
],
[
-77.28972,
41.58802
],
[
-77.32439,
41.57044
],
[
-77.35905,
41.55287
],
[
-77.39413,
41.53571
],
[
-77.42881,
41.51814
],
[
-77.46347,
41.50057
],
[
-77.49857,
41.48341
],
[
-77.53323,
41.46584
],
[
-77.5679,
41.44827
],
[
-77.60298,
41.43112
],
[
-77.63765,
41.41354
],
[
-77.67232,
41.39597
],
[
-77.7074,
41.37882
],
[
-77.74207,
41.36124
],
[
-77.77673,
41.34367
],
[
-77.81183,
41.32652
],
[
-77.8465,
41.30894
],
[
-77.88116,
41.29137
],
[
-77.91624,
41.27422
],
[
-77.95091,
41.25665
],
[
-77.98558,
41.23907
],
[
-78.02066,
41.22192
],
[
-78.05534,
41.20435
],
[
-78.09,
41.18677
],
[
-78.12509,
41.16962
],
[
-78.15976,
41.15205
],
[
-78.19443,
41.13448
],
[
-78.22951,
41.11732
],
[
-78.26418,
41.09975
],
[
-78.29884,
41.08218
],
[
-78.33392,
41.06502
],
[
-78.36861,
41.04745
],
[
-78.40327,
41.02988
],
[
-78.43835,
41.01272
],
[
-78.47302,
40.99515
],
[
-78.50727,
40.97716
],
[
-78.5244,
40.96816
],
[
-78.57494,
40.94033
],
[
-78.60751,
40.92067
],
[
-78.63968,
40.90059
],
[
-78.67184,
40.8805
],
[
-78.704,
40.86042
],
[
-78.73658,
40.84076
],
[
-78.76999,
40.82193
],
[
-78.80424,
40.80394
],
[
-78.8385,
40.78595
],
[
-78.87317,
40.76838
],
[
-78.90825,
40.75122
],
[
-78.94292,
40.73365
],
[
-78.97758,
40.71608
],
[
-79.01266,
40.69892
],
[
-79.04734,
40.68135
],
[
-79.082,
40.66378
],
[
-79.1171,
40.64662
],
[
-79.15176,
40.62905
],
[
-79.16888,
40.62006
],
[
-79.22026,
40.59307
],
[
-79.25367,
40.57424
],
[
-79.28625,
40.55457
],
[
-79.31842,
40.53449
],
[
-79.35059,
40.51441
],
[
-79.38274,
40.49432
],
[
-79.41531,
40.47466
],
[
-79.44873,
40.45583
],
[
-79.48297,
40.43784
],
[
-79.51723,
40.41985
],
[
-79.55148,
40.40186
],
[
-79.58573,
40.38387
],
[
-79.61915,
40.36504
],
[
-79.65173,
40.34537
],
[
-79.68389,
40.32529
],
[
-79.71605,
40.3052
],
[
-79.7482,
40.28512
],
[
-79.78079,
40.26546
],
[
-79.8142,
40.24663
],
[
-79.83133,
40.23763
],
[
-79.88271,
40.21065
],
[
-79.91695,
40.19266
],
[
-79.9512,
40.17467
],
[
-79.98462,
40.15584
],
[
-80.0172,
40.13617
],
[
-80.04936,
40.11609
],
[
-80.08153,
40.096
],
[
-80.11368,
40.07592
],
[
-80.14626,
40.05626
],
[
-80.17926,
40.03701
],
[
-80.19597,
40.0276
],
[
-80.24567,
39.99894
],
[
-80.27826,
39.97927
],
[
-80.31042,
39.95919
],
[
-80.34258,
39.93911
],
[
-80.37473,
39.91903
],
[
-80.40732,
39.89936
],
[
-80.44031,
39.88011
],
[
-80.47372,
39.86128
],
[
-80.50672,
39.84204
],
[
-80.53931,
39.82237
],
[
-80.57147,
39.80229
],
[
-80.60321,
39.78179
],
[
-80.63454,
39.76087
],
[
-80.66586,
39.73995
],
[
-80.69719,
39.71903
],
[
-80.72852,
39.69811
],
[
-80.75984,
39.67719
],
[
-80.79117,
39.65627
],
[
-80.82249,
39.63535
],
[
-80.85382,
39.61443
],
[
-80.88515,
39.59351
],
[
-80.9169,
39.57301
],
[
-80.94905,
39.55293
],
[
-80.98163,
39.53326
],
[
-81.01463,
39.51402
],
[
-81.04805,
39.49519
],
[
-81.08104,
39.47594
],
[
-81.11362,
39.45628
],
[
-81.14578,
39.43619
],
[
-81.17753,
39.41569
],
[
-81.20885,
39.39477
],
[
-81.24018,
39.37385
],
[
-81.27151,
39.35293
],
[
-81.30283,
39.33201
],
[
-81.33416,
39.31109
],
[
-81.36549,
39.29017
],
[
-81.39639,
39.26883
],
[
-81.42689,
39.24708
],
[
-81.45696,
39.2249
],
[
-81.48662,
39.20231
],
[
-81.51585,
39.17929
],
[
-81.5455,
39.1567
],
[
-81.57558,
39.13453
],
[
-81.60608,
39.11277
],
[
-81.63698,
39.09143
],
[
-81.6683,
39.07051
],
[
-81.69963,
39.04959
],
[
-81.73096,
39.02867
],
[
-81.76187,
39.00733
],
[
-81.79236,
38.98558
],
[
-81.82243,
38.9634
],
[
-81.8521,
38.94081
],
[
-81.88133,
38.9178
],
[
-81.91098,
38.89521
],
[
-81.94106,
38.87303
],
[
-81.97156,
38.85127
],
[
-82.00246,
38.82993
],
[
-82.03378,
38.80901
],
[
-82.06511,
38.78809
],
[
-82.09644,
38.76717
],
[
-82.12776,
38.74625
],
[
-82.15909,
38.72533
],
[
-82.19041,
38.70441
],
[
-82.22174,
38.68349
],
[
-82.25307,
38.66257
],
[
-82.29922,
38.63036
],
[
-82.31447,
38.61948
],
[
-82.34454,
38.59731
],
[
-82.37419,
38.57471
],
[
-82.40343,
38.5517
],
[
-82.43309,
38.5291
],
[
-82.46317,
38.50693
],
[
-82.49324,
38.48475
],
[
-82.52332,
38.46258
],
[
-82.55338,
38.4404
],
[
-82.58304,
38.41781
],
[
-82.61227,
38.3948
],
[
-82.64193,
38.3722
],
[
-82.672,
38.35003
],
[
-82.70208,
38.32785
],
[
-82.73215,
38.30568
],
[
-82.76223,
38.2835
],
[
-82.79189,
38.26091
],
[
-82.82112,
38.2379
],
[
-82.85077,
38.21531
],
[
-82.88084,
38.19313
],
[
-82.91092,
38.17096
],
[
-82.94099,
38.14878
],
[
-82.97107,
38.12661
],
[
-83.00072,
38.10401
],
[
-83.02996,
38.081
],
[
-83.05962,
38.05841
],
[
-83.08969,
38.03623
],
[
-83.11977,
38.01406
],
[
-83.14984,
37.99188
],
[
-83.1799,
37.9697
],
[
-83.20956,
37.94711
],
[
-83.2388,
37.9241
],
[
-83.26846,
37.9015
],
[
-83.29853,
37.87933
],
[
-83.32861,
37.85715
],
[
-83.35868,
37.83498
],
[
-83.38834,
37.81239
],
[
-83.41714,
37.78896
],
[
-83.44514,
37.76469
],
[
-83.47312,
37.74042
],
[
-83.50111,
37.71616
],
[
-83.52992,
37.69272
],
[
-83.55959,
37.67013
],
[
-83.58966,
37.64796
],
[
-83.61973,
37.62578
],
[
-83.64938,
37.60319
],
[
-83.67821,
37.57976
],
[
-83.70578,
37.55507
],
[
-83.73293,
37.52997
],
[
-83.75966,
37.50444
],
[
-83.7868,
37.47934
],
[
-83.81438,
37.45465
],
[
-83.84319,
37.43122
],
[
-83.87285,
37.40863
],
[
-83.90292,
37.38646
],
[
-83.93299,
37.36428
],
[
-83.96265,
37.34168
],
[
-83.99146,
37.31826
],
[
-84.01904,
37.29357
],
[
-84.04619,
37.26847
],
[
-84.07292,
37.24295
],
[
-84.10006,
37.21784
],
[
-84.12763,
37.19316
],
[
-84.15645,
37.16973
],
[
-84.18611,
37.14713
],
[
-84.21619,
37.12496
],
[
-84.24625,
37.10278
],
[
-84.27591,
37.08018
],
[
-84.30473,
37.05676
],
[
-84.33231,
37.03207
],
[
-84.35945,
37.00697
],
[
-84.38577,
36.98103
],
[
-84.41208,
36.95509
],
[
-84.4384,
36.92915
],
[
-84.46554,
36.90405
],
[
-84.4931,
36.87936
],
[
-84.52193,
36.85593
],
[
-84.55158,
36.83334
],
[
-84.58166,
36.81116
],
[
-84.61173,
36.78899
],
[
-84.64139,
36.76639
],
[
-84.67021,
36.74296
],
[
-84.69778,
36.71827
],
[
-84.72493,
36.69317
],
[
-84.75124,
36.66723
],
[
-84.77756,
36.64129
],
[
-84.80345,
36.61493
],
[
-84.82977,
36.58899
],
[
-84.86882,
36.54966
],
[
-84.88197,
36.53669
],
[
-84.90829,
36.51075
],
[
-84.93543,
36.48565
],
[
-84.963,
36.46096
],
[
-84.99182,
36.43753
],
[
-85.02148,
36.41494
],
[
-85.05154,
36.39276
],
[
-85.08162,
36.37059
],
[
-85.11128,
36.34799
],
[
-85.14011,
36.32456
],
[
-85.16766,
36.29987
],
[
-85.19482,
36.27477
],
[
-85.22113,
36.24883
],
[
-85.24744,
36.22289
],
[
-85.27335,
36.19653
],
[
-85.29965,
36.17059
],
[
-85.32556,
36.14423
],
[
-85.35187,
36.11829
],
[
-85.39093,
36.07896
],
[
-85.40408,
36.06599
],
[
-85.42998,
36.03963
],
[
-85.4563,
36.01369
],
[
-85.48219,
35.98733
],
[
-85.52145,
35.94821
],
[
-85.5344,
35.93503
],
[
-85.56071,
35.90909
],
[
-85.58661,
35.88273
],
[
-85.61292,
35.85679
],
[
-85.63882,
35.83043
],
[
-85.66513,
35.80449
],
[
-85.69145,
35.77855
],
[
-85.71859,
35.75345
],
[
-85.74615,
35.72876
],
[
-85.77498,
35.70533
],
[
-85.80464,
35.68274
],
[
-85.83472,
35.66056
],
[
-85.86478,
35.63839
],
[
-85.89444,
35.61579
],
[
-85.92326,
35.59236
],
[
-85.95084,
35.56768
],
[
-85.97798,
35.54257
],
[
-86.0043,
35.51663
],
[
-86.03061,
35.49069
],
[
-86.0565,
35.46433
],
[
-86.08282,
35.43839
],
[
-86.12187,
35.39906
],
[
-86.13503,
35.38609
],
[
-86.16093,
35.35973
],
[
-86.18724,
35.33379
],
[
-86.21313,
35.30743
],
[
-86.23944,
35.28149
],
[
-86.26534,
35.25513
],
[
-86.29166,
35.22919
],
[
-86.31755,
35.20284
],
[
-86.34387,
35.1769
],
[
-86.36977,
35.15054
],
[
-86.39608,
35.1246
],
[
-86.42197,
35.09824
],
[
-86.44829,
35.07229
],
[
-86.47418,
35.04594
],
[
-86.50049,
35.01999
],
[
-86.5264,
34.99363
],
[
-86.5527,
34.96769
],
[
-86.57861,
34.94133
],
[
-86.60492,
34.91539
],
[
-86.63082,
34.88903
],
[
-86.65714,
34.86309
],
[
-86.68303,
34.83673
],
[
-86.72229,
34.79762
],
[
-86.73524,
34.78444
],
[
-86.76155,
34.7585
],
[
-86.78745,
34.73214
],
[
-86.81377,
34.7062
],
[
-86.83966,
34.67984
],
[
-86.86597,
34.6539
],
[
-86.89187,
34.62754
],
[
-86.91818,
34.6016
],
[
-86.94408,
34.57524
],
[
-86.9704,
34.5493
],
[
-86.99629,
34.52294
],
[
-87.02261,
34.497
],
[
-87.0485,
34.47064
],
[
-87.07481,
34.4447
],
[
-87.10071,
34.41834
],
[
-87.13914,
34.37838
],
[
-87.15167,
34.36478
],
[
-87.188,
34.32273
],
[
-87.21098,
34.29344
],
[
-87.23332,
34.26353
],
[
-87.24439,
34.24847
],
[
-87.26654,
34.21835
],
[
-87.30078,
34.1742
],
[
-87.31247,
34.15977
],
[
-87.33713,
34.13215
],
[
-87.36218,
34.10496
],
[
-87.38808,
34.0786
],
[
-87.41398,
34.05224
],
[
-87.44029,
34.0263
],
[
-87.46619,
33.99994
],
[
-87.49249,
33.974
],
[
-87.51839,
33.94764
],
[
-87.54471,
33.9217
],
[
-87.5706,
33.89534
],
[
-87.59692,
33.8694
],
[
-87.62282,
33.84304
],
[
-87.64913,
33.8171
],
[
-87.67503,
33.79074
],
[
-87.70134,
33.7648
],
[
-87.72723,
33.73844
],
[
-87.75354,
33.7125
],
[
-87.77945,
33.68614
],
[
-87.80534,
33.65978
],
[
-87.83041,
33.63258
],
[
-87.86674,
33.59054
],
[
-87.88971,
33.56125
],
[
-87.91206,
33.53133
],
[
-87.92313,
33.51627
],
[
-87.94527,
33.48615
],
[
-87.96782,
33.45644
],
[
-87.99121,
33.42757
],
[
-88.01586,
33.39996
],
[
-88.04092,
33.37276
],
[
-88.06682,
33.3464
],
[
-88.09271,
33.32004
],
[
-88.11902,
33.2941
],
[
-88.14492,
33.26774
],
[
-88.17123,
33.2418
],
[
-88.19713,
33.21544
],
[
-88.22345,
33.1895
],
[
-88.24934,
33.16314
],
[
-88.27524,
33.13678
],
[
-88.3003,
33.10959
],
[
-88.32495,
33.08197
],
[
-88.34834,
33.0531
],
[
-88.3709,
33.0234
],
[
-88.39304,
32.99327
],
[
-88.42644,
32.9483
],
[
-88.43772,
32.93344
],
[
-88.46112,
32.90457
],
[
-88.48575,
32.87696
],
[
-88.51082,
32.84976
],
[
-88.53671,
32.8234
],
[
-88.56261,
32.79704
],
[
-88.5885,
32.77068
],
[
-88.61356,
32.74349
],
[
-88.63821,
32.71587
],
[
-88.67287,
32.67215
],
[
-88.68414,
32.6573
],
[
-88.7063,
32.62717
],
[
-88.72842,
32.59705
],
[
-88.75098,
32.56734
],
[
-88.77438,
32.53847
],
[
-88.79902,
32.51086
],
[
-88.82408,
32.48366
],
[
-88.86209,
32.44328
],
[
-88.87462,
32.42969
],
[
-88.89926,
32.40208
],
[
-88.92265,
32.37321
],
[
-88.95628,
32.32844
],
[
-88.96735,
32.31338
],
[
-89.00076,
32.26839
],
[
-89.01204,
32.25354
],
[
-89.03543,
32.22467
],
[
-89.06007,
32.19706
],
[
-89.08514,
32.16986
],
[
-89.11061,
32.14309
],
[
-89.14799,
32.10209
],
[
-89.16032,
32.08828
],
[
-89.1837,
32.05941
],
[
-89.21733,
32.01463
],
[
-89.22839,
31.99957
],
[
-89.25053,
31.96945
],
[
-89.28479,
31.92531
],
[
-89.29648,
31.91087
],
[
-89.32071,
31.88284
],
[
-89.34494,
31.85481
],
[
-89.36916,
31.82677
],
[
-89.40382,
31.78305
],
[
-89.4151,
31.7682
],
[
-89.4483,
31.72301
],
[
-89.47066,
31.6931
],
[
-89.48193,
31.67825
],
[
-89.50533,
31.64938
],
[
-89.52954,
31.62134
],
[
-89.55377,
31.59331
],
[
-89.578,
31.56528
],
[
-89.61266,
31.52156
],
[
-89.62395,
31.5067
],
[
-89.64609,
31.47658
],
[
-89.67928,
31.43139
],
[
-89.69035,
31.41633
],
[
-89.71291,
31.38662
],
[
-89.73589,
31.35733
],
[
-89.75845,
31.32763
],
[
-89.78058,
31.2975
],
[
-89.81294,
31.25148
],
[
-89.83404,
31.22031
],
[
-89.85492,
31.18893
],
[
-89.86536,
31.17324
],
[
-89.8967,
31.12617
],
[
-89.90714,
31.11048
],
[
-89.93846,
31.06341
],
[
-89.94891,
31.04772
],
[
-89.98022,
31.00065
],
[
-90.00111,
30.96927
],
[
-90.01156,
30.95358
],
[
-90.04288,
30.90651
],
[
-90.06356,
30.87492
],
[
-90.08382,
30.84291
],
[
-90.09384,
30.82681
],
[
-90.11346,
30.79417
],
[
-90.14125,
30.74354
],
[
-90.15921,
30.70923
],
[
-90.17696,
30.67471
],
[
-90.19429,
30.63978
],
[
-90.21162,
30.60484
],
[
-90.22917,
30.57011
],
[
-90.24651,
30.53518
],
[
-90.26384,
30.50024
],
[
-90.28138,
30.46552
],
[
-90.29872,
30.43058
],
[
-90.31605,
30.39565
],
[
-90.3336,
30.36092
],
[
-90.35072,
30.32577
],
[
-90.36742,
30.29021
],
[
-90.38393,
30.25443
],
[
-90.3996,
30.21782
],
[
-90.41421,
30.18017
],
[
-90.4282,
30.14189
],
[
-90.44135,
30.10276
],
[
-90.45348,
30.0626
],
[
-90.46496,
30.0218
],
[
-90.47602,
29.98059
],
[
-90.48666,
29.93896
],
[
-90.4971,
29.89712
],
[
-90.50755,
29.85528
],
[
-90.51799,
29.81344
],
[
-90.52844,
29.7716
],
[
-90.53888,
29.72976
],
[
-90.54912,
29.68771
],
[
-90.55872,
29.64504
],
[
-90.56728,
29.60131
],
[
-90.57439,
29.55613
],
[
-90.5796,
29.50906
],
[
-90.58294,
29.46011
],
[
-90.58482,
29.40969
],
[
-90.58566,
29.35822
],
[
-90.58588,
29.30613
],
[
-90.58588,
29.25383
],
[
-90.58588,
29.20153
],
[
-90.58588,
29.14923
],
[
-90.58588,
29.09694
],
[
-90.58588,
29.04464
],
[
-90.58588,
28.99233
],
[
-90.58566,
28.94024
],
[
-90.58482,
28.88878
],
[
-90.58295,
28.83836
],
[
-90.57961,
28.78941
],
[
-90.57439,
28.74234
],
[
-90.5675,
28.69695
],
[
-90.55977,
28.65239
],
[
-90.55203,
28.60783
],
[
-90.54494,
28.56264
],
[
-90.53888,
28.51641
],
[
-90.53366,
28.46934
],
[
-90.52844,
28.42227
],
[
-90.52238,
28.37603
],
[
-90.51528,
28.33084
],
[
-90.50755,
28.28629
],
[
-90.49983,
28.24173
],
[
-90.49294,
28.19633
],
[
-90.48772,
28.14926
],
[
-90.48438,
28.10031
],
[
-90.48228,
28.0501
],
[
-90.48061,
27.99947
],
[
-90.47852,
27.94926
],
[
-90.47517,
27.90032
],
[
-90.46996,
27.85324
],
[
-90.46307,
27.80785
],
[
-90.45514,
27.7635
],
[
-90.44658,
27.71977
],
[
-90.43781,
27.67626
],
[
-90.42924,
27.63254
],
[
-90.42068,
27.58882
],
[
-90.4117,
27.54551
],
[
-90.4023,
27.50262
],
[
-90.39249,
27.46016
],
[
-90.38226,
27.41811
],
[
-90.37181,
27.37627
],
[
-90.36136,
27.33443
],
[
-90.35092,
27.29259
],
[
-90.34048,
27.25075
],
[
-90.33004,
27.20891
],
[
-90.3194,
27.16728
],
[
-90.30832,
27.12607
],
[
-90.29683,
27.08527
],
[
-90.28493,
27.0449
],
[
-90.2724,
27.00515
],
[
-90.25945,
26.96582
],
[
-90.24651,
26.92649
],
[
-90.23335,
26.88737
],
[
-90.21956,
26.84888
],
[
-90.20537,
26.8108
],
[
-90.19096,
26.77294
],
[
-90.17592,
26.7357
],
[
-90.16046,
26.69888
],
[
-90.14543,
26.66164
],
[
-90.13081,
26.62399
],
[
-90.11598,
26.58654
],
[
-90.10115,
26.5491
],
[
-90.08653,
26.51144
],
[
-90.07149,
26.4742
],
[
-90.05603,
26.43738
],
[
-90.041,
26.40014
],
[
-90.02638,
26.36249
],
[
-90.01155,
26.32504
],
[
-89.99672,
26.2876
],
[
-89.9819,
26.25015
],
[
-89.96623,
26.21354
],
[
-89.94974,
26.17777
],
[
-89.93303,
26.1422
],
[
-89.91591,
26.10706
],
[
-89.89837,
26.07233
],
[
-89.88103,
26.03739
],
[
-89.86369,
26.00246
],
[
-89.84615,
25.96773
],
[
-89.82883,
25.93279
],
[
-89.81149,
25.89786
],
[
-89.79395,
25.86313
],
[
-89.77661,
25.82819
],
[
-89.75928,
25.79326
],
[
-89.74173,
25.75853
],
[
-89.7244,
25.72359
],
[
-89.70706,
25.68866
],
[
-89.68953,
25.65393
],
[
-89.67219,
25.61899
],
[
-89.65485,
25.58406
],
[
-89.6371,
25.54954
],
[
-89.61914,
25.51523
],
[
-89.60077,
25.48134
],
[
-89.58156,
25.44829
],
[
-89.56171,
25.41586
],
[
-89.54166,
25.38365
],
[
-89.52161,
25.35143
],
[
-89.50177,
25.319
],
[
-89.48256,
25.28595
],
[
-89.46417,
25.25206
],
[
-89.44622,
25.21775
],
[
-89.42847,
25.18323
],
[
-89.41113,
25.1483
],
[
-89.3938,
25.11336
],
[
-89.37626,
25.07863
],
[
-89.35892,
25.0437
],
[
-89.34159,
25.00876
],
[
-89.32384,
24.97424
],
[
-89.30588,
24.93994
],
[
-89.28751,
24.90604
],
[
-89.2683,
24.87299
],
[
-89.24845,
24.84056
],
[
-89.22839,
24.80835
],
[
-89.20835,
24.77613
],
[
-89.18851,
24.74371
],
[
-89.1693,
24.71065
],
[
-89.15092,
24.67676
],
[
-89.13297,
24.64245
],
[
-89.1152,
24.60793
],
[
-89.09787,
24.573
],
[
-89.08054,
24.53806
],
[
-89.06279,
24.50354
],
[
-89.04483,
24.46923
],
[
-89.02644,
24.43534
],
[
-89.00723,
24.40229
],
[
-88.9874,
24.36987
],
[
-88.96734,
24.33765
],
[
-88.9473,
24.30543
],
[
-88.92745,
24.27301
],
[
-88.90803,
24.24016
],
[
-88.88902,
24.2069
],
[
-88.87003,
24.17364
],
[
-88.8506,
24.14079
],
[
-88.83076,
24.10837
],
[
-88.81071,
24.07615
],
[
-88.79066,
24.04393
],
[
-88.77082,
24.01151
],
[
-88.7514,
23.97866
],
[
-88.73239,
23.9454
],
[
-88.71339,
23.91214
],
[
-88.69397,
23.87929
],
[
-88.67413,
23.84687
],
[
-88.65387,
23.81486
],
[
-88.62275,
23.76758
],
[
-88.6123,
23.75189
],
[
-88.59143,
23.72051
],
[
-88.5601,
23.67344
],
[
-88.54965,
23.65775
],
[
-88.51833,
23.61068
],
[
-88.49745,
23.5793
],
[
-88.48701,
23.56361
],
[
-88.45569,
23.51654
],
[
-88.44524,
23.50085
],
[
-88.42435,
23.46947
],
[
-88.39303,
23.4224
],
[
-88.37215,
23.39102
],
[
-88.3617,
23.37533
],
[
-88.34082,
23.34395
],
[
-88.30949,
23.29688
],
[
-88.29904,
23.28119
],
[
-88.27817,
23.24981
],
[
-88.25728,
23.21843
],
[
-88.23639,
23.18705
],
[
-88.20508,
23.13998
],
[
-88.19463,
23.12429
],
[
-88.17374,
23.09291
],
[
-88.15286,
23.06153
],
[
-88.13197,
23.03015
],
[
-88.11108,
22.99877
],
[
-88.09,
22.9676
],
[
-88.06848,
22.93685
],
[
-88.04655,
22.90652
],
[
-88.01294,
22.86175
],
[
-88.00145,
22.8471
],
[
-87.97868,
22.81761
],
[
-87.94527,
22.77263
],
[
-87.93441,
22.75736
],
[
-87.9129,
22.7266
],
[
-87.89182,
22.69543
],
[
-87.86047,
22.64837
],
[
-87.85004,
22.63268
],
[
-87.81829,
22.58602
],
[
-87.80743,
22.57075
],
[
-87.78551,
22.54042
],
[
-87.76315,
22.5105
],
[
-87.72891,
22.46636
],
[
-87.71764,
22.45151
],
[
-87.69528,
22.42159
],
[
-87.67336,
22.39126
],
[
-87.65184,
22.3605
],
[
-87.63075,
22.32933
],
[
-87.60986,
22.29795
],
[
-87.57855,
22.25089
],
[
-87.56789,
22.2354
],
[
-87.53552,
22.18938
],
[
-87.52445,
22.17432
],
[
-87.49083,
22.12955
],
[
-87.47934,
22.11491
],
[
-87.4453,
22.07056
],
[
-87.42316,
22.04043
],
[
-87.41231,
22.02516
],
[
-87.38014,
21.97893
],
[
-87.3697,
21.96324
],
[
-87.33838,
21.91617
],
[
-87.32793,
21.90048
],
[
-87.29619,
21.85382
],
[
-87.28532,
21.83855
],
[
-87.2634,
21.80822
],
[
-87.22977,
21.76345
],
[
-87.21828,
21.74881
],
[
-87.19553,
21.71931
],
[
-87.16211,
21.67433
],
[
-87.15125,
21.65906
],
[
-87.12975,
21.62831
],
[
-87.10865,
21.59714
],
[
-87.08777,
21.56576
],
[
-87.06688,
21.53438
],
[
-87.03555,
21.48731
],
[
-87.01468,
21.45593
],
[
-87.00423,
21.44024
],
[
-86.98334,
21.40886
],
[
-86.96246,
21.37748
],
[
-86.94157,
21.3461
],
[
-86.92068,
21.31472
],
[
-86.88936,
21.26765
],
[
-86.87892,
21.25196
],
[
-86.85803,
21.22058
],
[
-86.83715,
21.1892
],
[
-86.81627,
21.15782
],
[
-86.78494,
21.11075
],
[
-86.7747,
21.09485
],
[
-86.75446,
21.06284
],
[
-86.7346,
21.03042
],
[
-86.71519,
20.99757
],
[
-86.69618,
20.96431
],
[
-86.67719,
20.93105
],
[
-86.65776,
20.8982
],
[
-86.63792,
20.86578
],
[
-86.61787,
20.83356
],
[
-86.59782,
20.80134
],
[
-86.57797,
20.76892
],
[
-86.55855,
20.73607
],
[
-86.53955,
20.70281
],
[
-86.52055,
20.66955
],
[
-86.50113,
20.6367
],
[
-86.48129,
20.60428
],
[
-86.46124,
20.57206
],
[
-86.44119,
20.53984
],
[
-86.42135,
20.50742
],
[
-86.40192,
20.47458
],
[
-86.38292,
20.44131
],
[
-86.36392,
20.40805
],
[
-86.3445,
20.3752
],
[
-86.31464,
20.32667
],
[
-86.30461,
20.31056
],
[
-86.28455,
20.27835
],
[
-86.26472,
20.24592
],
[
-86.2455,
20.21287
],
[
-86.22713,
20.17898
],
[
-86.20917,
20.14467
],
[
-86.19121,
20.11036
],
[
-86.17325,
20.07605
],
[
-86.15487,
20.04216
],
[
-86.13565,
20.00911
],
[
-86.11581,
19.97668
],
[
-86.09576,
19.94446
],
[
-86.07571,
19.91224
],
[
-86.05588,
19.87982
],
[
-86.03665,
19.84677
],
[
-86.01828,
19.81288
],
[
-86.00032,
19.77857
],
[
-85.98236,
19.74426
],
[
-85.9644,
19.70995
],
[
-85.94602,
19.67606
],
[
-85.9268,
19.64301
],
[
-85.89694,
19.59447
],
[
-85.88692,
19.57837
],
[
-85.85686,
19.53004
],
[
-85.84703,
19.51372
],
[
-85.81842,
19.46393
],
[
-85.80944,
19.44678
],
[
-85.79148,
19.41247
],
[
-85.77374,
19.37795
],
[
-85.75639,
19.34302
],
[
-85.73906,
19.30808
],
[
-85.72131,
19.27356
],
[
-85.70335,
19.23925
],
[
-85.68497,
19.20536
],
[
-85.66576,
19.17231
],
[
-85.64592,
19.13988
],
[
-85.62587,
19.10767
],
[
-85.60582,
19.07545
],
[
-85.58598,
19.04302
],
[
-85.56677,
19.00997
],
[
-85.54839,
18.97608
],
[
-85.52145,
18.92462
],
[
-85.51268,
18.90726
],
[
-85.49535,
18.87232
],
[
-85.47801,
18.83738
],
[
-85.46026,
18.80286
],
[
-85.44229,
18.76855
],
[
-85.42392,
18.73466
],
[
-85.3949,
18.68529
],
[
-85.38487,
18.66918
],
[
-85.36461,
18.63718
],
[
-85.3335,
18.5899
],
[
-85.31219,
18.55894
],
[
-85.29004,
18.52881
],
[
-85.26666,
18.49994
],
[
-85.24181,
18.47275
],
[
-85.21507,
18.44806
],
[
-85.18687,
18.42588
],
[
-85.15785,
18.40643
],
[
-85.1282,
18.39032
],
[
-85.08121,
18.37379
],
[
-85.04926,
18.36815
]
]
]
}
}
]