Modifying WFS Features with QGIS and GeoServer

Published

Lately I have been exploring the ability to view and modify my GPS bike and hike routes in QGIS. My routes are stored as geometries in a PostGIS database, and I recently learned that WFS Transactions can be used to create and modify the geometries once GeoServer is added to the mix.

Goal of this Post

This post documents how I was able to import a GeoServer WFS Layer into QGIS, create and modify GIS Features, and ultimately save the Features back into a PostGIS table (via GeoServer and WFS Transactions). There was some struggling involved, but it is all worth it once things finally work out 🙂

1. Set-up PostGIS/GeoServer Backend

Fortunately these days it is incredibly easy to stand up backend services for development. I simply cloned the kartoza/docker-geoserver repo locally executed the following command within the repo directory to start PostGIS and GeoServer:

docker-compose up

Create Table and Sample Record in PostGIS

Once PostGIS was available, I needed to create a table and a sample record. I learned the hard way that the sample record should represent the data you expect to store in the table. This helps calibrate both GeoServer and QGIS as far as the geometries and regions to expect.

The sample record should:

  • Have the same geometry type – e.g. MultiLineString in our case, used for route geometries
  • Have the same spatial reference system – we’re using the standard EPSG:4326

Here is some sample SQL I executed against the docker PostGIS instance (available at postgresql://docker:docker@localhost:32767/gis) to create a Features table and sample record:

CREATE TABLE public.routes (
    id bigint NOT NULL,
    geometry public.geometry NOT NULL,
    properties json
);

ALTER TABLE public.routes ADD CONSTRAINT routes_pk PRIMARY KEY (id);

ALTER TABLE public.routes OWNER TO docker;

INSERT INTO public.routes VALUES (0, ST_GeomFromGeoJson('{"type":"MultiLineString","coordinates":[[[-122.196303,37.816209,276.8847900390625,1666455671.0],[-122.196273,37.816194,246.80999755859375,1666455675.0],[-122.196298,37.816205,278.4013916015625,1666455678.0],[-122.196296,37.816213,280.1184326171875,1666455683.0],[-122.196296,37.816213,280.3899169921875,1666455684.0],[-122.196349,37.81621,284.590478515625,1666455691.0],[-122.196404,37.81623,290.353662109375,1666455725.0],[-122.19646,37.816209,292.9692016601563,1666455736.0],[-122.196445,37.816254,290.9220825195313,1666455768.0],[-122.196438,37.816266,290.9455810546875,1666455769.0],[-122.196387,37.816323,288.6086669921875,1666455772.0],[-122.196382,37.816346,287.6521850585938,1666455774.0],[-122.19639,37.816362,287.83828125,1666455775.0],[-122.196433,37.816389,284.320703125,1666455777.0],[-122.196517,37.816399,284.039697265625,1666455779.0],[-122.196571,37.816414,284.9217163085938,1666455780.0],[-122.196716,37.816481,283.091943359375,1666455782.0],[-122.196852,37.816501,281.532373046875,1666455784.0],[-122.196976,37.816487,282.417626953125,1666455786.0],[-122.197126,37.816434,283.0296875,1666455789.0],[-122.197194,37.816381,281.7249389648438,1666455790.0],[-122.197305,37.816289,280.0318237304688,1666455792.0],[-122.197409,37.816164,279.2972045898438,1666455794.0],[-122.197401,37.816106,252.778466796875,1666455795.0],[-122.197298,37.815978,268.0759521484375,1666455797.0],[-122.197257,37.815911,268.2636962890625,1666455798.0],[-122.197195,37.815848,269.5170532226563,1666455799.0],[-122.197137,37.815802,271.2251831054688,1666455800.0],[-122.197068,37.815765,271.7497192382813,1666455801.0],[-122.197026,37.815773,269.8269897460938,1666455802.0],[-122.19696,37.815726,267.5352416992188,1666455804.0],[-122.196936,37.815699,269.059228515625,1666455805.0],[-122.196879,37.815674,268.91298828125,1666455807.0],[-122.196834,37.815669,269.2598510742188,1666455809.0],[-122.196826,37.815662,267.7796264648438,1666455810.0],[-122.196796,37.815625,268.4782958984375,1666455812.0],[-122.196761,37.815603,268.7030883789063,1666455813.0],[-122.196621,37.815554,274.2539916992188,1666455820.0],[-122.1966,37.815546,274.9941650390625,1666455821.0],[-122.196507,37.815533,273.761865234375,1666455825.0],[-122.196467,37.815501,275.2200561523438,1666455828.0],[-122.196429,37.815486,275.0002685546875,1666455830.0],[-122.196409,37.815482,274.9994140625,1666455831.0],[-122.196346,37.815464,274.32607421875,1666455834.0],[-122.196194,37.81537,274.2871337890625,1666455843.0],[-122.196174,37.815362,273.7826171875,1666455844.0],[-122.196092,37.815267,279.716455078125,1666455850.0],[-122.19601,37.815214,282.108056640625,1666455854.0],[-122.195993,37.8152,281.61806640625,1666455855.0],[-122.195903,37.815107,284.0977416992188,1666455861.0],[-122.195868,37.815044,285.4929443359375,1666455864.0],[-122.19586,37.815025,285.2839599609375,1666455865.0],[-122.195842,37.814979,285.8839965820313,1666455867.0],[-122.195821,37.814954,286.5549560546875,1666455868.0],[-122.195745,37.814895,287.3914428710938,1666455871.0],[-122.195699,37.814834,284.4118896484375,1666455874.0],[-122.195682,37.814814,285.0620361328125,1666455875.0],[-122.195568,37.814706,284.6960693359375,1666455881.0],[-122.195538,37.814692,285.530419921875,1666455882.0],[-122.195458,37.814686,285.152001953125,1666455884.0],[-122.195423,37.814689,285.7353759765625,1666455885.0],[-122.195266,37.814682,287.4408203125,1666455889.0],[-122.195099,37.814641,287.0894409179688,1666455894.0],[-122.195054,37.814631,287.242578125,1666455895.0],[-122.194889,37.814599,288.8081298828125,1666455898.0],[-122.194813,37.814597,288.8611083984375,1666455900.0],[-122.194742,37.814566,286.25087890625,1666455904.0],[-122.194704,37.814567,286.9600463867188,1666455905.0],[-122.194668,37.81457,287.7038818359375,1666455906.0],[-122.194566,37.814583,285.8168579101563,1666455909.0],[-122.194398,37.814515,289.5498291015625,1666455915.0],[-122.194356,37.8145,290.0708862304688,1666455916.0],[-122.194224,37.814452,295.5314575195313,1666455921.0],[-122.194077,37.814424,295.1595703125,1666455925.0],[-122.194047,37.814414,295.6831298828125,1666455926.0],[-122.193994,37.814392,297.0898681640625,1666455928.0],[-122.193944,37.814331,300.8404174804688,1666455932.0],[-122.193858,37.814288,300.7671142578125,1666455935.0],[-122.19383,37.814278,301.15712890625,1666455936.0],[-122.193769,37.814259,300.19521484375,1666455938.0],[-122.193628,37.814194,298.8906494140625,1666455942.0],[-122.19351,37.814179,300.212548828125,1666455945.0],[-122.193473,37.81418,300.2842041015625,1666455946.0],[-122.19328,37.814191,297.3423706054688,1666455951.0],[-122.193154,37.814165,298.72939453125,1666455955.0],[-122.193109,37.814158,299.0317016601563,1666455956.0],[-122.193025,37.814147,299.7489868164063,1666455958.0],[-122.192971,37.814152,293.921533203125,1666455959.0],[-122.192645,37.814238,290.1777587890625,1666455965.0],[-122.192601,37.814245,290.0449462890625,1666455966.0],[-122.192337,37.814276,289.5002685546875,1666455972.0],[-122.192202,37.814306,289.6121459960938,1666455975.0],[-122.192154,37.814326,290.150048828125,1666455977.0],[-122.19208,37.81439,289.5580688476563,1666455981.0],[-122.192055,37.814439,290.961083984375,1666455984.0],[-122.192026,37.814463,292.3781982421875,1666455986.0],[-122.191992,37.814463,290.6659790039063,1666455987.0],[-122.191954,37.814456,290.073388671875,1666455988.0],[-122.191896,37.814415,289.5464721679688,1666455990.0],[-122.191817,37.814293,287.2841430664063,1666455994.0],[-122.19177,37.814241,288.5144287109375,1666455996.0],[-122.191737,37.814229,290.2065673828125,1666455997.0],[-122.191691,37.814227,289.3022705078125,1666455998.0],[-122.191572,37.81425,288.9602905273438,1666456001.0],[-122.191366,37.81433,288.20498046875,1666456006.0],[-122.191333,37.814338,288.474755859375,1666456007.0],[-122.191207,37.814396,288.3508544921875,1666456011.0],[-122.191056,37.814426,285.4173828125,1666456016.0],[-122.191018,37.81443,286.5947509765625,1666456017.0],[-122.190816,37.814425,284.82705078125,1666456023.0],[-122.190748,37.814435,287.9619995117188,1666456026.0],[-122.190726,37.814443,288.116845703125,1666456027.0],[-122.190549,37.814529,287.7187744140625,1666456034.0],[-122.190494,37.814577,287.6308837890625,1666456037.0],[-122.190478,37.814595,287.7278686523438,1666456038.0],[-122.190401,37.81467,287.6435791015625,1666456042.0],[-122.190349,37.814685,289.1679931640625,1666456044.0],[-122.19029,37.814682,292.3205810546875,1666456047.0],[-122.190276,37.814677,293.5935302734375,1666456048.0],[-122.190142,37.814639,295.8717895507813,1666456054.0],[-122.190026,37.814664,296.2220703125,1666456057.0],[-122.18998,37.814676,296.286279296875,1666456058.0],[-122.18987,37.814726,297.8127685546875,1666456060.0],[-122.189828,37.814882,292.67373046875,1666456062.0],[-122.189762,37.81498,292.6011596679688,1666456064.0],[-122.189705,37.815015,292.0005737304688,1666456065.0],[-122.189572,37.815075,292.983056640625,1666456067.0],[-122.189502,37.815055,295.008447265625,1666456068.0],[-122.18935,37.815039,295.1592041015625,1666456071.0],[-122.189323,37.815045,294.4192138671875,1666456072.0],[-122.189322,37.815032,294.0630126953125,1666456074.0],[-122.189383,37.815021,293.3511596679688,1666456075.0],[-122.189407,37.814988,293.5673461914063,1666456078.0],[-122.189443,37.815005,293.5947509765625,1666456079.0],[-122.189461,37.814996,294.7064453125,1666456080.0],[-122.189497,37.814941,292.4762817382813,1666456084.0],[-122.18948,37.81486,295.2339111328125,1666456089.0],[-122.189479,37.814845,296.3827758789063,1666456090.0],[-122.189498,37.814712,302.2318969726563,1666456097.0],[-122.189486,37.814665,303.66591796875,1666456100.0],[-122.189476,37.814647,305.2661987304688,1666456101.0],[-122.189362,37.814557,303.789697265625,1666456107.0],[-122.189291,37.814549,304.9338623046875,1666456110.0],[-122.189244,37.814548,294.3774047851563,1666456111.0],[-122.18916,37.814537,297.860498046875,1666456114.0],[-122.189053,37.814492,297.5918212890625,1666456118.0],[-122.18901,37.814463,295.3333984375,1666456120.0],[-122.188985,37.814446,294.8841796875,1666456121.0],[-122.188818,37.814406,291.407861328125,1666456126.0],[-122.188738,37.814365,294.123193359375,1666456131.0],[-122.188704,37.814358,294.2884765625,1666456132.0],[-122.188651,37.814343,295.147607421875,1666456135.0],[-122.188605,37.814291,294.7351928710938,1666456139.0],[-122.18854,37.814241,297.8371826171875,1666456143.0],[-122.188518,37.814221,298.6003051757813,1666456144.0],[-122.188458,37.81417,298.3010498046875,1666456146.0],[-122.188424,37.81416,297.8144775390625,1666456147.0],[-122.188392,37.814159,297.988671875,1666456148.0],[-122.188226,37.814206,296.8613525390625,1666456153.0],[-122.188194,37.814221,295.7956787109375,1666456154.0],[-122.188152,37.814246,296.24599609375,1666456155.0],[-122.188032,37.814261,300.68056640625,1666456162.0],[-122.187994,37.814247,300.9596801757813,1666456164.0],[-122.187985,37.814229,299.6826416015625,1666456165.0],[-122.187984,37.814212,299.2234130859375,1666456166.0],[-122.188009,37.814113,297.179833984375,1666456172.0],[-122.188011,37.814047,297.504296875,1666456175.0],[-122.188007,37.814027,296.7966552734375,1666456176.0],[-122.187985,37.813979,297.359033203125,1666456179.0],[-122.187913,37.813884,298.13759765625,1666456185.0],[-122.187897,37.813865,299.380517578125,1666456186.0],[-122.187813,37.813803,298.6667724609375,1666456189.0],[-122.187655,37.813724,299.5238891601563,1666456195.0],[-122.18763,37.813717,298.5049682617188,1666456196.0],[-122.187373,37.813603,300.2881713867188,1666456205.0],[-122.187344,37.813598,300.8977294921875,1666456206.0],[-122.187259,37.813569,301.7639404296875,1666456209.0],[-122.187097,37.813481,299.34609375,1666456215.0],[-122.187068,37.813444,299.9443603515625,1666456217.0],[-122.186969,37.81332,301.4970947265625,1666456223.0],[-122.186885,37.813283,302.0071044921875,1666456226.0],[-122.186853,37.813262,302.437646484375,1666456227.0],[-122.186703,37.813161,300.277978515625,1666456233.0],[-122.186666,37.8131,299.7114501953125,1666456236.0],[-122.186649,37.813081,299.6235595703125,1666456237.0],[-122.18662,37.813061,299.1967407226563,1666456238.0],[-122.186343,37.812937,300.102197265625,1666456246.0],[-122.18631,37.812927,300.2307983398438,1666456247.0],[-122.186172,37.812872,307.4270263671875,1666456253.0],[-122.186091,37.812808,306.63173828125,1666456256.0],[-122.186064,37.812791,306.8072143554688,1666456257.0],[-122.18596,37.812735,306.6145263671875,1666456260.0],[-122.185807,37.812631,310.897607421875,1666456266.0],[-122.185785,37.81261,310.1509033203125,1666456267.0],[-122.185722,37.81255,308.772607421875,1666456270.0],[-122.185683,37.812468,311.1814819335938,1666456274.0],[-122.185621,37.812401,311.545556640625,1666456277.0],[-122.185593,37.812371,311.9795166015625,1666456278.0],[-122.185483,37.812271,311.390283203125,1666456283.0],[-122.185389,37.812232,312.3685546875,1666456287.0],[-122.185365,37.812227,311.5437866210938,1666456288.0],[-122.185259,37.81222,309.059716796875,1666456293.0],[-122.185112,37.812167,311.1,1666456298.0],[-122.185087,37.812165,312.8579345703125,1666456299.0],[-122.184982,37.812131,314.03603515625,1666456302.0],[-122.184913,37.812082,316.3694702148438,1666456306.0],[-122.184892,37.812052,317.98916015625,1666456308.0],[-122.184869,37.812037,319.2121826171875,1666456309.0],[-122.184669,37.811916,316.8332763671875,1666456318.0],[-122.184649,37.811908,317.8633056640625,1666456319.0],[-122.184607,37.811863,316.4238525390625,1666456322.0],[-122.18457,37.811765,319.8088623046875,1666456329.0],[-122.184567,37.811753,321.534326171875,1666456330.0],[-122.18455,37.811666,322.598046875,1666456335.0],[-122.184491,37.811584,323.6960693359375,1666456340.0],[-122.18447,37.811559,324.897119140625,1666456341.0],[-122.184405,37.811504,325.7356201171875,1666456344.0],[-122.184337,37.811475,323.3864379882813,1666456347.0],[-122.184319,37.811453,331.4260498046875,1666456349.0],[-122.184276,37.811439,331.5879150390625,1666456352.0],[-122.184249,37.811431,331.7755981445313,1666456353.0],[-122.184222,37.811419,333.0771118164063,1666456354.0],[-122.184136,37.811312,328.3657470703125,1666456360.0],[-122.184086,37.811275,329.5715576171875,1666456362.0],[-122.184058,37.81126,328.1045776367188,1666456363.0],[-122.183932,37.811202,325.2640625,1666456367.0],[-122.183804,37.811114,324.6016479492188,1666456372.0],[-122.183779,37.811097,324.7636962890625,1666456373.0],[-122.183731,37.811057,325.876123046875,1666456375.0],[-122.183632,37.810945,327.17177734375,1666456380.0],[-122.18358,37.810904,326.861962890625,1666456382.0],[-122.183554,37.810887,327.2380615234375,1666456383.0],[-122.183481,37.810837,328.1844116210938,1666456386.0],[-122.183397,37.810746,328.4753662109375,1666456392.0],[-122.183378,37.810729,328.2967163085938,1666456393.0],[-122.183357,37.810711,327.8682495117188,1666456394.0],[-122.183208,37.810646,327.417138671875,1666456399.0],[-122.183148,37.810574,324.727685546875,1666456404.0],[-122.18313,37.810559,323.9986206054688,1666456405.0],[-122.183073,37.810515,320.2500244140625,1666456408.0],[-122.183042,37.810456,319.6511474609375,1666456411.0],[-122.182983,37.810427,318.33046875,1666456414.0],[-122.182962,37.810425,318.61318359375,1666456415.0],[-122.182911,37.81041,316.6150146484375,1666456417.0],[-122.182847,37.810376,313.7608276367188,1666456420.0],[-122.182769,37.810286,316.9218383789063,1666456424.0],[-122.182748,37.810266,305.79921875,1666456425.0],[-122.182618,37.810171,312.71181640625,1666456430.0],[-122.182544,37.810086,316.9665161132813,1666456434.0],[-122.182527,37.810065,317.7226806640625,1666456435.0],[-122.182497,37.81003,318.152001953125,1666456437.0],[-122.182398,37.809972,326.4743896484375,1666456442.0],[-122.182362,37.809938,327.0066162109375,1666456444.0],[-122.182346,37.809926,319.4515014648438,1666456445.0],[-122.182313,37.809903,321.1673828125,1666456447.0],[-122.182286,37.809845,324.6858764648438,1666456453.0],[-122.182177,37.809832,317.7654052734375,1666456458.0],[-122.18216,37.809834,318.0885864257813,1666456459.0],[-122.182146,37.809831,319.0205932617188,1666456460.0],[-122.182051,37.809732,320.1897216796875,1666456469.0],[-122.182003,37.809705,313.0375610351563,1666456471.0],[-122.181974,37.80969,315.5898681640625,1666456472.0],[-122.181839,37.809626,321.58486328125,1666456477.0],[-122.181772,37.80956,323.71083984375,1666456481.0],[-122.181766,37.809547,325.1421752929688,1666456482.0],[-122.181721,37.809506,327.0126586914063,1666456486.0],[-122.181673,37.809484,329.6291748046875,1666456489.0],[-122.181593,37.809464,325.2533203125,1666456492.0],[-122.181567,37.809454,324.826318359375,1666456493.0],[-122.181528,37.809429,321.2343994140625,1666456495.0],[-122.181485,37.809382,319.8817993164063,1666456498.0],[-122.181377,37.809345,320.3026977539063,1666456502.0],[-122.181358,37.809338,322.300927734375,1666456503.0],[-122.181321,37.809297,323.621240234375,1666456507.0],[-122.181304,37.809255,324.0185791015625,1666456510.0],[-122.18122,37.80924,325.512841796875,1666456514.0],[-122.181181,37.809234,325.830224609375,1666456515.0],[-122.181152,37.809223,326.12392578125,1666456519.0],[-122.181096,37.809222,315.2336059570313,1666456521.0],[-122.181034,37.809245,319.47548828125,1666456523.0],[-122.18097,37.809292,323.473291015625,1666456526.0],[-122.180946,37.809304,324.4062744140625,1666456527.0],[-122.180912,37.809308,325.19521484375,1666456528.0],[-122.180779,37.809284,331.0031372070313,1666456532.0],[-122.18069,37.809302,329.744287109375,1666456542.0],[-122.180675,37.8093,331.823388671875,1666456543.0],[-122.180632,37.80929,333.2279296875,1666456545.0],[-122.180544,37.809247,335.477197265625,1666456551.0],[-122.180503,37.809239,336.5454345703125,1666456554.0],[-122.180492,37.809239,337.23818359375,1666456555.0],[-122.180277,37.809229,341.99404296875,1666456568.0],[-122.180253,37.809231,342.4809814453125,1666456569.0],[-122.180183,37.80924,343.3694091796875,1666456573.0],[-122.180151,37.809232,344.4717041015625,1666456575.0],[-122.180135,37.809207,346.27431640625,1666456578.0],[-122.180116,37.809198,346.277001953125,1666456579.0],[-122.180078,37.809193,347.0049072265625,1666456581.0],[-122.180049,37.809188,347.1260620117188,1666456582.0],[-122.179976,37.809182,349.3229614257813,1666456585.0],[-122.179861,37.80915,350.719140625,1666456589.0],[-122.17983,37.809132,350.1828857421875,1666456591.0],[-122.179824,37.809124,350.3266845703125,1666456592.0],[-122.179801,37.809106,348.683251953125,1666456594.0],[-122.179735,37.809082,347.61123046875,1666456597.0],[-122.179647,37.809072,348.210107421875,1666456602.0],[-122.179626,37.809072,348.27236328125,1666456603.0],[-122.179581,37.809055,347.9929443359375,1666456605.0],[-122.179468,37.808967,347.7309814453125,1666456612.0],[-122.179449,37.808962,348.4029174804688,1666456613.0],[-122.179382,37.808945,347.1254516601563,1666456616.0],[-122.179266,37.808887,351.62734375,1666456624.0],[-122.179256,37.808883,351.4224487304688,1666456625.0],[-122.179121,37.808762,359.9787841796875,1666456640.0],[-122.179103,37.808751,360.4056640625,1666456641.0],[-122.179063,37.808738,359.5798583984375,1666456644.0],[-122.179007,37.808748,359.9834228515625,1666456650.0],[-122.17887,37.808679,363.4135375976563,1666456661.0],[-122.178846,37.808663,363.5388427734375,1666456662.0],[-122.178768,37.808622,361.7487426757813,1666456665.0],[-122.178575,37.808582,358.470849609375,1666456671.0],[-122.178544,37.808575,359.4123779296875,1666456672.0],[-122.178419,37.808567,361.2251220703125,1666456677.0],[-122.178339,37.808544,366.9932495117188,1666456681.0],[-122.178322,37.808542,367.8574462890625,1666456682.0],[-122.178235,37.808565,369.1626220703125,1666456688.0],[-122.178181,37.808621,371.7882934570313,1666456691.0],[-122.178136,37.808649,372.0586181640625,1666456693.0],[-122.178111,37.808661,372.7146850585938,1666456694.0],[-122.178007,37.808691,372.6870361328125,1666456699.0],[-122.177894,37.808773,361.2280517578125,1666456704.0],[-122.177863,37.808799,361.5916381835938,1666456705.0],[-122.177791,37.808868,360.848291015625,1666456708.0],[-122.177801,37.808883,359.0368896484375,1666456709.0],[-122.177856,37.808891,362.2494750976563,1666456711.0],[-122.177925,37.808868,363.9381958007813,1666456714.0],[-122.177941,37.808864,366.012353515625,1666456715.0],[-122.178007,37.808858,367.86171875,1666456719.0],[-122.17813,37.808882,370.5730834960938,1666456726.0],[-122.178154,37.808888,373.2475830078125,1666456727.0],[-122.178197,37.808905,374.370751953125,1666456729.0],[-122.178308,37.808975,377.1093994140625,1666456738.0],[-122.178363,37.808991,377.61708984375,1666456740.0],[-122.178403,37.809007,378.467919921875,1666456741.0],[-122.17862,37.809137,372.86171875,1666456750.0],[-122.178649,37.809153,373.4482055664063,1666456751.0],[-122.17875,37.809216,377.2704711914063,1666456755.0],[-122.178802,37.809295,374.8401123046875,1666456761.0],[-122.178803,37.809317,376.9712768554688,1666456762.0],[-122.178796,37.809333,376.971826171875,1666456763.0],[-122.178777,37.809344,378.0781494140625,1666456765.0],[-122.178831,37.809296,376.62490234375,1666456772.0],[-122.178852,37.809232,376.1804443359375,1666456776.0],[-122.178852,37.809218,377.1170288085938,1666456777.0],[-122.178841,37.809207,376.895166015625,1666456778.0],[-122.178791,37.809194,381.2590576171875,1666456781.0],[-122.178697,37.8091,379.373193359375,1666456790.0],[-122.178682,37.809092,380.6081787109375,1666456791.0],[-122.178608,37.809053,382.496240234375,1666456795.0],[-122.178495,37.809038,381.7627197265625,1666456800.0],[-122.178486,37.809035,381.1311279296875,1666456801.0],[-122.178404,37.809021,380.8662963867188,1666456805.0],[-122.178291,37.809048,374.2641235351563,1666456811.0],[-122.178266,37.809057,372.9978881835938,1666456812.0],[-122.178142,37.809092,376.2261596679688,1666456819.0],[-122.178124,37.809119,375.5814453125,1666456821.0],[-122.178131,37.809134,375.8476806640625,1666456822.0],[-122.178139,37.809143,376.63271484375,1666456823.0],[-122.178234,37.809137,376.2910400390625,1666456830.0],[-122.178231,37.809163,379.212548828125,1666456835.0],[-122.178289,37.809206,374.2566162109375,1666456898.0],[-122.178294,37.80921,374.15517578125,1666456899.0],[-122.178356,37.809251,376.3142333984375,1666456918.0],[-122.178449,37.809256,377.9341064453125,1666457197.0],[-122.178495,37.809303,379.08193359375,1666457379.0],[-122.178505,37.809321,379.08974609375,1666457380.0],[-122.178526,37.80937,378.4421630859375,1666457384.0],[-122.178499,37.809461,383.4660278320313,1666457389.0],[-122.178476,37.80949,384.66298828125,1666457391.0],[-122.178463,37.809501,385.273583984375,1666457392.0],[-122.17836,37.80958,385.8930297851563,1666457398.0],[-122.178354,37.809632,387.9485107421875,1666457401.0],[-122.178343,37.809645,388.7190795898438,1666457402.0],[-122.178305,37.809687,390.1318603515625,1666457405.0],[-122.178294,37.809738,389.4062744140625,1666457407.0],[-122.178265,37.80977,390.0678955078125,1666457411.0],[-122.178261,37.809806,388.3557373046875,1666457413.0],[-122.178264,37.809819,388.7408081054688,1666457414.0],[-122.178201,37.80993,384.31484375,1666457419.0],[-122.178149,37.809976,386.463037109375,1666457421.0],[-122.17806,37.81003,390.3117919921875,1666457424.0],[-122.178033,37.81004,390.609033203125,1666457425.0],[-122.177991,37.810055,392.779443359375,1666457427.0],[-122.177815,37.810178,390.2641235351563,1666457434.0],[-122.177797,37.81019,391.2654052734375,1666457435.0],[-122.177735,37.810227,392.0935302734375,1666457438.0],[-122.177623,37.810271,396.2199951171875,1666457443.0],[-122.177576,37.810307,386.9350830078125,1666457445.0],[-122.177554,37.810332,387.938134765625,1666457446.0],[-122.177412,37.810479,397.3989501953125,1666457455.0],[-122.177394,37.810501,397.6999755859375,1666457456.0],[-122.177349,37.810544,398.8840576171875,1666457458.0],[-122.177275,37.81059,399.7641845703125,1666457461.0],[-122.177248,37.810633,399.8816162109375,1666457463.0],[-122.177228,37.81069,400.0715576171875,1666457465.0],[-122.177226,37.810717,401.3802734375,1666457466.0],[-122.177242,37.810757,402.6634765625,1666457468.0],[-122.177289,37.810805,403.52724609375,1666457471.0],[-122.177427,37.810838,383.505029296875,1666457479.0],[-122.177538,37.810806,391.9915405273438,1666457482.0],[-122.17757,37.810794,393.7607666015625,1666457483.0],[-122.177665,37.810722,398.30947265625,1666457490.0],[-122.177736,37.810701,398.4072509765625,1666457494.0],[-122.177756,37.810696,400.0168090820313,1666457495.0],[-122.177835,37.810678,399.4414306640625,1666457498.0],[-122.177967,37.810681,398.455224609375,1666457504.0],[-122.178025,37.810675,396.9952026367188,1666457505.0],[-122.178211,37.810648,395.3377319335938,1666457511.0],[-122.178304,37.810608,396.6369873046875,1666457514.0],[-122.178358,37.810596,396.0324951171875,1666457515.0],[-122.178419,37.81059,397.621240234375,1666457516.0],[-122.178618,37.810598,397.0814453125,1666457521.0],[-122.178702,37.810576,395.2802978515625,1666457524.0],[-122.178726,37.810571,396.309716796875,1666457525.0],[-122.178988,37.810542,395.7389770507813,1666457534.0],[-122.179023,37.810541,395.35927734375,1666457535.0],[-122.179122,37.810574,397.4614501953125,1666457542.0],[-122.179128,37.810623,399.23671875,1666457545.0],[-122.179116,37.810658,400.0742431640625,1666457547.0],[-122.179109,37.810671,399.2633911132813,1666457548.0],[-122.179102,37.810783,381.8210693359375,1666457554.0],[-122.179086,37.810815,388.004296875,1666457556.0],[-122.179067,37.810823,389.7387329101563,1666457557.0],[-122.179046,37.810835,391.6946044921875,1666457558.0],[-122.178933,37.810894,396.3474365234375,1666457563.0],[-122.178874,37.810964,399.1133056640625,1666457567.0],[-122.178859,37.810976,399.1443115234375,1666457568.0],[-122.178828,37.811006,398.46376953125,1666457570.0],[-122.178827,37.811032,396.7653442382813,1666457571.0],[-122.178905,37.811193,397.4331298828125,1666457577.0],[-122.178914,37.811214,400.236962890625,1666457578.0],[-122.178963,37.811315,349.1802001953125,1666457584.0],[-122.178958,37.811361,380.68056640625,1666457587.0],[-122.178954,37.811376,386.4104858398438,1666457588.0],[-122.178952,37.811494,400.951318359375,1666457594.0],[-122.178946,37.81153,402.0855346679688,1666457595.0],[-122.178923,37.811577,404.8635498046875,1666457598.0],[-122.178916,37.811591,405.2209716796875,1666457599.0],[-122.178902,37.811614,406.152001953125,1666457600.0],[-122.178909,37.811694,406.7776123046875,1666457602.0],[-122.179179,37.811834,409.818505859375,1666457604.0],[-122.179173,37.811782,410.3919921875,1666457605.0],[-122.179341,37.811767,407.6514526367188,1666457608.0],[-122.179419,37.811767,406.4038940429688,1666457609.0],[-122.179484,37.811763,407.800439453125,1666457610.0],[-122.179503,37.81174,409.01064453125,1666457611.0],[-122.179537,37.811627,409.83193359375,1666457615.0],[-122.179556,37.811603,410.95888671875,1666457616.0],[-122.179606,37.811575,410.2357421875,1666457618.0],[-122.179638,37.811558,410.1106201171875,1666457619.0],[-122.17974,37.811481,406.504541015625,1666457623.0],[-122.179784,37.811412,407.3918701171875,1666457627.0],[-122.17978,37.811348,375.3166748046875,1666457628.0],[-122.179805,37.81134,383.0463500976563,1666457629.0],[-122.179941,37.811241,399.5493408203125,1666457634.0],[-122.180026,37.811235,403.37294921875,1666457636.0],[-122.180072,37.811175,400.4284912109375,1666457638.0],[-122.180108,37.811161,401.3154541015625,1666457639.0],[-122.18024,37.811113,401.8532348632813,1666457642.0],[-122.180401,37.811027,402.9956909179688,1666457648.0],[-122.180435,37.81102,402.7056518554688,1666457649.0],[-122.180494,37.811032,401.8493896484375,1666457651.0],[-122.180527,37.811064,400.9939819335938,1666457653.0],[-122.180529,37.81109,400.613671875,1666457654.0],[-122.180481,37.811212,398.7607666015625,1666457659.0],[-122.180475,37.811234,398.699365234375,1666457660.0],[-122.180432,37.811341,402.1875244140625,1666457665.0],[-122.180439,37.811431,408.3122802734375,1666457669.0],[-122.180433,37.811451,411.0264526367188,1666457670.0],[-122.180414,37.811504,413.5188232421875,1666457672.0],[-122.180418,37.811575,411.24990234375,1666457675.0],[-122.180385,37.811654,411.8898559570313,1666457679.0],[-122.180376,37.811669,412.3086181640625,1666457680.0],[-122.180262,37.811797,395.8208862304688,1666457689.0],[-122.180242,37.811815,398.368798828125,1666457690.0],[-122.1802,37.811858,404.1839233398438,1666457692.0],[-122.180167,37.811933,385.9516235351563,1666457695.0],[-122.180097,37.812015,401.2455078125,1666457699.0],[-122.180076,37.812043,404.141748046875,1666457700.0],[-122.180053,37.812078,406.3105712890625,1666457701.0],[-122.180035,37.812129,410.131005859375,1666457703.0],[-122.180011,37.812306,413.5043579101563,1666457709.0],[-122.180007,37.812324,413.811669921875,1666457710.0],[-122.18002,37.812366,414.2519775390625,1666457713.0],[-122.180077,37.812416,414.9990478515625,1666457715.0],[-122.180163,37.812459,415.34658203125,1666457718.0],[-122.180228,37.812476,415.0589233398438,1666457720.0],[-122.180259,37.812482,415.014794921875,1666457721.0],[-122.18032,37.812505,416.7494140625,1666457723.0],[-122.180603,37.812691,368.661767578125,1666457730.0],[-122.180628,37.812722,376.9674926757813,1666457731.0],[-122.180646,37.812755,384.6499267578125,1666457732.0],[-122.18066,37.812815,395.8301025390625,1666457734.0],[-122.180641,37.812883,406.3683715820313,1666457739.0],[-122.180659,37.812922,410.2915893554688,1666457744.0],[-122.180655,37.812929,411.0458618164063,1666457745.0],[-122.180652,37.812943,411.0871826171875,1666457746.0],[-122.180623,37.813016,410.2575317382813,1666457749.0],[-122.180571,37.813097,409.1613403320313,1666457753.0],[-122.180571,37.813134,411.0193115234375,1666457755.0],[-122.180576,37.813163,411.0771728515625,1666457756.0],[-122.180591,37.81323,411.77236328125,1666457758.0],[-122.180577,37.813306,411.2649169921875,1666457760.0],[-122.180497,37.813466,410.2559448242188,1666457765.0],[-122.180488,37.813493,409.947900390625,1666457766.0],[-122.180462,37.813574,411.1825805664063,1666457769.0],[-122.180487,37.813715,411.65615234375,1666457773.0],[-122.180473,37.81377,411.9794555664063,1666457775.0],[-122.180454,37.813791,412.0468994140625,1666457777.0],[-122.180432,37.813837,410.8933349609375,1666457779.0],[-122.180421,37.813894,408.419091796875,1666457782.0],[-122.180387,37.813937,409.0796142578125,1666457784.0],[-122.18038,37.813968,410.5554443359375,1666457788.0],[-122.180365,37.813988,408.996728515625,1666457789.0],[-122.180249,37.81411,406.6278930664063,1666457796.0],[-122.180173,37.814151,411.7827392578125,1666457800.0],[-122.180163,37.814158,412.5857177734375,1666457801.0],[-122.18008,37.814172,417.6103759765625,1666457805.0],[-122.180042,37.814197,418.7370849609375,1666457808.0],[-122.179995,37.814208,421.9497314453125,1666457810.0],[-122.18,37.814244,421.0606323242188,1666457812.0],[-122.180003,37.814257,421.1845947265625,1666457813.0],[-122.180004,37.814265,423.4480224609375,1666457814.0],[-122.179952,37.814299,397.2935424804688,1666457821.0],[-122.179891,37.814308,416.0197387695313,1666457825.0],[-122.17984,37.814342,420.60390625,1666457828.0],[-122.17981,37.814354,417.0376220703125,1666457829.0],[-122.179703,37.814399,418.5476318359375,1666457832.0],[-122.179655,37.814444,419.3340698242188,1666457834.0],[-122.179623,37.814484,419.7298217773438,1666457835.0],[-122.179655,37.814505,419.636865234375,1666457837.0],[-122.179659,37.814541,422.1775146484375,1666457840.0],[-122.179639,37.814551,422.2160888671875,1666457841.0],[-122.179521,37.81457,423.544091796875,1666457845.0],[-122.179386,37.814664,421.1794677734375,1666457850.0],[-122.179375,37.814675,422.285791015625,1666457851.0],[-122.17937,37.814692,424.5901123046875,1666457852.0],[-122.179328,37.814716,423.507470703125,1666457854.0],[-122.179311,37.814739,426.089501953125,1666457856.0],[-122.179271,37.814833,423.4577880859375,1666457861.0],[-122.179259,37.814857,422.5912109375,1666457862.0],[-122.179169,37.814939,425.266015625,1666457873.0],[-122.179178,37.814993,422.42763671875,1666457877.0],[-122.179177,37.814999,422.26796875,1666457878.0],[-122.179173,37.815005,421.32216796875,1666457879.0],[-122.179188,37.815018,420.44765625,1666457881.0],[-122.179168,37.815002,422.293115234375,1666457889.0],[-122.179154,37.815026,423.5940185546875,1666457894.0],[-122.17918,37.815009,421.3008056640625,1666457915.0],[-122.179241,37.815022,431.7287841796875,1666458013.0],[-122.17924,37.814991,436.0447021484375,1666458046.0],[-122.179238,37.814981,436.00087890625,1666458047.0],[-122.179231,37.814923,434.16787109375,1666458052.0],[-122.179216,37.8149,433.5287719726563,1666458054.0],[-122.179194,37.814817,431.88662109375,1666458060.0],[-122.179185,37.814803,432.625390625,1666458061.0],[-122.179185,37.814766,434.3129516601563,1666458064.0],[-122.179201,37.814724,435.381494140625,1666458068.0],[-122.179256,37.814633,434.2126708984375,1666458080.0],[-122.179263,37.814617,434.11708984375,1666458081.0],[-122.1793,37.814523,431.3822265625,1666458085.0],[-122.179316,37.814405,435.2153564453125,1666458090.0],[-122.179312,37.814378,437.2517333984375,1666458091.0],[-122.1793,37.814326,439.775048828125,1666458093.0],[-122.179265,37.814272,440.6211181640625,1666458095.0],[-122.179211,37.814233,440.8060546875,1666458097.0],[-122.179128,37.814207,442.9161010742188,1666458100.0],[-122.179101,37.8142,444.1250244140625,1666458101.0],[-122.179017,37.81418,448.3806396484375,1666458104.0],[-122.178982,37.814145,449.6734252929688,1666458107.0],[-122.178953,37.814132,451.3803955078125,1666458109.0],[-122.178896,37.81413,450.6638427734375,1666458112.0],[-122.178878,37.814125,449.9199462890625,1666458113.0],[-122.178741,37.81408,441.79140625,1666458119.0],[-122.178644,37.814065,442.1984497070313,1666458122.0],[-122.178605,37.814061,442.2258544921875,1666458123.0],[-122.178527,37.81406,438.9843994140625,1666458125.0],[-122.178451,37.814074,438.04970703125,1666458127.0],[-122.178332,37.814151,437.4939208984375,1666458132.0],[-122.178317,37.814159,439.4623657226563,1666458133.0],[-122.178167,37.814272,441.1447387695313,1666458140.0],[-122.178141,37.814279,443.44228515625,1666458141.0],[-122.178078,37.814275,443.0235229492188,1666458143.0],[-122.178042,37.814268,443.48232421875,1666458144.0],[-122.177951,37.814242,444.186181640625,1666458147.0],[-122.177864,37.814195,443.5442749023438,1666458150.0],[-122.177828,37.814157,446.6486450195313,1666458153.0],[-122.177818,37.81414,447.5483032226563,1666458154.0],[-122.17779,37.814102,452.7446533203125,1666458157.0],[-122.177728,37.81405,453.7157836914063,1666458162.0],[-122.177649,37.814028,448.7193237304688,1666458165.0],[-122.177617,37.81402,446.9909301757813,1666458166.0],[-122.177391,37.813973,452.7131591796875,1666458175.0],[-122.177362,37.813972,452.919580078125,1666458176.0],[-122.177171,37.813972,452.4861083984375,1666458181.0],[-122.177134,37.813963,453.6479736328125,1666458182.0],[-122.177045,37.813914,454.3798461914063,1666458185.0],[-122.177015,37.813899,454.5217529296875,1666458186.0],[-122.176813,37.813808,446.3137451171875,1666458223.0],[-122.176814,37.813773,447.1564575195313,1666458224.0],[-122.17682,37.813745,449.270166015625,1666458225.0],[-122.176836,37.813672,445.7239624023438,1666458227.0],[-122.176884,37.813607,443.803857421875,1666458228.0],[-122.176893,37.813554,445.0080810546875,1666458229.0],[-122.176872,37.813403,443.2754150390625,1666458231.0],[-122.176847,37.813364,442.6953979492188,1666458232.0],[-122.176831,37.813303,443.1469360351563,1666458233.0],[-122.176841,37.813242,441.75625,1666458234.0],[-122.176828,37.813193,440.8243041992188,1666458235.0],[-122.176788,37.813097,440.789697265625,1666458237.0],[-122.176655,37.812855,442.81142578125,1666458241.0],[-122.176603,37.812779,443.501123046875,1666458242.0],[-122.176572,37.812677,442.7325073242188,1666458243.0],[-122.17652,37.812602,441.815576171875,1666458244.0],[-122.176496,37.81255,441.8581787109375,1666458245.0],[-122.176479,37.81251,442.7870727539063,1666458246.0],[-122.176491,37.812452,445.9526611328125,1666458248.0],[-122.17648,37.812413,444.9160400390625,1666458249.0],[-122.176464,37.812395,446.2671142578125,1666458250.0],[-122.176456,37.812332,447.58046875,1666458252.0],[-122.176422,37.812279,448.1841064453125,1666458254.0],[-122.176401,37.812249,448.158837890625,1666458255.0],[-122.176373,37.812212,451.5437255859375,1666458259.0],[-122.176399,37.812111,445.8646484375,1666458263.0],[-122.1764,37.812063,445.5125366210938,1666458264.0],[-122.176373,37.811975,445.8315673828125,1666458265.0],[-122.176389,37.811917,447.1076293945313,1666458266.0],[-122.176382,37.811896,448.0452514648438,1666458267.0],[-122.176415,37.811839,447.14638671875,1666458268.0],[-122.176379,37.811779,443.4607177734375,1666458269.0],[-122.176373,37.811739,441.519677734375,1666458270.0],[-122.176368,37.811671,443.0816284179688,1666458271.0],[-122.17639,37.811628,443.4250732421875,1666458272.0],[-122.176333,37.811502,441.4900146484375,1666458274.0],[-122.176286,37.811478,440.8859497070313,1666458276.0],[-122.176249,37.811458,440.778466796875,1666458277.0],[-122.176167,37.8114,440.4167724609375,1666458279.0],[-122.176181,37.81134,439.714990234375,1666458280.0],[-122.176168,37.811262,441.3100830078125,1666458282.0],[-122.176182,37.811194,439.83876953125,1666458283.0],[-122.176173,37.811158,439.160302734375,1666458284.0],[-122.17618,37.811069,436.968408203125,1666458286.0],[-122.176182,37.81102,436.1853881835938,1666458287.0],[-122.176164,37.81098,435.0677734375,1666458288.0],[-122.176163,37.810936,436.099755859375,1666458289.0],[-122.176184,37.810905,436.02724609375,1666458290.0],[-122.176189,37.81087,434.6615234375,1666458291.0],[-122.176168,37.810829,433.00478515625,1666458292.0],[-122.176213,37.810827,432.8858276367188,1666458293.0],[-122.176227,37.810814,430.717431640625,1666458294.0],[-122.176305,37.810798,429.8820434570313,1666458296.0],[-122.176346,37.810791,430.4582763671875,1666458297.0],[-122.176371,37.810767,428.7329345703125,1666458298.0],[-122.17637,37.810729,428.686669921875,1666458299.0],[-122.176351,37.810705,428.6189208984375,1666458300.0],[-122.176334,37.810693,428.60048828125,1666458301.0],[-122.176229,37.81069,426.47255859375,1666458306.0],[-122.176217,37.810681,426.9447265625,1666458307.0],[-122.176196,37.810647,434.1845947265625,1666458310.0],[-122.176152,37.810607,435.0066772460938,1666458322.0],[-122.176103,37.81061,432.0564208984375,1666458335.0],[-122.176074,37.81059,433.8027587890625,1666458339.0],[-122.176073,37.810584,433.6231323242188,1666458340.0],[-122.176062,37.810503,436.7324462890625,1666458414.0],[-122.176018,37.8105,436.9643798828125,1666458416.0],[-122.175956,37.810521,437.0486694335938,1666458420.0],[-122.175939,37.810536,437.0583740234375,1666458421.0],[-122.175886,37.810555,439.341455078125,1666458423.0],[-122.175743,37.810575,440.0097290039063,1666458426.0],[-122.175667,37.810561,440.599267578125,1666458428.0],[-122.175577,37.81058,439.68154296875,1666458430.0],[-122.175538,37.810566,439.5417724609375,1666458431.0],[-122.175495,37.810509,438.9524169921875,1666458433.0],[-122.175496,37.810489,437.1829467773438,1666458435.0],[-122.175471,37.810488,438.0254760742188,1666458443.0],[-122.175425,37.810519,436.1689697265625,1666458466.0],[-122.175371,37.810512,432.4279418945313,1666458478.0],[-122.175358,37.8105,429.3482299804688,1666458479.0],[-122.175354,37.810491,429.546044921875,1666458480.0],[-122.175408,37.810395,430.7748046875,1666458488.0],[-122.175376,37.810397,436.6784912109375,1666458504.0],[-122.175345,37.810384,435.9980102539063,1666458542.0],[-122.175342,37.81038,435.6885620117188,1666458543.0],[-122.175305,37.810368,437.0210815429688,1666458552.0],[-122.175267,37.810408,428.1416259765625,1666458738.0],[-122.175245,37.81038,422.8522583007813,1666458745.0],[-122.175233,37.810289,422.8860107421875,1666458748.0],[-122.175236,37.810257,423.1377197265625,1666458749.0],[-122.175232,37.810137,421.1367431640625,1666458752.0],[-122.17526,37.810118,420.5351196289063,1666458753.0],[-122.175236,37.810095,417.595361328125,1666458754.0],[-122.175215,37.810099,415.3720336914063,1666458755.0],[-122.17529,37.810176,414.878564453125,1666458758.0],[-122.175358,37.810193,416.55068359375,1666458759.0],[-122.175408,37.810222,415.6599365234375,1666458761.0],[-122.175643,37.81011,413.4594970703125,1666458765.0],[-122.175658,37.81006,413.8138061523438,1666458766.0],[-122.175677,37.810059,414.7917724609375,1666458767.0],[-122.175687,37.810045,415.996240234375,1666458768.0],[-122.175704,37.810018,414.2361083984375,1666458769.0],[-122.17579,37.809951,414.42177734375,1666458772.0],[-122.175799,37.809884,411.02333984375,1666458773.0],[-122.175797,37.809796,410.8864379882813,1666458774.0],[-122.175675,37.809693,411.4932495117188,1666458778.0],[-122.175654,37.809663,412.594873046875,1666458779.0],[-122.175618,37.809652,414.52236328125,1666458780.0],[-122.175617,37.809623,416.51162109375,1666458781.0],[-122.17559,37.809601,417.4963012695313,1666458782.0],[-122.17561,37.809513,418.51162109375,1666458784.0],[-122.175595,37.80941,420.1615844726563,1666458786.0],[-122.175613,37.809362,421.2024780273438,1666458787.0],[-122.17559,37.809264,427.2138916015625,1666458788.0],[-122.175587,37.8092,429.3822265625,1666458789.0],[-122.175572,37.809175,428.476953125,1666458790.0],[-122.175583,37.809162,429.5117431640625,1666458791.0],[-122.175597,37.809096,422.12197265625,1666458795.0],[-122.175647,37.809115,421.2734619140625,1666458797.0],[-122.175717,37.809125,421.31435546875,1666458803.0],[-122.175726,37.809123,421.4548583984375,1666458804.0],[-122.175757,37.809002,415.6750732421875,1666458845.0],[-122.175826,37.808998,415.9132934570313,1666458846.0],[-122.175878,37.80898,417.6404663085938,1666458847.0],[-122.175953,37.808924,415.2136474609375,1666458848.0],[-122.176104,37.808815,415.2083984375,1666458850.0],[-122.176146,37.80875,415.601220703125,1666458851.0],[-122.176231,37.808675,415.8488403320313,1666458852.0],[-122.176361,37.808499,415.0713134765625,1666458854.0],[-122.176323,37.808472,415.7026611328125,1666458855.0],[-122.176338,37.808387,414.8425537109375,1666458857.0],[-122.176329,37.808354,414.3236328125,1666458858.0],[-122.176347,37.808296,412.360009765625,1666458859.0],[-122.176379,37.80826,412.99208984375,1666458860.0],[-122.176352,37.808201,396.0771728515625,1666458862.0],[-122.176246,37.80814,406.26064453125,1666458865.0],[-122.176176,37.808125,407.1673828125,1666458866.0],[-122.176138,37.808087,408.348046875,1666458867.0],[-122.176163,37.808067,409.1484008789063,1666458868.0],[-122.17613,37.808034,412.11806640625,1666458869.0],[-122.176111,37.808001,412.59609375,1666458870.0],[-122.176118,37.807975,410.7177978515625,1666458872.0],[-122.176166,37.807968,408.7710205078125,1666458874.0],[-122.176176,37.80795,407.6966796875,1666458875.0],[-122.176205,37.807954,402.4779296875,1666458877.0],[-122.176222,37.807977,403.406640625,1666458878.0],[-122.176228,37.807936,401.0922485351563,1666458880.0],[-122.17624,37.807932,402.3476806640625,1666458881.0],[-122.176273,37.807952,403.9490600585938,1666458923.0],[-122.176347,37.807924,399.6651245117188,1666458940.0],[-122.176487,37.807922,398.3763671875,1666458944.0],[-122.176529,37.807919,397.8391357421875,1666458945.0],[-122.176573,37.807913,398.2407470703125,1666458946.0],[-122.176712,37.807863,396.0970703125,1666458949.0],[-122.176762,37.807864,394.995263671875,1666458951.0],[-122.17679,37.807853,394.775537109375,1666458953.0],[-122.176813,37.807828,397.0002075195313,1666458955.0],[-122.176819,37.807819,396.2626586914063,1666458956.0],[-122.176842,37.807776,395.4080444335938,1666458962.0],[-122.176899,37.807732,395.6392456054688,1666458965.0],[-122.176925,37.807719,394.2215209960938,1666458966.0],[-122.176968,37.80772,393.4749389648438,1666458969.0],[-122.176982,37.807723,394.8334594726563,1666458970.0],[-122.177104,37.807712,394.504541015625,1666458975.0],[-122.17719,37.807748,398.4828125,1666458979.0],[-122.17729,37.807751,396.661767578125,1666458981.0],[-122.177343,37.807752,395.4878173828125,1666458982.0],[-122.177455,37.807767,395.5853515625,1666458984.0],[-122.177497,37.807782,391.7900024414063,1666458985.0],[-122.177715,37.807906,389.4159790039063,1666458991.0],[-122.177748,37.80791,389.1172729492188,1666458992.0],[-122.177809,37.807919,389.9907470703125,1666458995.0],[-122.177846,37.807944,388.1547485351563,1666458998.0],[-122.17791,37.807928,380.676904296875,1666459022.0],[-122.177956,37.80794,383.2741333007813,1666459033.0],[-122.177969,37.807951,382.9021240234375,1666459034.0],[-122.178054,37.808014,380.256005859375,1666459039.0],[-122.178083,37.808046,380.0451904296875,1666459041.0],[-122.178085,37.808063,380.5830932617188,1666459043.0],[-122.178067,37.808071,380.9538818359375,1666459044.0],[-122.177998,37.808054,382.448876953125,1666459046.0],[-122.177967,37.808045,383.0478759765625,1666459047.0],[-122.177955,37.808054,383.7640625,1666459048.0],[-122.177971,37.808074,382.5722900390625,1666459049.0],[-122.178055,37.80811,380.963525390625,1666459051.0],[-122.178151,37.808175,382.3877807617188,1666459054.0],[-122.178237,37.808211,384.3506103515625,1666459056.0],[-122.178278,37.808224,383.800927734375,1666459057.0],[-122.178482,37.808295,379.4584594726563,1666459059.0],[-122.178499,37.808287,378.2265258789063,1666459062.0],[-122.178485,37.808268,378.1692749023438,1666459063.0],[-122.178466,37.808277,378.3699584960938,1666459064.0],[-122.178431,37.808251,379.7730346679688,1666459066.0],[-122.17839,37.808239,378.9546142578125,1666459068.0],[-122.178399,37.808246,380.0627685546875,1666459069.0],[-122.178705,37.808368,371.1938110351563,1666459076.0],[-122.178729,37.808397,369.9919677734375,1666459078.0],[-122.178741,37.808415,368.601220703125,1666459079.0],[-122.178766,37.808484,364.5225463867188,1666459084.0],[-122.178835,37.808518,362.5382934570313,1666459087.0],[-122.178855,37.808543,363.8000732421875,1666459094.0],[-122.178854,37.808545,363.70693359375,1666459095.0],[-122.178946,37.808621,362.8437133789063,1666459099.0],[-122.179017,37.808663,363.7598510742188,1666459101.0],[-122.179187,37.808717,362.79775390625,1666459103.0],[-122.179222,37.808716,360.2528930664063,1666459104.0],[-122.179304,37.808748,357.5022216796875,1666459105.0],[-122.17938,37.808782,355.3646484375,1666459106.0],[-122.179447,37.808794,353.9367919921875,1666459107.0],[-122.179613,37.808903,354.05556640625,1666459109.0],[-122.179658,37.808876,351.19619140625,1666459110.0],[-122.179769,37.808868,348.8322998046875,1666459112.0],[-122.179823,37.8089,349.273095703125,1666459113.0],[-122.179888,37.808856,344.6838623046875,1666459114.0],[-122.179952,37.808876,346.4963623046875,1666459115.0],[-122.179994,37.80891,346.6618286132813,1666459116.0],[-122.180026,37.808938,346.4006591796875,1666459117.0],[-122.180171,37.808866,346.4597412109375,1666459119.0],[-122.180236,37.808804,343.5130859375,1666459121.0],[-122.180411,37.808753,343.5970703125,1666459124.0],[-122.18042,37.808763,348.3071533203125,1666459125.0],[-122.180417,37.808767,348.1673217773438,1666459126.0],[-122.180436,37.808788,349.601220703125,1666459131.0],[-122.180391,37.808808,349.534326171875,1666459146.0],[-122.180387,37.808858,348.3154541015625,1666459149.0],[-122.180366,37.808886,347.685205078125,1666459151.0],[-122.180337,37.808906,346.992578125,1666459152.0],[-122.180223,37.808987,346.8821655273438,1666459155.0],[-122.179999,37.809011,344.1968017578125,1666459159.0],[-122.179949,37.809043,344.29384765625,1666459160.0],[-122.179888,37.809049,345.18935546875,1666459161.0],[-122.179867,37.809067,348.9238525390625,1666459162.0],[-122.179836,37.809091,349.6118408203125,1666459163.0],[-122.179813,37.809147,350.498193359375,1666459164.0],[-122.179792,37.809162,349.7534423828125,1666459165.0],[-122.179886,37.809238,346.9916015625,1666459167.0],[-122.179927,37.809239,346.2820068359375,1666459169.0],[-122.179938,37.809294,336.6018920898438,1666459201.0],[-122.17994,37.809295,336.3515258789063,1666459202.0],[-122.180024,37.809317,362.2746215820313,1666459240.0],[-122.180027,37.809339,355.7597900390625,1666459245.0],[-122.180041,37.809315,348.4707885742188,1666459442.0],[-122.180068,37.809299,357.6125732421875,1666459586.0],[-122.180025,37.80928,356.4131103515625,1666459647.0],[-122.180001,37.809271,356.9884887695313,1666459648.0],[-122.179886,37.809228,359.245751953125,1666459653.0],[-122.179813,37.809174,359.6457763671875,1666459657.0],[-122.179801,37.809164,360.5835205078125,1666459658.0],[-122.179722,37.809104,356.98525390625,1666459664.0],[-122.179664,37.809091,358.0301147460938,1666459667.0],[-122.179652,37.809084,362.2005859375,1666459668.0],[-122.179576,37.80903,362.8207641601563,1666459675.0],[-122.179447,37.808995,360.456689453125,1666459680.0],[-122.179422,37.80899,360.7007080078125,1666459681.0],[-122.179299,37.808952,362.211083984375,1666459687.0],[-122.179261,37.808919,363.1206298828125,1666459690.0],[-122.179253,37.808906,363.4377685546875,1666459691.0],[-122.179187,37.808844,363.5705810546875,1666459697.0],[-122.179108,37.808808,366.6482177734375,1666459701.0],[-122.179091,37.8088,367.5766845703125,1666459702.0],[-122.179015,37.808759,368.7922607421875,1666459706.0],[-122.178946,37.808747,366.9861694335938,1666459709.0],[-122.1789,37.808727,368.2502685546875,1666459712.0],[-122.178885,37.808721,368.509912109375,1666459713.0],[-122.178813,37.808686,372.7165771484375,1666459718.0],[-122.178769,37.808632,404.0284057617188,1666459725.0],[-122.178717,37.808618,378.858056640625,1666459727.0],[-122.178683,37.808614,379.7448974609375,1666459728.0],[-122.178618,37.808608,380.8862548828125,1666459731.0],[-122.178544,37.808576,382.9748168945313,1666459735.0],[-122.178482,37.808567,381.66884765625,1666459737.0],[-122.17845,37.808568,381.3757568359375,1666459738.0],[-122.178358,37.808561,380.637109375,1666459742.0],[-122.178234,37.808567,380.3750244140625,1666459747.0],[-122.178199,37.808566,379.5227905273438,1666459748.0],[-122.178141,37.808572,377.3012939453125,1666459750.0],[-122.178087,37.808628,376.9594360351563,1666459754.0],[-122.178053,37.808639,377.5703369140625,1666459755.0],[-122.177984,37.808642,378.1625,1666459758.0],[-122.177956,37.808642,378.113671875,1666459759.0],[-122.177923,37.808661,379.11123046875,1666459761.0],[-122.177891,37.808697,381.2119384765625,1666459765.0],[-122.177855,37.808708,376.8354125976563,1666459767.0],[-122.177843,37.808742,374.8373046875,1666459769.0],[-122.177845,37.808768,372.756494140625,1666459770.0],[-122.177848,37.808793,372.2953125,1666459771.0],[-122.17782,37.808825,370.7285400390625,1666459774.0],[-122.177834,37.808809,370.1185546875,1666459778.0],[-122.177892,37.808796,369.6059814453125,1666459781.0],[-122.177978,37.808798,371.730615234375,1666459784.0],[-122.177998,37.808799,371.9167724609375,1666459785.0],[-122.178084,37.808819,368.115625,1666459788.0],[-122.178225,37.808828,371.548974609375,1666459796.0],[-122.178243,37.80884,372.032373046875,1666459797.0],[-122.178283,37.808865,371.3885131835938,1666459803.0],[-122.178498,37.808944,369.5618530273438,1666459810.0],[-122.178518,37.80896,369.3686767578125,1666459811.0],[-122.17858,37.809015,368.961572265625,1666459814.0],[-122.178606,37.809081,368.8072143554688,1666459818.0],[-122.178648,37.809115,368.0633178710938,1666459821.0],[-122.178665,37.809123,368.312646484375,1666459822.0],[-122.178803,37.809244,368.2952514648438,1666459830.0],[-122.178826,37.809275,369.73720703125,1666459833.0],[-122.178831,37.809284,371.681787109375,1666459834.0],[-122.17884,37.809351,372.1867309570313,1666459839.0],[-122.17885,37.809371,371.4302001953125,1666459841.0],[-122.178821,37.809359,371.6907592773438,1666459846.0],[-122.178835,37.809307,369.388330078125,1666459849.0],[-122.178829,37.809294,368.321923828125,1666459850.0],[-122.17874,37.809208,373.1115966796875,1666459859.0],[-122.17874,37.809176,372.3415771484375,1666459862.0],[-122.178712,37.809141,374.4626708984375,1666459864.0],[-122.178693,37.809129,377.4167724609375,1666459865.0],[-122.178498,37.809051,379.3807006835938,1666459874.0],[-122.178469,37.809041,379.4905029296875,1666459875.0],[-122.178367,37.809023,382.10927734375,1666459880.0],[-122.178262,37.80904,381.7248168945313,1666459885.0],[-122.178242,37.809044,380.210107421875,1666459886.0],[-122.178145,37.809099,381.4717041015625,1666459893.0],[-122.178137,37.809114,382.166162109375,1666459894.0],[-122.178148,37.809126,383.1459594726563,1666459895.0],[-122.178185,37.809134,380.7444091796875,1666459897.0],[-122.1782,37.809136,340.561669921875,1666459898.0],[-122.178271,37.809128,372.919580078125,1666459903.0],[-122.1783,37.809137,376.3137451171875,1666459905.0],[-122.178367,37.809208,381.3356567382813,1666459910.0],[-122.178376,37.809216,383.45302734375,1666459911.0],[-122.178475,37.809319,383.8122802734375,1666460042.0],[-122.178491,37.809382,385.1770263671875,1666460046.0],[-122.178495,37.809401,384.3650756835938,1666460047.0],[-122.178479,37.809451,385.649072265625,1666460050.0],[-122.178404,37.809488,385.7806640625,1666460054.0],[-122.178344,37.809544,386.0833984375,1666460058.0],[-122.178338,37.809558,387.002099609375,1666460059.0],[-122.178285,37.809658,389.5992065429688,1666460067.0],[-122.178227,37.809719,394.25234375,1666460071.0],[-122.178198,37.809736,393.926904296875,1666460072.0],[-122.178166,37.809751,395.998681640625,1666460073.0],[-122.177964,37.809908,389.8904052734375,1666460080.0],[-122.177911,37.809934,394.944970703125,1666460082.0],[-122.177894,37.809935,395.8200927734375,1666460083.0],[-122.177877,37.809933,396.123681640625,1666460084.0],[-122.17783,37.809962,394.0757080078125,1666460086.0],[-122.177712,37.810094,393.974755859375,1666460092.0],[-122.177699,37.810121,395.3960205078125,1666460093.0],[-122.177668,37.810208,397.748681640625,1666460096.0],[-122.17762,37.810266,397.8891235351563,1666460099.0],[-122.177501,37.810317,397.5940185546875,1666460102.0],[-122.177472,37.81034,397.5833374023438,1666460103.0],[-122.177426,37.810386,398.3794799804688,1666460105.0],[-122.177345,37.810566,399.2434326171875,1666460112.0],[-122.177332,37.810591,399.5703369140625,1666460113.0],[-122.177316,37.810607,400.6462646484375,1666460114.0],[-122.177288,37.810615,400.7014404296875,1666460115.0],[-122.177239,37.810615,398.7079711914063,1666460118.0],[-122.177221,37.810632,397.3352294921875,1666460119.0],[-122.177213,37.810657,396.4431396484375,1666460120.0],[-122.177222,37.810687,395.5669189453125,1666460121.0],[-122.177312,37.810749,397.7367797851563,1666460125.0],[-122.177344,37.81076,396.6679931640625,1666460126.0],[-122.177367,37.810764,395.1789794921875,1666460127.0],[-122.177405,37.810768,395.611962890625,1666460129.0],[-122.177458,37.810738,333.8584228515625,1666460132.0],[-122.177574,37.810745,363.59267578125,1666460136.0],[-122.177604,37.810737,367.650537109375,1666460137.0],[-122.177658,37.810724,372.7737060546875,1666460139.0],[-122.177739,37.810677,381.3601318359375,1666460142.0],[-122.177877,37.810663,389.235009765625,1666460146.0],[-122.177909,37.810664,389.3281494140625,1666460147.0],[-122.17801,37.810672,391.2387939453125,1666460150.0],[-122.178081,37.810695,394.277001953125,1666460153.0],[-122.178155,37.810676,397.4247680664063,1666460156.0],[-122.178183,37.810673,397.427392578125,1666460157.0],[-122.178267,37.81066,397.2119384765625,1666460159.0],[-122.178412,37.810614,398.937158203125,1666460162.0],[-122.178542,37.810596,403.00771484375,1666460166.0],[-122.17857,37.810592,403.3223510742188,1666460167.0],[-122.178656,37.810582,403.26015625,1666460170.0],[-122.178713,37.810546,401.8571411132813,1666460172.0],[-122.178831,37.810508,403.304345703125,1666460177.0],[-122.178841,37.810503,403.3366943359375,1666460178.0],[-122.178867,37.810479,402.7155395507813,1666460180.0],[-122.178892,37.81047,401.820458984375,1666460181.0],[-122.17895,37.810469,401.50087890625,1666460183.0],[-122.179039,37.810445,399.210107421875,1666460186.0],[-122.17907,37.810449,399.15517578125,1666460187.0],[-122.179098,37.810458,401.4758544921875,1666460188.0],[-122.17915,37.81048,402.7103515625,1666460191.0],[-122.179191,37.810559,398.433251953125,1666460195.0],[-122.179196,37.810597,398.7414794921875,1666460197.0],[-122.179191,37.810621,399.3567749023438,1666460198.0],[-122.179171,37.810751,398.9399658203125,1666460204.0],[-122.179127,37.810807,399.740380859375,1666460207.0],[-122.179109,37.810825,399.7572875976563,1666460208.0],[-122.179073,37.810851,402.9976440429688,1666460210.0],[-122.178969,37.81089,408.6770263671875,1666460216.0],[-122.178941,37.810916,410.3496337890625,1666460218.0],[-122.178926,37.810937,410.45546875,1666460219.0],[-122.178853,37.811033,408.3402954101563,1666460223.0],[-122.178851,37.811071,408.186669921875,1666460224.0],[-122.178885,37.811104,407.5375,1666460225.0],[-122.178994,37.811164,408.158349609375,1666460228.0],[-122.179007,37.811184,408.1824584960938,1666460229.0],[-122.179026,37.811278,409.1532836914063,1666460232.0],[-122.179021,37.811328,408.5916381835938,1666460234.0],[-122.178998,37.81135,407.382958984375,1666460235.0],[-122.178921,37.811385,407.5454956054688,1666460239.0],[-122.178922,37.811408,407.3944946289063,1666460240.0],[-122.178916,37.811432,406.9383178710938,1666460241.0],[-122.178924,37.811476,406.6975341796875,1666460242.0],[-122.178968,37.811618,409.4092041015625,1666460245.0],[-122.178985,37.811713,407.9297729492188,1666460248.0],[-122.179003,37.811754,408.873681640625,1666460249.0],[-122.179023,37.811789,409.2862182617188,1666460250.0],[-122.179051,37.811822,409.84462890625,1666460251.0],[-122.179086,37.811845,410.5385986328125,1666460252.0],[-122.179179,37.81186,410.5231567382813,1666460254.0],[-122.179267,37.811831,409.724267578125,1666460256.0],[-122.179333,37.811752,410.7697998046875,1666460259.0],[-122.179357,37.811726,410.008203125,1666460260.0],[-122.179461,37.811604,409.271630859375,1666460264.0],[-122.17952,37.811552,407.268212890625,1666460266.0],[-122.17963,37.811482,406.4519897460938,1666460269.0],[-122.179658,37.811468,407.4643798828125,1666460270.0],[-122.179683,37.811456,406.3969970703125,1666460271.0],[-122.179735,37.811405,403.95546875,1666460273.0],[-122.17982,37.811264,402.9359375,1666460277.0],[-122.179874,37.811202,404.5168090820313,1666460279.0],[-122.17991,37.811172,405.5415283203125,1666460280.0],[-122.180097,37.811083,407.9450927734375,1666460285.0],[-122.180252,37.811024,406.975,1666460289.0],[-122.180285,37.811003,403.1643920898438,1666460290.0],[-122.180358,37.810951,400.6191650390625,1666460293.0],[-122.180443,37.810938,402.3406005859375,1666460295.0],[-122.180508,37.810957,401.5859619140625,1666460298.0],[-122.180536,37.811001,400.0322509765625,1666460300.0],[-122.180537,37.811034,399.999658203125,1666460301.0],[-122.180509,37.811131,404.0368896484375,1666460304.0],[-122.180434,37.811212,405.17373046875,1666460308.0],[-122.180415,37.811265,405.68447265625,1666460310.0],[-122.180406,37.811283,405.165673828125,1666460311.0],[-122.18039,37.81138,405.7687622070313,1666460315.0],[-122.180414,37.811515,408.3132568359375,1666460320.0],[-122.180413,37.811543,405.8169189453125,1666460321.0],[-122.180399,37.811596,405.4007202148438,1666460323.0],[-122.180352,37.811662,403.613916015625,1666460327.0],[-122.180336,37.811717,403.96962890625,1666460330.0],[-122.180333,37.811731,403.8550048828125,1666460331.0],[-122.180303,37.811775,403.7364135742188,1666460335.0],[-122.180236,37.811834,389.6076293945313,1666460339.0],[-122.18018,37.81187,394.6078125,1666460341.0],[-122.180152,37.811887,396.2206665039063,1666460342.0],[-122.180113,37.811927,399.91396484375,1666460344.0],[-122.180088,37.812034,401.34462890625,1666460349.0],[-122.180061,37.812067,401.9355712890625,1666460351.0],[-122.18005,37.812092,402.3339477539063,1666460352.0],[-122.180004,37.812271,388.2260986328125,1666460359.0],[-122.180018,37.812295,390.8044677734375,1666460361.0],[-122.180061,37.812313,393.6955200195313,1666460363.0],[-122.180091,37.812328,396.8830200195313,1666460364.0],[-122.180274,37.812434,406.7539916992188,1666460370.0],[-122.180352,37.812525,353.4897705078125,1666460373.0],[-122.180368,37.812548,359.1637817382813,1666460374.0],[-122.180541,37.812757,401.8046508789063,1666460383.0],[-122.180558,37.81278,403.2022338867188,1666460384.0],[-122.180691,37.812947,408.3598266601563,1666460393.0],[-122.180699,37.812955,410.3667846679688,1666460394.0],[-122.1807,37.813012,410.375390625,1666460397.0],[-122.180721,37.813072,410.398095703125,1666460401.0],[-122.180717,37.813121,408.2726684570313,1666460403.0],[-122.18071,37.813145,409.2021728515625,1666460404.0],[-122.180702,37.813231,410.991357421875,1666460408.0],[-122.180662,37.813292,412.11513671875,1666460411.0],[-122.180621,37.813321,413.6274658203125,1666460413.0],[-122.180609,37.813327,413.7382446289063,1666460414.0],[-122.180574,37.813357,414.367333984375,1666460417.0],[-122.180465,37.813397,417.2517333984375,1666460421.0],[-122.180435,37.813445,416.3086181640625,1666460424.0],[-122.180439,37.81346,416.3191772460938,1666460425.0],[-122.180477,37.813531,413.60439453125,1666460428.0],[-122.180562,37.813612,413.0268188476563,1666460430.0],[-122.180619,37.813652,411.908349609375,1666460432.0],[-122.180688,37.813646,413.4232421875,1666460435.0],[-122.180714,37.813639,413.6155029296875,1666460436.0],[-122.180797,37.813607,414.153466796875,1666460439.0],[-122.180912,37.813531,414.2079711914063,1666460445.0],[-122.180928,37.813514,413.487939453125,1666460446.0],[-122.180944,37.813485,411.5617309570313,1666460447.0],[-122.181107,37.813383,414.9482666015625,1666460452.0],[-122.181132,37.813358,413.1201416015625,1666460453.0],[-122.181161,37.813304,413.4853759765625,1666460455.0],[-122.181182,37.813278,412.55849609375,1666460456.0],[-122.181305,37.813191,409.6950927734375,1666460461.0],[-122.181341,37.813185,410.000634765625,1666460463.0],[-122.181404,37.813202,409.8322998046875,1666460465.0],[-122.181427,37.813212,411.8190551757813,1666460466.0],[-122.181517,37.813219,409.9327026367188,1666460469.0],[-122.181583,37.813198,411.6283203125,1666460471.0],[-122.181664,37.813149,409.5384155273438,1666460473.0],[-122.181769,37.813066,406.540673828125,1666460474.0],[-122.181908,37.813015,406.08388671875,1666460477.0],[-122.181924,37.812991,406.1601196289063,1666460478.0],[-122.181963,37.812946,406.4681640625,1666460479.0],[-122.182023,37.812982,410.338037109375,1666460482.0],[-122.182178,37.813031,410.0932861328125,1666460487.0],[-122.182211,37.813049,410.5736328125,1666460488.0],[-122.182252,37.813091,408.1487670898438,1666460490.0],[-122.182268,37.813123,408.8509765625,1666460492.0],[-122.182269,37.813159,408.0580078125,1666460494.0],[-122.182247,37.813203,412.7314697265625,1666460497.0],[-122.182241,37.813223,412.7660766601563,1666460498.0],[-122.182242,37.813278,385.97109375,1666460501.0],[-122.182264,37.813304,397.8060546875,1666460503.0],[-122.182383,37.813313,406.6518798828125,1666460506.0],[-122.182418,37.813325,407.9014526367188,1666460507.0],[-122.182455,37.813349,362.3988891601563,1666460508.0],[-122.182592,37.813493,409.7995849609375,1666460513.0],[-122.182719,37.813552,414.3176513671875,1666460517.0],[-122.182745,37.813568,413.4038330078125,1666460518.0],[-122.182763,37.813591,416.7238403320313,1666460521.0],[-122.182758,37.813707,417.7668701171875,1666460527.0],[-122.182767,37.813734,417.5688110351563,1666460528.0],[-122.182781,37.813752,418.720849609375,1666460529.0],[-122.182847,37.81382,418.3081909179688,1666460535.0],[-122.182905,37.813922,418.4406982421875,1666460539.0],[-122.182967,37.813975,417.7355590820313,1666460541.0],[-122.183021,37.814,418.34365234375,1666460542.0],[-122.183126,37.814039,379.2275024414063,1666460544.0],[-122.183281,37.814078,399.7114501953125,1666460547.0],[-122.183394,37.814139,413.4592529296875,1666460551.0],[-122.183429,37.814147,414.8308349609375,1666460552.0],[-122.18357,37.81414,414.184228515625,1666460555.0],[-122.183694,37.814118,415.673974609375,1666460558.0],[-122.183735,37.814125,415.9603515625,1666460560.0],[-122.183751,37.814138,415.4967895507813,1666460561.0],[-122.18377,37.814154,414.5737548828125,1666460562.0],[-122.183785,37.814168,416.7046142578125,1666460563.0],[-122.183795,37.814209,417.010888671875,1666460566.0],[-122.183809,37.814225,419.4287353515625,1666460568.0],[-122.183864,37.814238,417.2409912109375,1666460572.0],[-122.183896,37.814282,417.6704345703125,1666460575.0],[-122.183909,37.814295,419.1262451171875,1666460576.0],[-122.183929,37.814305,419.8520141601563,1666460577.0],[-122.183956,37.814301,419.14736328125,1666460578.0],[-122.184035,37.814262,418.504052734375,1666460581.0],[-122.184153,37.814259,419.9836669921875,1666460585.0],[-122.184172,37.814261,419.9900146484375,1666460586.0],[-122.184244,37.81427,420.247705078125,1666460591.0],[-122.184385,37.814252,420.2931762695313,1666460595.0],[-122.184421,37.814264,420.7635131835938,1666460598.0],[-122.184463,37.814282,419.6611572265625,1666460599.0],[-122.18455,37.814296,416.2597900390625,1666460601.0],[-122.184585,37.814293,416.1618896484375,1666460602.0],[-122.184618,37.814283,416.40224609375,1666460603.0],[-122.184731,37.814212,418.084619140625,1666460607.0],[-122.184771,37.81421,417.0049072265625,1666460608.0],[-122.184812,37.814209,417.089013671875,1666460609.0],[-122.184881,37.81421,418.8425537109375,1666460611.0],[-122.184972,37.814261,420.627587890625,1666460615.0],[-122.185017,37.814302,418.9475341796875,1666460618.0],[-122.185035,37.814317,417.3344360351563,1666460619.0],[-122.185082,37.814357,415.8200927734375,1666460621.0],[-122.18527,37.814476,415.93056640625,1666460628.0],[-122.185287,37.81449,417.8175903320313,1666460629.0],[-122.185393,37.814597,415.3908325195313,1666460634.0],[-122.185498,37.814659,420.61318359375,1666460638.0],[-122.185519,37.814676,422.3344970703125,1666460639.0],[-122.185622,37.814832,423.769677734375,1666460646.0],[-122.185668,37.814875,424.0664306640625,1666460648.0],[-122.185703,37.814903,423.4941040039063,1666460649.0],[-122.185871,37.81506,423.0810791015625,1666460654.0],[-122.185886,37.815094,423.7268310546875,1666460655.0],[-122.185833,37.815142,402.7224365234375,1666460659.0],[-122.185831,37.815171,406.50869140625,1666460660.0],[-122.185833,37.815201,409.7483764648438,1666460661.0],[-122.185904,37.815387,413.8991943359375,1666460669.0],[-122.185916,37.815401,413.4826904296875,1666460670.0],[-122.185929,37.815431,414.293359375,1666460672.0],[-122.185918,37.815467,391.2157836914063,1666460674.0],[-122.185843,37.815535,411.2661987304688,1666460679.0],[-122.185829,37.815547,411.82021484375,1666460680.0],[-122.185735,37.815616,414.1635986328125,1666460684.0],[-122.185701,37.815626,415.319482421875,1666460685.0],[-122.185582,37.815622,417.0232788085938,1666460689.0],[-122.185545,37.815615,417.65810546875,1666460690.0],[-122.185453,37.815598,420.2403198242188,1666460692.0],[-122.185188,37.815602,421.7380615234375,1666460699.0],[-122.185142,37.815593,423.0114990234375,1666460700.0],[-122.184988,37.815547,425.898583984375,1666460705.0],[-122.18489,37.81556,427.0492797851563,1666460709.0],[-122.184864,37.815566,426.9243408203125,1666460710.0],[-122.184713,37.815589,426.5148559570313,1666460717.0],[-122.184654,37.815582,424.594873046875,1666460720.0],[-122.184632,37.815585,424.0674072265625,1666460721.0],[-122.184541,37.815596,422.7607666015625,1666460725.0],[-122.184417,37.815572,420.7077270507813,1666460730.0],[-122.184389,37.815569,423.101220703125,1666460731.0],[-122.184225,37.815545,423.7943359375,1666460736.0],[-122.184089,37.815574,421.0828491210938,1666460740.0],[-122.184076,37.815577,424.94326171875,1666460741.0],[-122.183987,37.815617,423.717431640625,1666460746.0],[-122.183866,37.815697,423.0888916015625,1666460750.0],[-122.183832,37.815715,422.7226806640625,1666460751.0],[-122.183678,37.815782,423.3894287109375,1666460755.0],[-122.183626,37.815821,424.1128784179688,1666460758.0],[-122.183584,37.815832,422.2171875,1666460760.0],[-122.18356,37.815832,422.053125,1666460761.0],[-122.18337,37.815797,424.7705322265625,1666460770.0],[-122.183352,37.815796,425.802392578125,1666460771.0],[-122.183232,37.815749,432.8617797851563,1666460777.0],[-122.183083,37.815743,433.2181640625,1666460782.0],[-122.18306,37.815744,434.5462890625,1666460783.0],[-122.182956,37.815733,437.428369140625,1666460788.0],[-122.182884,37.815707,438.970849609375,1666460792.0],[-122.18286,37.815699,437.18642578125,1666460793.0],[-122.182806,37.815672,437.99111328125,1666460796.0],[-122.182704,37.815594,438.164453125,1666460802.0],[-122.182689,37.815581,438.2235961914063,1666460803.0],[-122.182569,37.815453,442.72158203125,1666460812.0],[-122.182554,37.81544,442.94423828125,1666460813.0],[-122.182314,37.815359,445.379052734375,1666460822.0],[-122.182292,37.815346,445.709130859375,1666460823.0],[-122.182257,37.815322,446.9411865234375,1666460825.0],[-122.182067,37.815256,439.7517333984375,1666460832.0],[-122.182045,37.815252,439.3044677734375,1666460833.0],[-122.181984,37.815263,438.4678588867188,1666460835.0],[-122.181952,37.81529,438.8041015625,1666460837.0],[-122.181886,37.815394,435.6127563476563,1666460841.0],[-122.181859,37.815414,437.805322265625,1666460843.0],[-122.181844,37.815422,437.9935546875,1666460844.0],[-122.181696,37.815494,430.660546875,1666460861.0],[-122.181696,37.815553,431.659814453125,1666460862.0],[-122.181715,37.815586,431.607568359375,1666460863.0],[-122.181723,37.815637,431.8847290039063,1666460864.0],[-122.181717,37.815666,433.8669677734375,1666460865.0],[-122.181696,37.815702,435.6093994140625,1666460866.0],[-122.181745,37.815759,433.6316162109375,1666460867.0],[-122.181778,37.815827,434.6167236328125,1666460868.0],[-122.181788,37.815888,434.662744140625,1666460869.0],[-122.181849,37.815937,433.8567138671875,1666460870.0],[-122.181879,37.81598,432.747705078125,1666460871.0],[-122.181878,37.816016,432.7539916992188,1666460872.0],[-122.181893,37.816014,432.309228515625,1666460873.0],[-122.181898,37.816042,432.3325439453125,1666460874.0],[-122.181908,37.816069,435.022607421875,1666460875.0],[-122.181899,37.8161,434.129541015625,1666460876.0],[-122.181905,37.816127,434.9112182617188,1666460877.0],[-122.181938,37.816168,433.8356567382813,1666460878.0],[-122.182022,37.816231,432.3557983398438,1666460879.0],[-122.181948,37.816301,431.3141723632813,1666460881.0],[-122.181954,37.816358,432.22353515625,1666460884.0],[-122.181921,37.816367,432.3236328125,1666460885.0],[-122.181885,37.816367,431.6660400390625,1666460886.0],[-122.181894,37.816396,432.8635498046875,1666460887.0],[-122.181866,37.816407,431.3216796875,1666460889.0],[-122.181848,37.816427,432.6386352539063,1666460892.0],[-122.181802,37.816441,431.1975341796875,1666460898.0],[-122.181793,37.816463,430.10732421875,1666460899.0],[-122.181807,37.816512,428.750390625,1666460901.0],[-122.181804,37.816521,430.454736328125,1666460902.0],[-122.181817,37.81655,427.053125,1666460908.0],[-122.181855,37.816571,424.962060546875,1666461115.0],[-122.181873,37.81655,424.02041015625,1666461116.0],[-122.181901,37.816486,425.1220947265625,1666461120.0],[-122.181914,37.816475,425.9564453125,1666461121.0],[-122.181982,37.81645,427.2351928710938,1666461123.0],[-122.182099,37.816445,427.4856811523438,1666461125.0],[-122.182141,37.816433,427.0149780273438,1666461126.0],[-122.182205,37.816372,425.396142578125,1666461127.0],[-122.182237,37.816375,426.5251708984375,1666461128.0],[-122.182283,37.816363,427.953759765625,1666461129.0],[-122.18231,37.816381,429.3808837890625,1666461130.0],[-122.182333,37.816364,430.052880859375,1666461131.0],[-122.182391,37.816351,430.8777099609375,1666461134.0],[-122.182472,37.816268,427.7278686523438,1666461137.0],[-122.182514,37.816253,427.4193969726563,1666461138.0],[-122.182657,37.816234,426.533837890625,1666461141.0],[-122.182699,37.816218,425.375390625,1666461142.0],[-122.182746,37.816222,427.275537109375,1666461143.0],[-122.18302,37.816314,421.44375,1666461151.0],[-122.183055,37.816336,418.7526489257813,1666461152.0],[-122.183081,37.816364,417.9653564453125,1666461153.0],[-122.183152,37.81645,417.4704833984375,1666461156.0],[-122.183236,37.816525,415.398828125,1666461158.0],[-122.183305,37.816625,415.805322265625,1666461161.0],[-122.183364,37.816654,414.02138671875,1666461162.0],[-122.183415,37.816678,414.8440185546875,1666461163.0],[-122.183702,37.81676,412.8864990234375,1666461167.0],[-122.183736,37.816788,412.8321166992188,1666461168.0],[-122.183861,37.816838,411.6884399414063,1666461172.0],[-122.183927,37.816869,410.354638671875,1666461173.0],[-122.184007,37.8169,410.5627685546875,1666461175.0],[-122.184107,37.816964,409.0,1666461177.0],[-122.18422,37.816978,411.9983154296875,1666461180.0],[-122.184317,37.817004,410.024072265625,1666461182.0],[-122.184393,37.81703,407.4175659179688,1666461183.0],[-122.184564,37.817131,407.9583984375,1666461187.0],[-122.184608,37.817177,406.5008178710938,1666461189.0],[-122.184712,37.817241,405.8999877929688,1666461192.0],[-122.184826,37.817262,406.2179809570313,1666461193.0],[-122.184911,37.817265,415.86513671875,1666461194.0],[-122.185123,37.817223,410.814111328125,1666461197.0],[-122.185321,37.817248,408.34658203125,1666461199.0],[-122.185403,37.817243,407.4880615234375,1666461200.0],[-122.185459,37.81726,406.4097534179688,1666461201.0],[-122.185545,37.817192,404.86953125,1666461202.0],[-122.18563,37.817187,404.8259521484375,1666461203.0],[-122.185687,37.817181,404.1496215820313,1666461204.0],[-122.185742,37.817176,403.898095703125,1666461205.0],[-122.185847,37.817141,405.6770263671875,1666461207.0],[-122.185905,37.817137,404.2437377929688,1666461208.0],[-122.186051,37.817162,400.0464721679688,1666461209.0],[-122.186187,37.817113,388.270654296875,1666461211.0],[-122.186241,37.817123,385.9899536132813,1666461212.0],[-122.186274,37.817112,384.0452514648438,1666461213.0],[-122.186297,37.817108,383.5315795898438,1666461214.0],[-122.186379,37.817062,382.11171875,1666461215.0],[-122.186426,37.817015,382.4216552734375,1666461216.0],[-122.186527,37.817019,375.272119140625,1666461218.0],[-122.186542,37.816989,374.77919921875,1666461219.0],[-122.18656,37.816992,373.2646728515625,1666461220.0],[-122.186575,37.817014,374.205712890625,1666461221.0],[-122.186606,37.817027,369.3080078125,1666461251.0],[-122.18661,37.817033,368.8781982421875,1666461252.0],[-122.186608,37.817026,367.9739013671875,1666461253.0],[-122.18664,37.817023,366.5410400390625,1666461275.0],[-122.186657,37.81704,369.814599609375,1666461276.0],[-122.186877,37.817048,370.46474609375,1666461282.0],[-122.186946,37.817055,370.6892944335938,1666461283.0],[-122.186982,37.81709,372.1563354492188,1666461284.0],[-122.187034,37.81706,370.4961181640625,1666461285.0],[-122.187084,37.817057,370.26015625,1666461286.0],[-122.187161,37.817016,369.34755859375,1666461287.0],[-122.187326,37.817025,368.8887573242188,1666461289.0],[-122.187422,37.817019,368.8462768554688,1666461290.0],[-122.18763,37.817054,366.7097412109375,1666461292.0],[-122.187689,37.817072,366.9292236328125,1666461293.0],[-122.187943,37.816962,356.9724365234375,1666461296.0],[-122.188033,37.816936,355.430078125,1666461297.0],[-122.188108,37.816886,353.6318603515625,1666461298.0],[-122.188165,37.816879,352.4616943359375,1666461299.0],[-122.188202,37.816837,350.12880859375,1666461300.0],[-122.188243,37.816836,349.4170166015625,1666461301.0],[-122.188275,37.816873,349.9427734375,1666461302.0],[-122.188326,37.816828,350.0274291992188,1666461303.0],[-122.188429,37.816769,346.6577392578125,1666461305.0],[-122.188503,37.816707,346.056787109375,1666461307.0],[-122.188522,37.816675,346.42470703125,1666461308.0],[-122.188509,37.816648,346.1602416992188,1666461309.0],[-122.188524,37.816551,344.0424438476563,1666461313.0],[-122.188531,37.816531,344.451806640625,1666461314.0],[-122.188618,37.816354,343.2843872070313,1666461318.0],[-122.188747,37.816227,343.1257568359375,1666461321.0],[-122.188823,37.816209,341.2105346679688,1666461322.0],[-122.188831,37.816141,341.1663452148438,1666461323.0],[-122.188867,37.816104,341.8427978515625,1666461324.0],[-122.188895,37.816069,341.8430419921875,1666461325.0],[-122.188932,37.816076,338.636376953125,1666461326.0],[-122.188946,37.816022,332.3796630859375,1666461327.0],[-122.188978,37.816028,330.6529174804688,1666461330.0],[-122.189018,37.816055,329.1831298828125,1666461355.0],[-122.189027,37.816048,328.377099609375,1666461386.0],[-122.189058,37.816052,327.9943481445313,1666461388.0],[-122.18906,37.816018,327.9970947265625,1666461390.0],[-122.189066,37.816012,328.3098999023438,1666461391.0],[-122.18913,37.815973,328.1408935546875,1666461395.0],[-122.189211,37.8159,329.235986328125,1666461398.0],[-122.189323,37.815864,329.2061401367188,1666461400.0],[-122.189339,37.815852,329.9302001953125,1666461401.0],[-122.18936,37.815821,330.08291015625,1666461402.0],[-122.189381,37.815806,331.4006591796875,1666461404.0],[-122.189457,37.815825,329.477197265625,1666461406.0],[-122.189483,37.815814,329.0217529296875,1666461407.0],[-122.189507,37.815777,328.9477783203125,1666461408.0],[-122.189588,37.815765,328.6572509765625,1666461411.0],[-122.189604,37.815756,329.32119140625,1666461412.0],[-122.189687,37.815681,326.14541015625,1666461416.0],[-122.189707,37.815602,326.8008056640625,1666461420.0],[-122.189727,37.81557,326.6223388671875,1666461421.0],[-122.18975,37.815545,326.5403076171875,1666461422.0],[-122.1898,37.815484,326.3537841796875,1666461424.0],[-122.18985,37.81538,328.9826904296875,1666461427.0],[-122.189943,37.8153,329.9026123046875,1666461431.0],[-122.189969,37.815277,330.337060546875,1666461432.0],[-122.190038,37.81523,329.714501953125,1666461435.0],[-122.190104,37.815228,328.848291015625,1666461438.0],[-122.190141,37.815194,327.4431396484375,1666461439.0],[-122.190252,37.815037,323.8353515625,1666461442.0],[-122.190294,37.814993,324.943505859375,1666461443.0],[-122.190388,37.814926,322.5852294921875,1666461445.0],[-122.190491,37.814897,321.199365234375,1666461447.0],[-122.190608,37.81484,321.0564208984375,1666461449.0],[-122.19064,37.814763,317.1108642578125,1666461450.0],[-122.190728,37.814722,315.6009765625,1666461452.0],[-122.190773,37.81469,314.832421875,1666461453.0],[-122.190831,37.814662,313.9209838867188,1666461454.0],[-122.190869,37.814654,313.1595703125,1666461455.0],[-122.191132,37.814677,316.0520263671875,1666461463.0],[-122.191164,37.814683,315.51064453125,1666461464.0],[-122.191251,37.814697,318.2671752929688,1666461467.0],[-122.191285,37.814692,317.02333984375,1666461468.0],[-122.191473,37.814629,318.850244140625,1666461473.0],[-122.19151,37.814617,317.2968994140625,1666461474.0],[-122.191635,37.814591,316.5757080078125,1666461477.0],[-122.191682,37.814598,316.6400390625,1666461480.0],[-122.191704,37.814617,314.2218872070313,1666461482.0],[-122.191723,37.814612,314.51748046875,1666461483.0],[-122.191731,37.814585,312.5677124023438,1666461484.0],[-122.191723,37.81455,310.8616577148438,1666461485.0],[-122.191708,37.814518,310.7227416992188,1666461486.0],[-122.191671,37.814466,308.6133666992188,1666461488.0],[-122.191626,37.814425,310.4541259765625,1666461490.0],[-122.191528,37.814385,312.0925537109375,1666461495.0],[-122.191521,37.814386,310.9621826171875,1666461497.0],[-122.19153,37.814393,310.0939575195313,1666461498.0],[-122.191589,37.814381,310.398828125,1666461514.0],[-122.191588,37.814341,309.55849609375,1666461516.0],[-122.191446,37.814331,307.7060791015625,1666461518.0],[-122.191423,37.81432,309.086572265625,1666461519.0],[-122.191377,37.814328,308.9707885742188,1666461520.0],[-122.191341,37.814337,309.367578125,1666461521.0],[-122.191302,37.814332,307.337548828125,1666461522.0],[-122.191231,37.814343,308.122216796875,1666461523.0],[-122.191174,37.814367,308.7583251953125,1666461524.0],[-122.19111,37.814356,310.0600219726563,1666461525.0],[-122.191046,37.814314,310.90908203125,1666461526.0],[-122.190879,37.814243,313.9602294921875,1666461530.0],[-122.19086,37.814247,314.3683715820313,1666461531.0],[-122.190834,37.814241,315.5252319335938,1666461533.0],[-122.190808,37.81427,312.0418334960938,1666461534.0],[-122.190774,37.81434,305.1242919921875,1666461541.0],[-122.190726,37.814377,301.304833984375,1666461551.0],[-122.190719,37.81438,300.45595703125,1666461552.0],[-122.190706,37.814403,297.78408203125,1666461640.0],[-122.190718,37.814413,297.393212890625,1666461641.0],[-122.190764,37.814432,293.2343994140625,1666461644.0],[-122.190778,37.814456,290.2636352539063,1666461651.0],[-122.190811,37.814455,291.1588989257813,1666461695.0],[-122.19084,37.81447,290.195458984375,1666461701.0],[-122.190841,37.814471,290.0136962890625,1666461702.0],[-122.190783,37.814484,291.94326171875,1666461858.0],[-122.19077,37.814497,294.9843994140625,1666462108.0],[-122.190769,37.81452,294.1802001953125,1666462110.0],[-122.190802,37.814572,297.1762939453125,1666462229.0],[-122.190908,37.81484,297.2802978515625,1666462231.0],[-122.190951,37.814938,300.18837890625,1666462232.0],[-122.19093,37.814916,302.9719482421875,1666462233.0],[-122.190958,37.814849,307.8902221679688,1666462234.0],[-122.190973,37.814768,310.9592529296875,1666462235.0],[-122.19094,37.814714,314.0520263671875,1666462236.0],[-122.190814,37.814655,311.5454345703125,1666462239.0],[-122.190763,37.814577,308.5276733398438,1666462240.0],[-122.190765,37.814547,307.230615234375,1666462243.0],[-122.190764,37.814541,306.7373901367188,1666462244.0],[-122.190782,37.814513,308.1064086914063,1666462255.0],[-122.190765,37.81449,306.718408203125,1666462260.0],[-122.190735,37.814494,305.8486572265625,1666462492.0],[-122.190628,37.814557,299.2641235351563,1666462497.0],[-122.190603,37.814566,299.102197265625,1666462498.0],[-122.190397,37.814634,300.414697265625,1666462507.0],[-122.190392,37.814633,300.741845703125,1666462508.0],[-122.190352,37.81464,300.2192626953125,1666462510.0],[-122.190218,37.814617,303.0945678710938,1666462515.0],[-122.190143,37.814636,302.43642578125,1666462518.0],[-122.190106,37.814651,302.7076049804688,1666462519.0],[-122.19006,37.814674,302.2175537109375,1666462520.0],[-122.189854,37.814852,300.711572265625,1666462523.0],[-122.189814,37.81492,298.9983154296875,1666462524.0],[-122.18976,37.81497,297.977685546875,1666462525.0],[-122.189695,37.81501,297.8139892578125,1666462526.0],[-122.189626,37.815037,297.3579345703125,1666462527.0],[-122.189529,37.815057,296.93056640625,1666462528.0],[-122.18948,37.81506,296.5849853515625,1666462529.0],[-122.189366,37.815055,298.7651611328125,1666462531.0],[-122.18932,37.815034,299.1557861328125,1666462532.0],[-122.189367,37.815014,300.611474609375,1666462533.0],[-122.189371,37.815,301.26796875,1666462534.0],[-122.189431,37.814953,302.191064453125,1666462536.0],[-122.18946,37.8149,304.2295166015625,1666462538.0],[-122.189477,37.814886,304.6186767578125,1666462539.0],[-122.189492,37.814843,306.0950561523438,1666462540.0],[-122.189507,37.814634,310.3926635742188,1666462548.0],[-122.189507,37.81461,311.6418090820313,1666462549.0],[-122.189503,37.814587,313.2080322265625,1666462550.0],[-122.189468,37.814538,312.211083984375,1666462552.0],[-122.189336,37.814442,313.573876953125,1666462558.0],[-122.189313,37.814427,312.1770263671875,1666462559.0],[-122.189205,37.814356,313.291650390625,1666462563.0],[-122.189091,37.814266,317.657861328125,1666462568.0],[-122.189075,37.814248,318.8754516601563,1666462569.0],[-122.188967,37.814228,317.1423583984375,1666462573.0],[-122.188783,37.814168,313.07412109375,1666462579.0],[-122.188737,37.814159,312.07021484375,1666462580.0],[-122.188626,37.814129,305.1354614257813,1666462583.0],[-122.188479,37.814045,302.2264038085938,1666462587.0],[-122.188395,37.814026,303.9739624023438,1666462589.0],[-122.18836,37.814023,304.3805786132813,1666462590.0],[-122.188294,37.814018,305.3212524414063,1666462592.0],[-122.188127,37.814034,305.7669921875,1666462596.0],[-122.188055,37.814016,305.3762451171875,1666462598.0],[-122.188035,37.813995,306.2326904296875,1666462599.0],[-122.188023,37.813969,306.9110961914063,1666462600.0],[-122.187981,37.81385,310.199365234375,1666462607.0],[-122.187877,37.813792,304.109033203125,1666462610.0],[-122.187839,37.813776,304.59609375,1666462611.0],[-122.187732,37.81374,304.5085693359375,1666462614.0],[-122.187475,37.813617,305.9030395507813,1666462620.0],[-122.187434,37.8136,309.526513671875,1666462621.0],[-122.18711,37.813391,312.0757080078125,1666462630.0],[-122.187088,37.813373,310.82314453125,1666462631.0],[-122.187036,37.813293,314.2629638671875,1666462634.0],[-122.186914,37.813142,312.42568359375,1666462641.0],[-122.186886,37.813111,312.8093505859375,1666462642.0],[-122.186731,37.812983,313.1064086914063,1666462647.0],[-122.186659,37.812953,311.8662353515625,1666462649.0],[-122.186565,37.812928,308.81826171875,1666462651.0],[-122.186474,37.812929,308.5898681640625,1666462652.0],[-122.186449,37.812913,309.22451171875,1666462653.0],[-122.186355,37.812892,309.1260009765625,1666462655.0],[-122.186268,37.812833,312.27431640625,1666462659.0],[-122.186167,37.812792,310.7553955078125,1666462661.0],[-122.186121,37.812758,310.9475341796875,1666462662.0],[-122.1861,37.812717,310.2510620117188,1666462663.0],[-122.185965,37.812585,313.3708740234375,1666462668.0],[-122.185943,37.812572,313.4865966796875,1666462669.0],[-122.185873,37.812573,315.1079345703125,1666462670.0],[-122.185828,37.812554,317.7983642578125,1666462671.0],[-122.185781,37.812542,317.3108154296875,1666462672.0],[-122.185711,37.812509,318.28017578125,1666462674.0],[-122.185692,37.812515,318.513818359375,1666462675.0],[-122.185612,37.812494,317.4712158203125,1666462676.0],[-122.185518,37.812386,312.895654296875,1666462681.0],[-122.185478,37.812363,312.0853515625,1666462682.0],[-122.185442,37.812341,312.5801025390625,1666462683.0],[-122.185359,37.81233,311.446923828125,1666462685.0],[-122.185198,37.812285,310.341943359375,1666462691.0],[-122.185172,37.812272,310.734521484375,1666462692.0],[-122.185105,37.812235,310.0657592773438,1666462695.0],[-122.185035,37.812103,315.459130859375,1666462702.0],[-122.18502,37.812087,316.3757568359375,1666462703.0],[-122.18498,37.812059,317.7744995117188,1666462705.0],[-122.184887,37.812028,318.8329711914063,1666462708.0],[-122.18486,37.811994,319.3892456054688,1666462710.0],[-122.184846,37.811951,321.900537109375,1666462712.0],[-122.184844,37.811932,323.0874877929688,1666462713.0],[-122.184832,37.811861,327.47060546875,1666462716.0],[-122.184804,37.811818,327.2678466796875,1666462718.0],[-122.184774,37.811806,326.3903442382813,1666462719.0],[-122.18467,37.811801,320.6594482421875,1666462722.0],[-122.184642,37.811797,320.37685546875,1666462723.0],[-122.184549,37.81178,316.7490478515625,1666462727.0],[-122.184481,37.811713,316.391015625,1666462732.0],[-122.184466,37.8117,315.5537353515625,1666462733.0],[-122.184325,37.811598,313.0849853515625,1666462739.0],[-122.184296,37.811547,315.171044921875,1666462742.0],[-122.184279,37.811532,314.8620239257813,1666462743.0],[-122.184071,37.811354,315.8354125976563,1666462755.0],[-122.183988,37.811313,315.62490234375,1666462757.0],[-122.183758,37.811193,312.0208984375,1666462763.0],[-122.183702,37.81114,313.6949096679688,1666462765.0],[-122.183667,37.811084,313.7717529296875,1666462767.0],[-122.183643,37.811059,314.0080200195313,1666462768.0],[-122.183609,37.81101,313.2112060546875,1666462770.0],[-122.183578,37.810932,315.21181640625,1666462773.0],[-122.183504,37.810834,319.3343139648438,1666462777.0],[-122.183481,37.81081,320.2541748046875,1666462778.0],[-122.183364,37.810659,326.1892333984375,1666462784.0],[-122.183289,37.810603,329.3595825195313,1666462787.0],[-122.183257,37.81059,328.8587280273438,1666462788.0],[-122.183198,37.81056,327.8515869140625,1666462790.0],[-122.18315,37.810475,330.0047241210938,1666462793.0],[-122.183078,37.810385,331.5259033203125,1666462797.0],[-122.183059,37.81036,331.4076171875,1666462798.0],[-122.182977,37.810239,328.8843627929688,1666462803.0],[-122.182891,37.810173,329.8448120117188,1666462807.0],[-122.182867,37.810156,332.611962890625,1666462808.0],[-122.182663,37.809976,334.766015625,1666462818.0],[-122.182641,37.80996,335.2236572265625,1666462819.0],[-122.182532,37.809919,333.07802734375,1666462824.0],[-122.182406,37.809912,332.7173095703125,1666462828.0],[-122.182373,37.809915,331.4167114257813,1666462829.0],[-122.182324,37.809907,332.6367431640625,1666462831.0],[-122.182281,37.809872,334.105126953125,1666462834.0],[-122.18217,37.809872,329.0686889648438,1666462838.0],[-122.182138,37.809867,329.6516357421875,1666462839.0],[-122.18193,37.809845,329.7337890625,1666462846.0],[-122.181876,37.809824,330.139306640625,1666462848.0],[-122.181853,37.80981,330.6091552734375,1666462849.0],[-122.18181,37.80981,329.0810180664063,1666462851.0],[-122.181753,37.809846,329.9954467773438,1666462854.0],[-122.181754,37.809863,331.0544677734375,1666462855.0],[-122.181787,37.809882,330.121728515625,1666462856.0],[-122.181886,37.809901,329.3047729492188,1666462858.0],[-122.181934,37.809908,378.2759033203125,1666462859.0],[-122.18197,37.809909,366.9226318359375,1666462860.0],[-122.181994,37.809897,358.1299072265625,1666462861.0],[-122.182004,37.809868,353.7253662109375,1666462862.0],[-122.181937,37.809714,341.2239624023438,1666462868.0],[-122.181917,37.80968,340.31533203125,1666462869.0],[-122.181887,37.809645,339.281640625,1666462870.0],[-122.18182,37.809594,338.7175537109375,1666462872.0],[-122.181631,37.809499,335.309228515625,1666462877.0],[-122.181584,37.809463,334.4255615234375,1666462879.0],[-122.18157,37.809446,334.77529296875,1666462880.0],[-122.181489,37.809376,332.627099609375,1666462884.0],[-122.181417,37.80935,334.3801513671875,1666462887.0],[-122.181385,37.809326,334.5548950195313,1666462889.0],[-122.181371,37.809315,335.2262817382813,1666462890.0],[-122.181327,37.809291,337.0779052734375,1666462893.0],[-122.181253,37.809231,338.0151000976563,1666462897.0],[-122.181197,37.809203,338.2634521484375,1666462900.0],[-122.181183,37.809194,338.869775390625,1666462901.0],[-122.181151,37.809166,337.15712890625,1666462903.0],[-122.181115,37.809155,337.2513061523438,1666462905.0],[-122.18106,37.809145,337.1162963867188,1666462907.0],[-122.180984,37.809153,311.2220703125,1666462910.0],[-122.180943,37.809161,314.5744873046875,1666462911.0],[-122.180813,37.809181,327.431787109375,1666462916.0],[-122.180716,37.809169,336.996728515625,1666462921.0],[-122.180693,37.809165,338.6858154296875,1666462922.0],[-122.180503,37.809157,342.353662109375,1666462932.0],[-122.180485,37.809158,342.6664672851563,1666462933.0],[-122.180399,37.809135,345.243798828125,1666462938.0],[-122.180376,37.809137,345.8554931640625,1666462939.0],[-122.180312,37.809167,347.7161499023438,1666462944.0],[-122.18029,37.809163,348.7710205078125,1666462945.0],[-122.180262,37.809153,349.153466796875,1666462946.0],[-122.180101,37.809116,349.4568115234375,1666462952.0],[-122.180051,37.809089,350.12587890625,1666462955.0],[-122.180029,37.809075,350.1280151367188,1666462956.0],[-122.179965,37.809043,350.820947265625,1666462959.0],[-122.179918,37.809036,349.823388671875,1666462961.0],[-122.179878,37.809048,353.6299682617188,1666462964.0],[-122.179833,37.809041,353.9675537109375,1666462966.0],[-122.179814,37.80904,355.01650390625,1666462967.0],[-122.17976,37.80903,355.26650390625,1666462971.0],[-122.179589,37.809038,354.109765625,1666462977.0],[-122.179517,37.80902,352.1052490234375,1666462980.0],[-122.179476,37.80898,349.6125732421875,1666462982.0],[-122.179456,37.808964,349.0293212890625,1666462983.0],[-122.179421,37.808931,349.4370361328125,1666462985.0],[-122.179371,37.80891,350.800439453125,1666462988.0],[-122.179339,37.808875,351.368310546875,1666462991.0],[-122.179277,37.808836,352.2632080078125,1666462997.0],[-122.179269,37.80883,352.386376953125,1666462998.0],[-122.179242,37.808833,352.7856079101563,1666462999.0],[-122.179152,37.808806,353.389794921875,1666463002.0],[-122.179038,37.808698,354.767236328125,1666463007.0],[-122.17902,37.808657,357.570947265625,1666463009.0],[-122.179006,37.80864,357.2151123046875,1666463010.0],[-122.178966,37.80861,357.9070678710938,1666463012.0],[-122.178933,37.808606,358.700341796875,1666463013.0],[-122.178622,37.808621,339.8630615234375,1666463019.0],[-122.178586,37.808618,340.2658325195313,1666463020.0],[-122.178507,37.808614,343.1798950195313,1666463023.0],[-122.178478,37.808604,343.9013916015625,1666463025.0],[-122.17842,37.808552,350.171044921875,1666463034.0],[-122.178387,37.80854,350.2715087890625,1666463039.0],[-122.178386,37.808538,350.4056030273438,1666463040.0],[-122.178383,37.808516,352.609765625,1666463052.0],[-122.178346,37.808507,359.1745849609375,1666463054.0],[-122.178272,37.808536,360.963037109375,1666463062.0],[-122.178203,37.808545,363.9753662109375,1666463064.0],[-122.178171,37.808549,365.5332275390625,1666463065.0],[-122.178015,37.808579,370.2353759765625,1666463071.0],[-122.177942,37.808604,368.890771484375,1666463074.0],[-122.177919,37.808616,368.5864501953125,1666463075.0],[-122.177842,37.808664,366.6528564453125,1666463079.0],[-122.177831,37.808698,366.2102905273438,1666463097.0],[-122.17803,37.808742,366.92470703125,1666463101.0],[-122.178082,37.808755,365.7683959960938,1666463102.0],[-122.178183,37.808788,366.3125244140625,1666463104.0],[-122.178309,37.80887,374.2077270507813,1666463111.0],[-122.178324,37.80888,375.275048828125,1666463112.0],[-122.178345,37.808918,375.0338989257813,1666463115.0],[-122.178383,37.808954,376.0991455078125,1666463118.0],[-122.178512,37.809012,379.9929443359375,1666463122.0],[-122.178533,37.809024,379.402490234375,1666463123.0],[-122.178612,37.809072,375.9629150390625,1666463127.0],[-122.178673,37.809091,377.1191040039063,1666463131.0],[-122.178735,37.809126,379.2345825195313,1666463134.0],[-122.178756,37.809146,376.3706298828125,1666463135.0],[-122.178822,37.809241,375.690087890625,1666463140.0],[-122.178836,37.809313,377.2380615234375,1666463145.0],[-122.178828,37.809319,378.8925415039063,1666463146.0],[-122.178819,37.809315,378.902001953125,1666463147.0],[-122.178826,37.809298,376.8611083984375,1666463149.0],[-122.178855,37.80927,376.1968017578125,1666463151.0],[-122.178883,37.809262,375.5616088867188,1666463153.0],[-122.178881,37.809249,376.0825439453125,1666463155.0],[-122.178813,37.809204,334.4416748046875,1666463158.0],[-122.178796,37.809194,343.1533447265625,1666463159.0],[-122.178671,37.809049,390.3724609375,1666463172.0],[-122.178657,37.809041,390.7732177734375,1666463173.0],[-122.178491,37.808924,399.277001953125,1666463185.0],[-122.178473,37.808922,401.098779296875,1666463186.0],[-122.178322,37.808915,399.7153564453125,1666463194.0],[-122.178293,37.808931,396.7732177734375,1666463196.0],[-122.178284,37.80894,395.31923828125,1666463197.0],[-122.178261,37.808955,395.622216796875,1666463200.0],[-122.178234,37.808991,394.5880981445313,1666463204.0],[-122.178108,37.809019,395.107080078125,1666463283.0],[-122.178095,37.809019,394.7944580078125,1666463284.0],[-122.178084,37.809024,392.4006591796875,1666463285.0],[-122.178083,37.809056,393.6758056640625,1666463287.0],[-122.178119,37.809092,394.97548828125,1666463290.0],[-122.178176,37.809118,396.4680419921875,1666463294.0],[-122.178202,37.809125,395.9636474609375,1666463295.0],[-122.178305,37.809206,395.73232421875,1666463301.0],[-122.178376,37.809237,395.54873046875,1666463305.0],[-122.178399,37.809246,393.8577514648438,1666463306.0],[-122.178425,37.809266,394.2448974609375,1666463307.0],[-122.178459,37.809346,391.2165161132813,1666463312.0],[-122.178425,37.809398,394.5808349609375,1666463315.0],[-122.178411,37.80942,395.0493408203125,1666463316.0],[-122.17838,37.809466,396.09609375,1666463318.0],[-122.178266,37.809588,398.51259765625,1666463326.0],[-122.178252,37.809599,399.006494140625,1666463327.0],[-122.178129,37.809725,402.07802734375,1666463334.0],[-122.178075,37.809761,400.9218994140625,1666463336.0],[-122.178049,37.809776,401.80166015625,1666463337.0],[-122.177983,37.809826,399.889306640625,1666463339.0],[-122.177854,37.809958,401.641259765625,1666463346.0],[-122.177831,37.809975,401.2815185546875,1666463347.0],[-122.177701,37.810079,403.05947265625,1666463353.0],[-122.177638,37.810176,402.9236083984375,1666463357.0],[-122.177618,37.810192,402.9292236328125,1666463358.0],[-122.177506,37.810271,402.74697265625,1666463362.0],[-122.177521,37.810369,405.3313232421875,1666463366.0],[-122.177513,37.810391,405.120263671875,1666463367.0],[-122.177483,37.810424,404.3069702148438,1666463368.0],[-122.177414,37.810565,403.5852294921875,1666463371.0],[-122.1773,37.810657,401.6279541015625,1666463374.0],[-122.177302,37.810672,400.5038696289063,1666463375.0],[-122.177444,37.810753,398.3080078125,1666463378.0],[-122.177557,37.810742,397.0288330078125,1666463380.0],[-122.177591,37.810727,397.2920166015625,1666463381.0],[-122.177847,37.810675,351.4344116210938,1666463390.0],[-122.177863,37.810674,361.864404296875,1666463391.0],[-122.178025,37.810659,377.20498046875,1666463395.0],[-122.178119,37.810621,386.84462890625,1666463399.0],[-122.178153,37.810617,388.5052734375,1666463400.0],[-122.178198,37.810613,389.7533203125,1666463401.0],[-122.178315,37.81061,391.8515869140625,1666463405.0],[-122.178503,37.810553,393.2401977539063,1666463410.0],[-122.178545,37.81055,393.55361328125,1666463411.0],[-122.178979,37.810499,394.1823974609375,1666463421.0],[-122.179025,37.810501,394.6977783203125,1666463422.0],[-122.179131,37.810507,393.2951293945313,1666463424.0],[-122.179248,37.810546,395.1720825195313,1666463427.0],[-122.179273,37.810558,394.6869140625,1666463428.0],[-122.179274,37.810573,394.36171875,1666463429.0],[-122.179248,37.810605,396.797021484375,1666463431.0],[-122.179238,37.81062,395.9594360351563,1666463432.0],[-122.179119,37.810783,398.7528930664063,1666463439.0],[-122.179064,37.810799,399.5984130859375,1666463441.0],[-122.179029,37.810807,400.380029296875,1666463442.0],[-122.178961,37.810849,400.4662109375,1666463445.0],[-122.178924,37.8109,399.992578125,1666463447.0],[-122.178897,37.810976,401.5547119140625,1666463450.0],[-122.178898,37.811009,400.3024536132813,1666463451.0],[-122.178911,37.811033,399.6892333984375,1666463452.0],[-122.178962,37.811058,400.013330078125,1666463455.0],[-122.179001,37.811111,400.2976318359375,1666463459.0],[-122.179025,37.811168,401.2217041015625,1666463461.0],[-122.179032,37.811228,401.2512451171875,1666463463.0],[-122.179029,37.811257,401.722802734375,1666463464.0],[-122.179026,37.811282,402.666162109375,1666463465.0],[-122.178983,37.811383,404.0200439453125,1666463469.0],[-122.178976,37.811519,405.4115234375,1666463473.0],[-122.178971,37.811552,405.6908203125,1666463474.0],[-122.178946,37.811658,404.8178955078125,1666463478.0],[-122.178991,37.811685,404.2472778320313,1666463480.0],[-122.179049,37.811687,404.4548583984375,1666463482.0],[-122.17912,37.811673,404.3060546875,1666463484.0],[-122.17926,37.811618,403.3429809570313,1666463488.0],[-122.179299,37.811606,398.3681274414063,1666463489.0],[-122.179418,37.811578,399.3410888671875,1666463492.0],[-122.17951,37.811535,396.738671875,1666463495.0],[-122.179593,37.811482,395.6958251953125,1666463498.0],[-122.179614,37.811458,395.96083984375,1666463499.0],[-122.17966,37.811393,395.7636962890625,1666463501.0],[-122.179684,37.811376,396.1814208984375,1666463502.0],[-122.179924,37.811297,395.5067993164063,1666463508.0],[-122.179964,37.811277,394.8905883789063,1666463509.0],[-122.180182,37.811164,395.578271484375,1666463514.0],[-122.18034,37.811065,399.1509643554688,1666463518.0],[-122.180379,37.811045,396.5517822265625,1666463519.0],[-122.180481,37.811026,394.0738159179688,1666463522.0],[-122.180536,37.811045,391.9448486328125,1666463524.0],[-122.180542,37.811107,388.67421875,1666463526.0],[-122.180519,37.811155,389.805078125,1666463528.0],[-122.180509,37.811175,389.9452758789063,1666463529.0],[-122.180475,37.811223,348.4458251953125,1666463531.0],[-122.180453,37.811287,361.2519775390625,1666463533.0],[-122.180468,37.811367,368.4822021484375,1666463535.0],[-122.180465,37.811395,375.1611572265625,1666463537.0],[-122.180443,37.81144,383.039453125,1666463539.0],[-122.180441,37.811474,386.0544677734375,1666463540.0],[-122.18049,37.811656,391.1123291015625,1666463545.0],[-122.180465,37.811689,391.9484497070313,1666463548.0],[-122.180426,37.81171,390.893212890625,1666463550.0],[-122.180406,37.811725,391.7232299804688,1666463551.0],[-122.180242,37.811841,391.7842041015625,1666463561.0],[-122.180227,37.811845,392.6802612304688,1666463562.0],[-122.180188,37.811876,395.95009765625,1666463564.0],[-122.180139,37.811973,364.3635498046875,1666463568.0],[-122.180115,37.812053,384.8828369140625,1666463571.0],[-122.180106,37.812081,387.5037475585938,1666463572.0],[-122.180068,37.812156,397.8720947265625,1666463576.0],[-122.180074,37.812276,400.8286376953125,1666463581.0],[-122.180075,37.812389,400.4999633789063,1666463585.0],[-122.180092,37.812464,400.50869140625,1666463587.0],[-122.180334,37.812615,403.0699096679688,1666463594.0],[-122.18048,37.812637,403.8601318359375,1666463599.0],[-122.18058,37.812708,406.271142578125,1666463604.0],[-122.180593,37.812737,355.40078125,1666463605.0],[-122.180622,37.812801,375.935693359375,1666463607.0],[-122.180688,37.812866,390.85244140625,1666463610.0],[-122.18072,37.812924,389.6784912109375,1666463613.0],[-122.180744,37.812937,390.05556640625,1666463614.0],[-122.180766,37.81294,392.8169189453125,1666463615.0],[-122.180802,37.812958,396.733056640625,1666463617.0],[-122.180809,37.812975,397.708642578125,1666463618.0],[-122.180778,37.813053,399.0537963867188,1666463621.0],[-122.180791,37.813103,400.2630859375,1666463624.0],[-122.180793,37.813119,401.288720703125,1666463625.0],[-122.180781,37.813161,401.0645385742188,1666463627.0],[-122.18071,37.813274,402.3161865234375,1666463632.0],[-122.180666,37.813311,402.6369873046875,1666463634.0],[-122.180638,37.81332,402.516748046875,1666463635.0],[-122.180608,37.813325,402.0766845703125,1666463636.0],[-122.180577,37.813344,401.8279052734375,1666463637.0],[-122.180552,37.813373,402.7546020507813,1666463638.0],[-122.180546,37.813399,402.147607421875,1666463639.0],[-122.180552,37.813455,401.1323486328125,1666463642.0],[-122.180508,37.813525,398.6535888671875,1666463644.0],[-122.180486,37.813554,397.595361328125,1666463645.0],[-122.180414,37.813635,396.2046142578125,1666463648.0],[-122.180409,37.813675,393.5547729492188,1666463650.0],[-122.180439,37.813724,391.9768920898438,1666463652.0],[-122.180659,37.813826,391.0471435546875,1666463653.0],[-122.180758,37.813806,390.4535766601563,1666463654.0],[-122.180871,37.81372,390.4677368164063,1666463658.0],[-122.180994,37.813655,390.122216796875,1666463662.0],[-122.18104,37.813592,390.439599609375,1666463664.0],[-122.181164,37.813481,394.2834716796875,1666463669.0],[-122.1814,37.813317,395.4130493164063,1666463677.0],[-122.181435,37.813303,396.0713745117188,1666463678.0],[-122.181656,37.813246,391.2185302734375,1666463685.0],[-122.181736,37.813198,390.44765625,1666463687.0],[-122.181785,37.813179,388.9717041015625,1666463688.0],[-122.181836,37.813169,387.83193359375,1666463689.0],[-122.182132,37.813162,388.6814208984375,1666463697.0],[-122.182152,37.81317,387.4731689453125,1666463698.0],[-122.18221,37.8132,381.1687255859375,1666463700.0],[-122.182248,37.813237,381.5783325195313,1666463702.0],[-122.182246,37.813275,381.779443359375,1666463704.0],[-122.182195,37.813309,384.5391479492188,1666463707.0],[-122.182188,37.813315,385.9004150390625,1666463708.0],[-122.182204,37.813353,388.2729736328125,1666463711.0],[-122.182239,37.813378,387.940576171875,1666463712.0],[-122.182416,37.813447,386.3672119140625,1666463715.0],[-122.182502,37.813508,386.1543823242188,1666463718.0],[-122.182535,37.813533,386.0335327148438,1666463719.0],[-122.182639,37.813595,386.7820678710938,1666463722.0],[-122.182818,37.813638,387.3774658203125,1666463726.0],[-122.182856,37.813656,388.5825439453125,1666463727.0],[-122.182875,37.813683,386.953271484375,1666463728.0],[-122.182878,37.813707,388.9153076171875,1666463729.0],[-122.182896,37.813885,396.83388671875,1666463738.0],[-122.182929,37.813903,365.337548828125,1666463744.0],[-122.182935,37.813909,370.5171142578125,1666463745.0],[-122.182979,37.814001,381.7757202148438,1666463749.0],[-122.183028,37.81406,387.3490234375,1666463751.0],[-122.18309,37.814101,391.862939453125,1666463753.0],[-122.18313,37.814099,392.901513671875,1666463754.0],[-122.183172,37.814095,392.605126953125,1666463755.0],[-122.183311,37.814083,398.57021484375,1666463758.0],[-122.183459,37.814096,398.5583740234375,1666463762.0],[-122.183551,37.81408,401.77822265625,1666463764.0],[-122.1836,37.814066,401.3550048828125,1666463765.0],[-122.183677,37.814062,401.2778564453125,1666463767.0],[-122.183737,37.81409,402.2749267578125,1666463769.0],[-122.183794,37.814206,404.27041015625,1666463774.0],[-122.183819,37.814233,404.4051147460938,1666463775.0],[-122.183855,37.81428,404.37392578125,1666463777.0],[-122.183876,37.814327,404.43251953125,1666463779.0],[-122.183888,37.814454,407.7272583007813,1666463785.0],[-122.184011,37.814288,404.8373657226563,1666463786.0],[-122.184019,37.814272,403.774072265625,1666463787.0],[-122.184119,37.814288,404.6009765625,1666463789.0],[-122.184334,37.814251,406.9627319335938,1666463796.0],[-122.184369,37.814251,405.8037353515625,1666463797.0],[-122.184501,37.814243,403.88955078125,1666463801.0],[-122.184623,37.814209,403.46767578125,1666463806.0],[-122.184651,37.814205,402.4421630859375,1666463807.0],[-122.184771,37.814192,405.178369140625,1666463811.0],[-122.18494,37.81419,388.7793212890625,1666463816.0],[-122.184953,37.814199,393.318994140625,1666463817.0],[-122.185088,37.814286,404.2363525390625,1666463823.0],[-122.185137,37.814346,399.1439453125,1666463826.0],[-122.185166,37.814368,401.40322265625,1666463827.0],[-122.185243,37.81443,402.7041259765625,1666463830.0],[-122.185319,37.814531,402.9377685546875,1666463834.0],[-122.185389,37.814572,403.4499755859375,1666463837.0],[-122.1854,37.814597,403.5888916015625,1666463838.0],[-122.185434,37.814664,405.1305786132813,1666463840.0],[-122.18547,37.814695,405.24794921875,1666463841.0],[-122.185591,37.814768,407.0298095703125,1666463844.0],[-122.185645,37.814849,405.9597412109375,1666463847.0],[-122.185658,37.814869,407.2805419921875,1666463848.0],[-122.185722,37.814961,407.851220703125,1666463852.0],[-122.185815,37.815035,409.5290771484375,1666463855.0],[-122.185863,37.815094,411.039453125,1666463857.0],[-122.185881,37.815126,412.876611328125,1666463858.0],[-122.185933,37.815223,412.6438842773438,1666463861.0],[-122.18597,37.815319,410.5877319335938,1666463864.0],[-122.186008,37.815362,411.9193969726563,1666463868.0],[-122.186008,37.815382,410.9704833984375,1666463869.0],[-122.185994,37.815421,409.4942260742188,1666463871.0],[-122.185956,37.815467,409.458642578125,1666463873.0],[-122.18584,37.815536,403.83046875,1666463878.0],[-122.185802,37.815568,402.9497924804688,1666463879.0],[-122.185672,37.81569,403.1636596679688,1666463883.0],[-122.185637,37.8157,405.6748291015625,1666463884.0],[-122.185611,37.815693,404.835107421875,1666463885.0],[-122.185553,37.815652,405.17568359375,1666463888.0],[-122.185525,37.815642,403.931298828125,1666463889.0],[-122.185425,37.815646,399.4472900390625,1666463891.0],[-122.1852,37.815687,396.8039184570313,1666463895.0],[-122.185127,37.815689,396.6369873046875,1666463897.0],[-122.185075,37.81567,397.4717041015625,1666463899.0],[-122.185052,37.815657,397.2243896484375,1666463900.0],[-122.184979,37.815602,398.5879150390625,1666463903.0],[-122.184946,37.815593,398.7248779296875,1666463904.0],[-122.184768,37.815587,403.0259643554688,1666463909.0],[-122.184731,37.815588,404.9099365234375,1666463910.0],[-122.184576,37.815595,390.818505859375,1666463915.0],[-122.184497,37.815551,399.8528076171875,1666463919.0],[-122.184478,37.815537,401.976953125,1666463920.0],[-122.184353,37.815473,405.4270263671875,1666463924.0],[-122.184294,37.815461,409.0876098632813,1666463926.0],[-122.184207,37.815468,412.7339721679688,1666463929.0],[-122.184175,37.815477,412.940087890625,1666463930.0],[-122.18415,37.815488,413.4818359375,1666463931.0],[-122.183808,37.815747,408.9223266601563,1666463939.0],[-122.183778,37.815772,409.7064453125,1666463940.0],[-122.183708,37.815817,408.5908447265625,1666463942.0],[-122.183649,37.815841,408.9527221679688,1666463944.0],[-122.183541,37.815853,407.2402587890625,1666463948.0],[-122.183511,37.815848,408.4094482421875,1666463949.0],[-122.183478,37.815839,407.9229370117188,1666463950.0],[-122.183377,37.815819,407.4309936523438,1666463954.0],[-122.183282,37.815785,406.5930419921875,1666463958.0],[-122.183245,37.815762,408.5989013671875,1666463960.0],[-122.183223,37.815751,409.2448364257813,1666463961.0],[-122.183148,37.815731,409.1223388671875,1666463965.0],[-122.183,37.81572,409.33486328125,1666463971.0],[-122.182975,37.815723,408.7057739257813,1666463972.0],[-122.182921,37.815713,408.526025390625,1666463974.0],[-122.182862,37.815677,410.4484497070313,1666463978.0],[-122.182793,37.81566,409.9607177734375,1666463981.0],[-122.182761,37.815658,407.6767822265625,1666463982.0],[-122.182688,37.815643,410.0322509765625,1666463986.0],[-122.182617,37.81555,414.7590576171875,1666463994.0],[-122.18261,37.81554,415.4919677734375,1666463995.0],[-122.182571,37.815506,420.7629638671875,1666463998.0],[-122.182498,37.815463,422.0561767578125,1666464001.0],[-122.182419,37.815431,421.1848388671875,1666464004.0],[-122.182387,37.815419,421.9704833984375,1666464005.0],[-122.182284,37.815377,423.1370483398438,1666464008.0],[-122.182138,37.815265,422.172021484375,1666464014.0],[-122.182101,37.815238,422.4951416015625,1666464015.0],[-122.182084,37.815186,422.7588745117188,1666464018.0],[-122.18205,37.815187,416.56923828125,1666464019.0],[-122.181997,37.815209,414.57998046875,1666464020.0],[-122.181914,37.81528,413.9602294921875,1666464022.0],[-122.181855,37.815372,412.20888671875,1666464025.0],[-122.181834,37.815399,411.8379760742188,1666464026.0],[-122.181723,37.81551,416.0,1666464035.0],[-122.181744,37.815531,415.664208984375,1666464037.0],[-122.181753,37.815539,416.8591552734375,1666464038.0],[-122.181759,37.81555,415.5393920898438,1666464039.0],[-122.181747,37.815564,425.8222900390625,1666464058.0],[-122.181756,37.815703,425.0892578125,1666464061.0],[-122.181781,37.815759,424.4532104492188,1666464062.0],[-122.181772,37.815796,424.57705078125,1666464063.0],[-122.181801,37.815894,425.336328125,1666464065.0],[-122.181821,37.815911,424.4612670898438,1666464066.0],[-122.181827,37.816009,423.1447998046875,1666464068.0],[-122.181852,37.816052,423.4623657226563,1666464070.0],[-122.181856,37.816091,422.6305786132813,1666464071.0],[-122.181913,37.816146,421.7345825195313,1666464073.0],[-122.181901,37.816176,421.1521240234375,1666464074.0],[-122.18192,37.816207,420.8523193359375,1666464075.0],[-122.181934,37.816251,421.0664306640625,1666464077.0],[-122.181945,37.816277,421.1218505859375,1666464078.0],[-122.181934,37.816307,421.113671875,1666464080.0],[-122.181889,37.816339,421.8881469726563,1666464083.0],[-122.181862,37.816402,423.774560546875,1666464089.0],[-122.181859,37.816416,429.831689453125,1666464090.0],[-122.181871,37.816434,428.99892578125,1666464091.0],[-122.182013,37.816487,424.0739990234375,1666464097.0],[-122.182057,37.816514,423.4124389648438,1666464099.0],[-122.182076,37.81653,421.9001708984375,1666464100.0],[-122.182226,37.816633,424.3242431640625,1666464109.0],[-122.182238,37.816649,424.374169921875,1666464110.0],[-122.182245,37.816706,423.5275512695313,1666464113.0],[-122.182224,37.81673,422.6072021484375,1666464115.0],[-122.182213,37.816766,423.9059692382813,1666464117.0],[-122.182226,37.81681,426.2431884765625,1666464119.0],[-122.182236,37.816831,426.8387084960938,1666464120.0],[-122.182264,37.816896,424.7875,1666464123.0],[-122.182282,37.816913,427.4804931640625,1666464125.0],[-122.182397,37.816929,428.2802978515625,1666464128.0],[-122.182539,37.816965,429.08583984375,1666464130.0],[-122.182598,37.816998,429.0132080078125,1666464131.0],[-122.182671,37.817021,429.9995361328125,1666464132.0],[-122.182775,37.817079,430.6645751953125,1666464133.0],[-122.182893,37.817125,430.8941284179688,1666464135.0],[-122.183055,37.81717,431.6783081054688,1666464139.0],[-122.183109,37.817194,431.8698974609375,1666464140.0],[-122.183419,37.817229,430.4843994140625,1666464141.0],[-122.183383,37.817257,430.0293823242188,1666464142.0],[-122.183415,37.817257,430.7090087890625,1666464143.0],[-122.183411,37.817276,431.28212890625,1666464144.0],[-122.183427,37.817286,430.8979736328125,1666464145.0],[-122.183548,37.817275,425.0720458984375,1666464163.0],[-122.183658,37.817319,424.470849609375,1666464165.0],[-122.183741,37.817349,423.88125,1666464166.0],[-122.183815,37.817398,422.0637451171875,1666464167.0],[-122.183901,37.817485,421.2358032226563,1666464169.0],[-122.183936,37.817542,421.0307250976563,1666464170.0],[-122.183849,37.817556,422.571923828125,1666464171.0],[-122.183713,37.817645,415.8633056640625,1666464174.0],[-122.183654,37.817672,415.0490966796875,1666464175.0],[-122.183586,37.81769,414.0634399414063,1666464176.0],[-122.183492,37.817682,414.1711669921875,1666464177.0],[-122.183418,37.817709,411.3833251953125,1666464178.0],[-122.183359,37.817772,410.07412109375,1666464179.0],[-122.183283,37.817794,409.6633544921875,1666464180.0],[-122.18328,37.817812,410.5971923828125,1666464182.0],[-122.183322,37.817847,409.6695190429688,1666464184.0],[-122.183368,37.817867,408.7204223632813,1666464186.0],[-122.183391,37.817874,409.7268310546875,1666464187.0],[-122.183427,37.817897,410.91689453125,1666464189.0],[-122.183476,37.817947,409.8908325195313,1666464192.0],[-122.183512,37.817966,408.9899536132813,1666464194.0],[-122.183555,37.817968,410.5458618164063,1666464198.0],[-122.183579,37.817954,411.9093872070313,1666464199.0],[-122.183623,37.817956,415.5161376953125,1666464235.0],[-122.183609,37.817988,415.16494140625,1666464236.0],[-122.18362,37.818024,414.804833984375,1666464237.0],[-122.183618,37.818136,416.298974609375,1666464240.0],[-122.183629,37.818171,418.9345947265625,1666464242.0],[-122.18365,37.818186,419.4760986328125,1666464243.0],[-122.183677,37.818193,420.07119140625,1666464244.0],[-122.183842,37.818174,417.3862548828125,1666464247.0],[-122.184029,37.818185,418.3486572265625,1666464250.0],[-122.184154,37.818173,418.92275390625,1666464252.0],[-122.184209,37.818171,420.936181640625,1666464253.0],[-122.18434,37.81816,422.0666748046875,1666464255.0],[-122.184407,37.818143,423.653955078125,1666464257.0],[-122.18465,37.818006,421.3944946289063,1666464263.0],[-122.184693,37.81799,421.2006469726563,1666464264.0],[-122.184847,37.817948,421.9838500976563,1666464267.0],[-122.184969,37.818017,421.7690673828125,1666464268.0],[-122.185098,37.817986,421.2070556640625,1666464269.0],[-122.185257,37.818048,417.3301025390625,1666464271.0],[-122.185302,37.818032,414.6692138671875,1666464272.0],[-122.185333,37.818036,414.5569091796875,1666464273.0],[-122.18538,37.817999,415.3171630859375,1666464274.0],[-122.185434,37.817971,414.8431030273438,1666464276.0],[-122.185483,37.818047,416.835107421875,1666464279.0],[-122.185573,37.818036,417.5081420898438,1666464283.0],[-122.185592,37.818043,415.3755126953125,1666464284.0],[-122.185633,37.818061,416.2185302734375,1666464286.0],[-122.185721,37.818069,413.6382080078125,1666464289.0],[-122.18582,37.818115,410.131005859375,1666464294.0],[-122.185836,37.81812,407.2376953125,1666464295.0],[-122.18584,37.818131,406.951318359375,1666464296.0],[-122.185829,37.818167,405.62734375,1666464299.0],[-122.185835,37.81822,404.768212890625,1666464302.0],[-122.185812,37.818266,405.4330078125,1666464306.0],[-122.185805,37.818283,404.6692138671875,1666464307.0],[-122.185809,37.818359,406.0243774414063,1666464310.0],[-122.185778,37.818507,407.51796875,1666464314.0],[-122.185769,37.818718,409.0385986328125,1666464322.0],[-122.185782,37.81875,410.5146118164063,1666464323.0],[-122.185818,37.81878,411.9350830078125,1666464324.0],[-122.186017,37.818816,411.9958740234375,1666464325.0],[-122.186082,37.818817,412.4736572265625,1666464326.0],[-122.186173,37.8188,411.6389404296875,1666464327.0],[-122.186288,37.818704,413.9596801757813,1666464329.0],[-122.186419,37.818683,415.939111328125,1666464331.0],[-122.186543,37.818742,418.1499267578125,1666464332.0],[-122.186576,37.818736,421.2419677734375,1666464333.0],[-122.18659,37.818673,424.9018798828125,1666464335.0],[-122.186601,37.818673,427.2544189453125,1666464336.0],[-122.186626,37.818621,424.5522705078125,1666464337.0],[-122.186663,37.818617,423.7365966796875,1666464338.0],[-122.186695,37.818582,423.8393798828125,1666464339.0],[-122.186765,37.818558,424.3548217773438,1666464341.0],[-122.186798,37.818534,424.3342529296875,1666464342.0],[-122.186893,37.818418,426.0556274414063,1666464346.0],[-122.186919,37.818394,425.6598754882813,1666464347.0],[-122.186992,37.818342,427.90224609375,1666464349.0],[-122.187049,37.818321,424.3786865234375,1666464350.0],[-122.18718,37.818304,421.1314331054688,1666464351.0],[-122.187247,37.818221,416.8774047851563,1666464352.0],[-122.187306,37.818194,417.1293579101563,1666464353.0],[-122.187396,37.818207,416.273828125,1666464354.0],[-122.187481,37.818206,414.3155151367188,1666464355.0],[-122.187566,37.818184,414.8980346679688,1666464356.0],[-122.187649,37.818161,414.6118408203125,1666464357.0],[-122.187697,37.818131,412.0231567382813,1666464358.0],[-122.187766,37.818115,411.68642578125,1666464359.0],[-122.187774,37.818175,411.6357055664063,1666464360.0],[-122.187956,37.818304,415.1257568359375,1666464366.0],[-122.187999,37.818336,414.83046875,1666464367.0],[-122.188152,37.818439,411.555322265625,1666464370.0],[-122.1882,37.818487,408.74794921875,1666464371.0],[-122.18826,37.818515,407.004052734375,1666464372.0],[-122.18841,37.818554,406.9604736328125,1666464374.0],[-122.188498,37.818528,404.2314697265625,1666464377.0],[-122.188531,37.818518,402.3714233398438,1666464378.0],[-122.188555,37.818473,403.271142578125,1666464380.0],[-122.188619,37.818415,401.4626708984375,1666464382.0],[-122.18864,37.818384,401.6711669921875,1666464383.0],[-122.188654,37.81836,401.3594604492188,1666464384.0],[-122.188667,37.818282,399.455224609375,1666464387.0],[-122.188669,37.818262,399.6809936523438,1666464388.0],[-122.188665,37.81821,395.980615234375,1666464390.0],[-122.188697,37.818066,394.590234375,1666464395.0],[-122.1887,37.817967,393.52822265625,1666464397.0],[-122.188702,37.817917,392.378564453125,1666464398.0],[-122.188771,37.817751,391.0130859375,1666464400.0],[-122.188875,37.817663,391.6704956054688,1666464402.0],[-122.188898,37.817545,390.5395751953125,1666464405.0],[-122.188836,37.817453,386.4658447265625,1666464407.0],[-122.188835,37.817414,386.1111083984375,1666464408.0],[-122.188852,37.817358,386.8020874023438,1666464409.0],[-122.188948,37.817255,386.1762939453125,1666464412.0],[-122.189025,37.817252,385.57216796875,1666464413.0],[-122.189074,37.817216,385.281884765625,1666464414.0],[-122.189095,37.817175,384.9353271484375,1666464415.0],[-122.189086,37.81711,381.221826171875,1666464416.0],[-122.189094,37.817083,379.6547485351563,1666464417.0],[-122.189135,37.817043,379.7795043945313,1666464418.0],[-122.189156,37.817012,379.04775390625,1666464419.0],[-122.189335,37.816939,372.6950927734375,1666464424.0],[-122.189408,37.816885,368.2915893554688,1666464426.0],[-122.189496,37.816844,367.3835693359375,1666464427.0],[-122.189561,37.816831,367.7653442382813,1666464428.0],[-122.189584,37.816779,368.3337646484375,1666464429.0],[-122.189607,37.816686,367.6823364257813,1666464430.0],[-122.189625,37.816538,366.4739624023438,1666464434.0],[-122.189662,37.81645,366.8117919921875,1666464437.0],[-122.189691,37.816405,366.28505859375,1666464438.0],[-122.189699,37.81639,366.3645263671875,1666464439.0],[-122.189729,37.816357,366.4677978515625,1666464440.0],[-122.189919,37.816216,365.67958984375,1666464445.0],[-122.190005,37.816169,364.596826171875,1666464446.0],[-122.190059,37.816168,363.5154052734375,1666464447.0],[-122.190158,37.816138,362.7710815429688,1666464448.0],[-122.190253,37.81608,364.2151733398438,1666464449.0],[-122.190293,37.816027,363.8506103515625,1666464450.0],[-122.190313,37.815984,363.9187255859375,1666464451.0],[-122.190299,37.815941,363.95791015625,1666464452.0],[-122.190269,37.815709,361.4052978515625,1666464455.0],[-122.190289,37.815653,360.1386962890625,1666464456.0],[-122.19033,37.815613,360.67373046875,1666464457.0],[-122.190362,37.815546,358.3183837890625,1666464458.0],[-122.190426,37.815482,356.224755859375,1666464459.0],[-122.190513,37.815336,352.81142578125,1666464461.0],[-122.190545,37.815301,351.856103515625,1666464462.0],[-122.190763,37.815163,351.254052734375,1666464465.0],[-122.190853,37.815146,349.8755126953125,1666464466.0],[-122.190987,37.815048,345.8178955078125,1666464468.0],[-122.191079,37.815011,343.2441650390625,1666464469.0],[-122.191164,37.814972,340.991357421875,1666464470.0],[-122.191287,37.81489,338.5559936523438,1666464472.0],[-122.191337,37.814872,335.172265625,1666464473.0],[-122.191379,37.814835,333.90712890625,1666464474.0],[-122.1915,37.814776,331.5920654296875,1666464476.0],[-122.191521,37.81475,331.4995361328125,1666464478.0],[-122.191521,37.814739,330.6820922851563,1666464479.0],[-122.191527,37.814712,328.4326416015625,1666464482.0],[-122.191472,37.814701,324.9515014648438,1666464483.0],[-122.191481,37.814679,326.736474609375,1666464490.0],[-122.191504,37.814655,322.6340576171875,1666464492.0],[-122.191603,37.814604,317.217431640625,1666464495.0],[-122.1916,37.814592,317.0828491210938,1666464497.0],[-122.191544,37.814584,314.6347900390625,1666464499.0],[-122.191414,37.814598,312.5786376953125,1666464503.0],[-122.191308,37.814589,314.70009765625,1666464506.0],[-122.19128,37.814582,313.5466552734375,1666464507.0],[-122.191194,37.814584,311.8403564453125,1666464509.0],[-122.191151,37.814597,313.1698852539063,1666464510.0],[-122.190996,37.81455,312.7612548828125,1666464512.0],[-122.190915,37.814514,313.1167236328125,1666464513.0],[-122.19084,37.814503,312.7694946289063,1666464514.0],[-122.190771,37.814508,312.0640502929688,1666464515.0],[-122.190706,37.814534,310.262841796875,1666464516.0],[-122.190673,37.814553,309.0537353515625,1666464517.0],[-122.190625,37.814579,309.1130004882813,1666464518.0],[-122.190618,37.814642,310.1299072265625,1666464519.0],[-122.190573,37.814671,309.533349609375,1666464520.0],[-122.190516,37.814749,308.254052734375,1666464527.0],[-122.190533,37.814762,306.870263671875,1666464529.0],[-122.190551,37.814759,306.8704467773438,1666464530.0],[-122.190572,37.814738,306.3674560546875,1666464531.0],[-122.1906,37.814709,304.7205444335938,1666464532.0],[-122.19068,37.814657,304.5876708984375,1666464534.0],[-122.190732,37.814638,303.2212768554688,1666464535.0],[-122.190783,37.814632,302.80654296875,1666464536.0],[-122.190888,37.814637,302.5161376953125,1666464538.0],[-122.191,37.814676,301.7722412109375,1666464541.0],[-122.191036,37.814677,301.9017578125,1666464542.0],[-122.191213,37.814658,301.5505615234375,1666464547.0],[-122.191292,37.814619,298.1811767578125,1666464549.0],[-122.191352,37.814602,301.4160400390625,1666464551.0],[-122.191381,37.814601,301.5442138671875,1666464552.0],[-122.191518,37.814599,303.3447509765625,1666464555.0],[-122.191667,37.814616,302.4171997070313,1666464560.0],[-122.191686,37.814593,300.23720703125,1666464562.0],[-122.191674,37.814573,299.831689453125,1666464563.0],[-122.191558,37.814457,298.8525634765625,1666464569.0],[-122.191581,37.814432,299.54873046875,1666464571.0],[-122.191615,37.814428,300.2626586914063,1666464573.0],[-122.191631,37.81443,299.358544921875,1666464574.0],[-122.19167,37.814425,297.34658203125,1666464577.0],[-122.191664,37.814402,297.30751953125,1666464579.0],[-122.191544,37.814349,297.041650390625,1666464581.0],[-122.191479,37.814334,297.223779296875,1666464582.0],[-122.191467,37.814348,297.2395263671875,1666464583.0],[-122.191426,37.814347,297.7253662109375,1666464584.0],[-122.191376,37.814391,294.2561279296875,1666464585.0],[-122.191336,37.814413,294.7843872070313,1666464586.0],[-122.191161,37.814445,294.052392578125,1666464589.0],[-122.191114,37.81444,294.866357421875,1666464590.0],[-122.191075,37.814434,295.6531005859375,1666464591.0],[-122.191012,37.814387,295.7031494140625,1666464593.0],[-122.191035,37.814369,297.727197265625,1666464596.0],[-122.191051,37.814377,297.0300537109375,1666464597.0],[-122.191068,37.814386,297.29189453125,1666464598.0],[-122.191222,37.814415,299.069482421875,1666464603.0],[-122.191337,37.814383,302.63564453125,1666464607.0],[-122.19137,37.81437,302.6352783203125,1666464608.0],[-122.191427,37.814349,302.2612548828125,1666464610.0],[-122.191531,37.814331,303.02041015625,1666464613.0],[-122.191621,37.814332,302.7925048828125,1666464615.0],[-122.191694,37.814344,302.7680908203125,1666464618.0],[-122.191738,37.814354,302.2011962890625,1666464619.0],[-122.191772,37.814377,302.1481567382813,1666464620.0],[-122.191859,37.814493,301.8869873046875,1666464625.0],[-122.19191,37.81451,300.6247802734375,1666464627.0],[-122.191948,37.814497,299.42568359375,1666464628.0],[-122.191985,37.814465,294.208642578125,1666464629.0],[-122.192009,37.814384,294.00234375,1666464630.0],[-122.192185,37.814274,292.3505493164063,1666464633.0],[-122.192269,37.814287,293.2297607421875,1666464634.0],[-122.192407,37.814261,293.8345581054688,1666464636.0],[-122.192572,37.814281,291.3384033203125,1666464638.0],[-122.192632,37.814275,292.1675048828125,1666464639.0],[-122.192719,37.814229,289.7680908203125,1666464641.0],[-122.192785,37.814223,289.961328125,1666464642.0],[-122.192897,37.814239,289.7881103515625,1666464644.0],[-122.19295,37.814228,288.5857177734375,1666464645.0],[-122.192999,37.814241,288.033837890625,1666464646.0],[-122.193106,37.814242,288.66689453125,1666464648.0],[-122.193156,37.814238,293.5322509765625,1666464649.0],[-122.193371,37.814274,289.2903076171875,1666464653.0],[-122.193439,37.814313,289.5859008789063,1666464654.0],[-122.193536,37.814335,289.4709716796875,1666464656.0],[-122.193591,37.814396,289.2405029296875,1666464658.0],[-122.193635,37.81442,288.591943359375,1666464659.0],[-122.193679,37.814432,289.6562744140625,1666464660.0],[-122.193803,37.81449,288.0149169921875,1666464662.0],[-122.193924,37.814567,287.3239990234375,1666464664.0],[-122.194006,37.814543,287.4597412109375,1666464665.0],[-122.194141,37.814578,287.1665283203125,1666464667.0],[-122.194191,37.814622,287.125146484375,1666464668.0],[-122.194243,37.814617,285.9480834960938,1666464669.0],[-122.19435,37.814665,287.2891479492188,1666464671.0],[-122.194411,37.814672,286.040673828125,1666464672.0],[-122.194467,37.814672,285.5271240234375,1666464673.0],[-122.194523,37.814651,285.8017822265625,1666464674.0],[-122.194589,37.814648,290.1426025390625,1666464675.0],[-122.19484,37.814661,285.7864013671875,1666464679.0],[-122.194929,37.814674,284.23232421875,1666464680.0],[-122.195,37.814707,285.8682495117188,1666464681.0],[-122.195053,37.814694,284.7045532226563,1666464682.0],[-122.195101,37.814704,284.9140258789063,1666464683.0],[-122.195178,37.814736,314.202294921875,1666464685.0],[-122.195361,37.81474,334.3767944335938,1666464689.0],[-122.195399,37.814747,320.0111938476563,1666464690.0],[-122.195516,37.814824,293.1972900390625,1666464696.0],[-122.195557,37.814867,287.3503662109375,1666464699.0],[-122.195568,37.814878,286.8998657226563,1666464700.0],[-122.1956,37.814901,284.1914916992188,1666464702.0],[-122.195634,37.814947,284.4876953125,1666464737.0],[-122.195722,37.814997,284.5188232421875,1666464744.0],[-122.195749,37.815019,284.4968505859375,1666464745.0],[-122.195779,37.815077,282.9765869140625,1666464748.0],[-122.195815,37.815122,283.068505859375,1666464750.0],[-122.195869,37.815167,285.377587890625,1666464752.0],[-122.195934,37.815204,285.034814453125,1666464754.0],[-122.195948,37.815213,287.17470703125,1666464755.0],[-122.196094,37.815281,286.436669921875,1666464781.0],[-122.196229,37.815373,286.1509033203125,1666464782.0],[-122.19631,37.815367,286.40908203125,1666464783.0],[-122.196364,37.8154,283.7739501953125,1666464784.0],[-122.196428,37.815421,284.3742919921875,1666464785.0],[-122.196499,37.815439,283.6426635742188,1666464786.0],[-122.196573,37.815467,283.77236328125,1666464787.0],[-122.196632,37.815521,281.3427368164063,1666464788.0],[-122.196747,37.815594,338.1714721679688,1666464790.0],[-122.196948,37.815691,300.7705932617188,1666464793.0],[-122.196971,37.815741,293.4355712890625,1666464794.0],[-122.197021,37.815781,288.428125,1666464795.0],[-122.197086,37.815835,286.47744140625,1666464797.0],[-122.197153,37.815914,283.533837890625,1666464799.0],[-122.197214,37.815952,284.617333984375,1666464800.0],[-122.19724,37.815946,283.754541015625,1666464801.0],[-122.197258,37.816006,282.3275390625,1666464803.0],[-122.19732,37.816053,280.1794067382813,1666464804.0],[-122.197344,37.816091,280.5407958984375,1666464806.0],[-122.197346,37.816109,280.6849609375,1666464807.0],[-122.19734,37.816158,278.7143798828125,1666464810.0],[-122.197295,37.816206,278.1733642578125,1666464813.0],[-122.197198,37.816238,279.3348022460938,1666464817.0],[-122.197172,37.816255,279.2023559570313,1666464818.0],[-122.197099,37.816309,281.0327392578125,1666464823.0],[-122.197093,37.816331,281.7845703125,1666464825.0],[-122.19703,37.816372,282.667626953125,1666464831.0],[-122.197019,37.816386,283.8030029296875,1666464832.0],[-122.196985,37.816446,281.4670654296875,1666464836.0],[-122.196853,37.816478,280.2585083007813,1666464843.0],[-122.196816,37.816475,279.4784790039063,1666464846.0],[-122.196804,37.816468,279.3508544921875,1666464847.0],[-122.196698,37.816439,277.9232421875,1666464854.0],[-122.196609,37.81643,277.7385498046875,1666464859.0],[-122.196591,37.816424,277.6885009765625,1666464860.0],[-122.1965,37.816394,280.2655883789063,1666464865.0],[-122.196443,37.816344,283.359765625,1666464870.0],[-122.196441,37.816333,283.7536865234375,1666464871.0],[-122.196464,37.81621,287.9821411132813,1666464882.0],[-122.19646,37.81618,286.57021484375,1666464884.0],[-122.196454,37.816169,287.673974609375,1666464885.0],[-122.196443,37.816132,289.24990234375,1666464888.0],[-122.196387,37.81608,290.883447265625,1666464893.0],[-122.196369,37.816035,290.941064453125,1666464896.0],[-122.196367,37.816026,290.4743896484375,1666464897.0],[-122.196347,37.815997,291.433740234375,1666464900.0],[-122.196295,37.815957,312.201318359375,1666464905.0],[-122.196222,37.815919,293.5671630859375,1666464910.0],[-122.196203,37.815913,293.0024047851563,1666464911.0],[-122.196088,37.815883,290.8275390625,1666464919.0],[-122.196036,37.815885,292.3239990234375,1666464923.0],[-122.196003,37.815873,293.11416015625,1666464927.0],[-122.19599,37.815868,293.38125,1666464928.0],[-122.195923,37.815896,292.8486572265625,1666464955.0],[-122.195919,37.815919,293.797509765625,1666464969.0],[-122.195957,37.815919,296.9471069335938,1666465070.0]]]}'), '{"source":"sql-direct"}');

Publish PostGIS Table as GeoServer Layer

Once the PostGIS table was created, it was time to publish it as a Layer in GeoServer. This involved creating a Workspace, Data Source, and Layer in GeoServer, which can be done by following these steps.

Note: Our table name will be routes in this example, not generic as described in the linked steps.

The Layer Preview in GeoServer can help verify the WFS layer is set-up correctly

2. Add The GeoServer WFS Layer in QGIS

Once the GIS Features Layer is published in GeoServer, it is time to add the WFS Layer to QGIS. One major thing to pay attention to:

  • Specify the WFS Layer version as 1.0 when adding it in QGIS, and use the WFS v1.0.0 URL – QGIS only supports WFS Transactions for WFS v1.0.0, which are required when creating and modifying WFS Features in QGIS.

3. Modifying WFS Features in QGIS

Now that we’ve got our WFS Layer added to QGIS, we’re ready to start modifying the GIS Features. This is straight-forward to do QGIS, which behind the scenes will use WFS Transactions to POST the changes to GeoServer, and persist them back into the PostGIS database table.

4. Saving a Strava GPX Route to the WFS Layer

One final workflow I wanted to explore was importing a Strava GPX file into QGIS, and saving the GIS feature to the WFS Layer. Fortunately QGIS makes this pretty straight-forward with a simple copy/paste.

Note: when pasting features, QGIS will map the feature to the geometry to the first feature in the Layer. For example if the Layer contains POLYGON features already, and you paste in a MULTILINESTRING, QGIS will attempt to map it to a POLYGON, which in my case was undesirable.

What’s Next

These proof of concepts sure are fun. Next I plan to start working with my existing PostGIS tables directly in QGIS, and see how it handles WFS Layesr with a couple hundred Features at a time. I am also curious how QGIS handles Feature property editing, and if my existing database table schema will need to change to accommodate. The fun never stops! 🙂

Subscribe by Email

Enter your email address below to be notified about updates and new posts.


Comments

Loading comments..

No responses yet

Leave a Reply

Your email address will not be published. Required fields are marked *